pull/14/merge
Jon Kinney 2016-11-29 14:58:24 +00:00 committed by GitHub
commit 7f64d170ae
1 changed files with 3 additions and 3 deletions

View File

@ -143,12 +143,12 @@ main() {
tmux bind-key "$prefix_without_ctrl" last-window
fi
# easier switching between next/prev window
# even easier switching between next/prev window
if key_binding_not_set "C-p"; then
tmux bind-key C-p previous-window
tmux bind-key -r C-p previous-window
fi
if key_binding_not_set "C-n"; then
tmux bind-key C-n next-window
tmux bind-key -r C-n next-window
fi
# source `.tmux.conf` file - as suggested in `man tmux`