diff options
author | Cody Hiar <cody@hiar.ca> | 2021-09-16 11:48:17 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-09-16 11:48:17 -0600 |
commit | 17c16aa6b332652285008f99b2b63dd490464147 (patch) | |
tree | 561a1fd727a55245d0ef19c63b8b089731afc587 | |
parent | a21c68a2e073b32b581fb94b6bd50a1df85281e9 (diff) |
reverse the vertical split and full screen commands
-rw-r--r-- | stow/tmux/.tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stow/tmux/.tmux.conf b/stow/tmux/.tmux.conf index 4dd4f28..c250ab5 100644 --- a/stow/tmux/.tmux.conf +++ b/stow/tmux/.tmux.conf @@ -7,7 +7,7 @@ unbind '"' unbind % bind '"' split-window -v -c "#{pane_current_path}" -bind C-v split-window -v -c "#{pane_current_path}" +bind C-f split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" bind C-c split-window -h -c "#{pane_current_path}" # Vim movements @@ -34,7 +34,7 @@ bind S switch-client -l # Synchronize mode bind a set-window-option synchronize-panes # Remap zoom, sleeping tmux way too much -bind C-f resize-pane -Z +bind C-v resize-pane -Z # I constantly mix up copy/paste. Very annoying/dangerous if cliboard has commands in it unbind [ bind C-g copy-mode |