diff options
author | June McEnroe <programble@gmail.com> | 2016-11-24 20:12:57 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-11-24 20:12:57 -0500 |
commit | 5f0a9e719e42e1b49d02487b5707edf82df64760 (patch) | |
tree | 4ea8257776a5338ed222eabe7ca0c2141d81652e | |
parent | Set tmux status colors BLACK (diff) | |
download | src-5f0a9e719e42e1b49d02487b5707edf82df64760.tar.gz src-5f0a9e719e42e1b49d02487b5707edf82df64760.zip |
Use C-e C-e to switch tmux windows
Diffstat (limited to '')
-rw-r--r-- | .tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.tmux.conf b/.tmux.conf index 06c1d765..bfd97921 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,6 +1,6 @@ unbind C-b set -g prefix C-e -bind C-e send-prefix +bind e send-prefix set -g escape-time 0 set -g default-terminal 'screen-256color' @@ -17,7 +17,7 @@ set -g window-status-separator '|' set -g status-style bg=black,fg=white bind t new-window -c '#{pane_current_path}' -bind o last-window +bind C-e last-window bind s split-window -v -c '#{pane_current_path}' bind v split-window -h -c '#{pane_current_path}' |