From e561295485326620533448bbcba1938680d5657b Mon Sep 17 00:00:00 2001 From: psox Date: Thu, 4 Nov 2021 15:24:24 +0000 Subject: [PATCH] fix fragments folder --- tmux/fragment/ctrl-alt-movement.conf | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tmux/fragment/ctrl-alt-movement.conf diff --git a/tmux/fragment/ctrl-alt-movement.conf b/tmux/fragment/ctrl-alt-movement.conf new file mode 100644 index 0000000..9d10f26 --- /dev/null +++ b/tmux/fragment/ctrl-alt-movement.conf @@ -0,0 +1,33 @@ + +# This fragmenet is meant to be used with a Vim plugin and provides unified movement +# between Vim window/panes and tmux panes. It requires you install the following in +# Vim to function correctly: +# +# github.com/christoomey/vim-tmux-navigator +# +# Include it by adding the following snippet to your early (or late) tmux.conf: +# +# source-file "$PSOXIZSH/tmux/fragment/ctrl-alt-movement.conf" + +### --- This uses Ctrl-Alt- movement --- ### + +# Integration with vim-tmux-navigator & fzf +is_vim="ps -o state= -o comm= -t '#{pane_tty}' \ +| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'" +is_fzf="ps -o state= -o comm= -t '#{pane_tty}' \ +| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?fzf$'" +bind -n C-M-Left run "($is_vim && tmux send-keys C-h) \ + || tmux select-pane -L" +bind -n C-M-Down run "($is_vim && tmux send-keys C-j) \ + || ($is_fzf && tmux send-keys C-j) \ + || tmux select-pane -D" +bind -n C-M-Up run "($is_vim && tmux send-keys C-k) \ + || ($is_fzf && tmux send-keys C-k) \ + || tmux select-pane -U" +bind -n C-M-Right run "($is_vim && tmux send-keys C-l) \ + || tmux select-pane -R" +bind-key -T copy-mode-vi 'C-M-Left' select-pane -L +bind-key -T copy-mode-vi 'C-M-Down' select-pane -D +bind-key -T copy-mode-vi 'C-M-Up' select-pane -U +bind-key -T copy-mode-vi 'C-M-Right' select-pane -R +