diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-05 20:17:40 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-05 20:17:40 +0200 |
commit | b89e893bfc7b8893dc4c13aa55f627096b32758a (patch) | |
tree | 351c12bb0f920406bf705ddc956f0c86c269461a /.config/tmux/tmux.conf | |
parent | 97af3043101bf2b8cd0f512da70c7e7fdf9dd204 (diff) |
Fix pane splitting to correct keybindings
Diffstat (limited to '.config/tmux/tmux.conf')
-rw-r--r-- | .config/tmux/tmux.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 7386489..5ef096c 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -29,8 +29,8 @@ setw -g mode-keys vi setw -g mouse off # split panes -bind h split-window -h -bind v split-window -v +bind v split-window -h +bind h split-window -v unbind '"' unbind % |