diff options
author | luxagraf <sng@luxagraf.net> | 2021-07-16 20:36:05 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-07-16 20:36:05 -0400 |
commit | 7fe4f324b9c90c5383965b51aaccdd0322b4fef9 (patch) | |
tree | fc3d5a2a1fe8cfe9f7b6e601e229070cd5327578 /.tmux.conf | |
parent | 9023193df97d2366a38b7f623c64215e809ec5d5 (diff) |
brought up to date with Debian configdebian-openbox
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,8 +43,8 @@ bind ^A select-pane -t :.+ # smart pane switching with awareness of vim splits bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L" -bind -n C-n run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" -bind -n C-p run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" +bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" +bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" #alternative for ctrl-l |