diff options
author | June McEnroe <june@causal.agency> | 2017-06-16 14:42:24 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-06-16 14:42:24 -0400 |
commit | 496ba246beaf68fc4c36f7cbab911e74adea4cf0 (patch) | |
tree | 8b55d392d3ffe5f8adc26c11593f09a493c2006a /home/.tmux.conf | |
parent | Color Search foreground (diff) | |
download | src-496ba246beaf68fc4c36f7cbab911e74adea4cf0.tar.gz src-496ba246beaf68fc4c36f7cbab911e74adea4cf0.zip |
Set tmux prefix back to E (J in Tarmak 1)
Diffstat (limited to '')
-rw-r--r-- | home/.tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/.tmux.conf b/home/.tmux.conf index 46e9130a..97a73012 100644 --- a/home/.tmux.conf +++ b/home/.tmux.conf @@ -5,14 +5,14 @@ set -g terminal-overrides "linux:cnorm=\e[?25h\e[?8c" # cvvis set -g escape-time 0 unbind C-b -set -g prefix C-space -bind space send-prefix +set -g prefix C-j +bind j send-prefix bind t new-window -c '#{pane_current_path}' bind s split-window -v -c '#{pane_current_path}' bind v split-window -h -c '#{pane_current_path}' -bind C-space last-window +bind C-j last-window bind C-w last-pane bind h previous-window bind l next-window |