]> Sergey Matveev's repositories - dotfiles.git/blobdiff - tmux/bin/tmux-fzf.zsh
I find buf-files too seldom
[dotfiles.git] / tmux / bin / tmux-fzf.zsh
index 7f119cb64096b03053b4953354533241a1c29304..2eff748fa4f987497a95db223907629a1f46ff0a 100755 (executable)
@@ -14,13 +14,6 @@ case $1 in
     cut -c3- | fzf -m --preview="less -N -S {}" |
     while read fn ; do print ${(q)fn} ; done > $tmp
     ;;
-(buf-files)
-    tmux capture-pane -J
-    tmux save-buffer $tmp.capture
-    trap "rm -f $tmp.capture" HUP PIPE INT QUIT TERM EXIT
-    tmux delete-buffer
-    pe < $tmp.capture > $tmp
-    ;;
 (git-files) git status --short | fzf -m | perl -npe 's/^\s*\S+\s+//' > $tmp ;;
 (git-branches) { git branch ; git branch --remote } | fzf > $tmp ;;
 (git-commits)