This commit is contained in:
2026-03-30 17:38:45 +09:00
commit 29e2149d66
20 changed files with 677 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