diff options
author | June McEnroe <curtis@hopper.com> | 2017-06-16 15:10:04 -0400 |
---|---|---|
committer | June McEnroe <curtis@hopper.com> | 2017-06-16 15:10:04 -0400 |
commit | 418622e97759ef3e83c86c2efa34cac904dfe9e0 (patch) | |
tree | d31568d2d74ee3777799081520969a03b9c88bb9 | |
parent | Set tmux prefix back to E (J in Tarmak 1) (diff) | |
download | src-418622e97759ef3e83c86c2efa34cac904dfe9e0.tar.gz src-418622e97759ef3e83c86c2efa34cac904dfe9e0.zip |
Revert "Set tmux prefix back to E (J in Tarmak 1)"
This reverts commit 7e52ba444c0c64896648e7b3378ac69b28381207. Turns out it's a lot easier on my hand to hit C-space.
-rw-r--r-- | curtis/.tmux.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/curtis/.tmux.conf b/curtis/.tmux.conf index 97a73012..46e9130a 100644 --- a/curtis/.tmux.conf +++ b/curtis/.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-j -bind j send-prefix +set -g prefix C-space +bind space 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-j last-window +bind C-space last-window bind C-w last-pane bind h previous-window bind l next-window |