File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 5
5
- update readme - more precise binding definition
6
6
- switch to tab indentation
7
7
- add swap-window bindings
8
+ - change "move window" key bindings to be more intuitive
8
9
9
10
### v0.0.2, 2014-06-03
10
11
- split-window bindings "|" and "-" now create a new pane with the same path as
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ Newly created pane always has the same path as the original pane.
62
62
63
63
** Swapping windows**
64
64
65
- - ` prefix + alt + h ` - moves current window one position to the left
66
- - ` prefix + alt + l ` - moves current window one position to the right
65
+ - ` prefix + < ` - moves current window one position to the left
66
+ - ` prefix + > ` - moves current window one position to the right
67
67
68
68
### Installation with [ Tmux Plugin Manager] ( https://github.com/tmux-plugins/tpm ) (recommended)
69
69
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ pane_navigation_bindings() {
27
27
}
28
28
29
29
window_move_bindings () {
30
- tmux bind-key -r M-h swap-window -t -1
31
- tmux bind-key -r M-l swap-window -t +1
30
+ tmux bind-key -r " < " swap-window -t -1
31
+ tmux bind-key -r " > " swap-window -t +1
32
32
}
33
33
34
34
pane_resizing_bindings () {
You can’t perform that action at this time.
0 commit comments