2
0
This commit is contained in:
ai
2026-04-03 08:36:53 +00:00
commit 67c20e9dab
15 changed files with 648 additions and 0 deletions

7
.tmux/plugin/urlopen.zsh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/zsh
url=$(tmux capture-pane -pJ -S -100 | grep -oE 'https?://[^ ]+' | tail -1)
[ -z "$url" ] && exit 0
case "$(uname)" in
Darwin) open "$url" ;;
*) xdg-open "$url" ;;
esac