Created
February 1, 2012 09:41
-
-
Save skanev/1716179 to your computer and use it in GitHub Desktop.
zsh: autocomplete words in current tmux session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Autocomplete from current tmux screen buffer | |
_tmux_pane_words() { | |
local expl | |
local -a w | |
if [[ -z "$TMUX_PANE" ]]; then | |
_message "not running inside tmux!" | |
return 1 | |
fi | |
w=( ${(u)=$(tmux capture-pane \; show-buffer \; delete-buffer)} ) | |
_wanted values expl 'words from current tmux pane' compadd -a w | |
} | |
zle -C tmux-pane-words-prefix complete-word _generic | |
zle -C tmux-pane-words-anywhere complete-word _generic | |
bindkey '^Xt' tmux-pane-words-prefix | |
bindkey '^X^X' tmux-pane-words-anywhere | |
zstyle ':completion:tmux-pane-words-(prefix|anywhere):*' completer _tmux_pane_words | |
zstyle ':completion:tmux-pane-words-(prefix|anywhere):*' ignore-line current | |
zstyle ':completion:tmux-pane-words-anywhere:*' matcher-list 'b:=* m:{A-Za-z}={a-zA-Z}' |
@siers judging from the timestamp this gist predates capture-pane -p
there is also https://gist.github.com/blueyed/6856354 seems a bit more up to date
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm wondering, why not just
tmux capture-pane p
insteadcapture; show; delete
?