Browse Source

~/.tmux.conf: Use sakura-style keys for switching/creating tabs

Actually they're panes, but this works nicely for me so far.  The only
problem is that I don't seem to be able to map shift...
Lu Stadler 7 years ago
parent
commit
30effa67f2
1 changed files with 4 additions and 0 deletions
  1. 4 0
      .tmux.conf

+ 4 - 0
.tmux.conf

@ -36,6 +36,10 @@ bind-key -n F6 select-window -t 5
36 36
bind-key -n F7 select-window -t 6
37 37
bind-key -n F8 select-window -t 7
38 38
39
bind-key -n C-PageUp select-window -t:-1
40
bind-key -n C-PageDown select-window -t:+1
41
bind-key -n C-T new-window -c "#{pane_current_path}"
42
39 43
set -g status-keys emacs
40 44
bind-key -T copy-mode-vi ? command-prompt -i -I "#{pane_search_string}" -p "(search up)" "send -X search-backward-incremental \"%%%\""
41 45
bind-key -T copy-mode-vi / command-prompt -i -I "#{pane_search_string}" -p "(search down)" "send -X search-forward-incremental \"%%%\""