File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,10 @@ The amount of cells to resize can be configured with `@pane_resize` option. See
64
64
split current pane horizontally
65
65
- ` prefix + - ` <br />
66
66
split current pane vertically
67
+ - ` prefix + \ ` <br />
68
+ split current pane full width horizontally
69
+ - ` prefix + _ ` <br />
70
+ split current pane full width vertically
67
71
68
72
Newly created pane always has the same path as the original pane.
69
73
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ pane_resizing_bindings() {
41
41
42
42
pane_split_bindings () {
43
43
tmux bind-key " |" split-window -h -c " #{pane_current_path}"
44
+ tmux bind-key " \\ " split-window -fh -c " #{pane_current_path}"
44
45
tmux bind-key " -" split-window -v -c " #{pane_current_path}"
46
+ tmux bind-key " _" split-window -fv -c " #{pane_current_path}"
45
47
tmux bind-key " %" split-window -h -c " #{pane_current_path}"
46
48
tmux bind-key ' "' split-window -v -c " #{pane_current_path}"
47
49
}
You can’t perform that action at this time.
0 commit comments