Skip to content

Commit 7db70e0

Browse files
anakimlukechristoomey
authored andcommitted
Don't change active window when fzf is up
FZF uses Control+hjkl key combos for movement and it interferes with this plugin. This commit adds the FZF process name(fzf) to the list of programs that make this plugin not automatically trigger a window change. This plugin also adds instructions to the readme file in case a user wants to add their own programs to the list, or remove existing ones. closes #346
1 parent addb64a commit 7db70e0

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Add the following to your `~/.tmux.conf` file:
6666
# Smart pane switching with awareness of Vim splits.
6767
# See: https://github.com/christoomey/vim-tmux-navigator
6868
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
69-
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?)(diff)?$'"
69+
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?|fzf)(diff)?$'"
7070
bind-key -n 'C-h' if-shell "$is_vim" 'send-keys C-h' 'select-pane -L'
7171
bind-key -n 'C-j' if-shell "$is_vim" 'send-keys C-j' 'select-pane -D'
7272
bind-key -n 'C-k' if-shell "$is_vim" 'send-keys C-k' 'select-pane -U'
@@ -186,6 +186,15 @@ mapping.
186186

187187
### Additional Customization
188188

189+
#### Ignoring programs that use Ctrl+hjkl movement
190+
191+
In interactive programs such as FZF, Ctrl+hjkl can be used instead of the arrow keys to move the selection up and down. If vim-tmux-navigator is getting in your way trying to change the active window instead, you can make it be ignored and work as if this plugin were not enabled. Just modify the `is_vim` variable(that you have either on the snipped you pasted on `~/.tmux.conf` or on the `vim-tmux-navigator.tmux` file). For example, to add the program `foobar`:
192+
193+
```diff
194+
- is_vim="ps -o state= -o comm= -t '#{pane_tty}' | grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?|fzf)(diff)?$'"
195+
+ is_vim="ps -o state= -o comm= -t '#{pane_tty}' | grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?|fzf|foobar)(diff)?$'"
196+
```
197+
189198
#### Restoring Clear Screen (C-l)
190199

191200
The default key bindings include `<Ctrl-l>` which is the readline key binding
@@ -231,7 +240,7 @@ to conditionally wrap based on position on screen:
231240

232241
```tmux
233242
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
234-
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?)(diff)?$'"
243+
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?|fzf)(diff)?$'"
235244
bind-key -n 'C-h' if-shell "$is_vim" { send-keys C-h } { if-shell -F '#{pane_at_left}' {} { select-pane -L } }
236245
bind-key -n 'C-j' if-shell "$is_vim" { send-keys C-j } { if-shell -F '#{pane_at_bottom}' {} { select-pane -D } }
237246
bind-key -n 'C-k' if-shell "$is_vim" { send-keys C-k } { if-shell -F '#{pane_at_top}' {} { select-pane -U } }

pattern-check

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ GREEN=$(tput setaf 2)
1111
YELLOW=$(tput setaf 3)
1212
NORMAL=$(tput sgr0)
1313

14-
vim_pattern='(^|\/)g?(view|l?n?vim?x?)(diff)?$'
15-
match_tests=(vim Vim VIM vimdiff lvim /usr/local/bin/vim vi gvim view gview nvim vimx)
14+
vim_pattern='(^|\/)g?(view|l?n?vim?x?|fzf)(diff)?$'
15+
match_tests=(vim Vim VIM vimdiff lvim /usr/local/bin/vim vi gvim view gview nvim vimx fzf)
1616
no_match_tests=( /Users/christoomey/.vim/thing /usr/local/bin/start-vim )
1717

1818
display_matches() {

vim-tmux-navigator.tmux

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
version_pat='s/^tmux[^0-9]*([.0-9]+).*/\1/p'
44

55
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
6-
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?)(diff)?$'"
6+
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|l?n?vim?x?|fzf)(diff)?$'"
77
tmux bind-key -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L"
88
tmux bind-key -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D"
99
tmux bind-key -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"

0 commit comments

Comments
 (0)