We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5074f71 commit a9e1a1fCopy full SHA for a9e1a1f
CHANGELOG.md
@@ -3,6 +3,8 @@
3
### master
4
- split-window bindings "|" and "-" now create a new pane with the same path as
5
the original one the split started from.
6
+- improve the default new-window "c" binding so it creates new windows with the
7
+ same path as the current pane
8
9
### v0.0.1, 2014-05-23
10
- first version out
pain_control.tmux
@@ -39,9 +39,14 @@ pane_split_bindings() {
39
tmux bind-key "-" split-window -v -c "$PWD"
40
}
41
42
+improve_new_window_binding() {
43
+ tmux bind-key "c" new-window -c "$PWD"
44
+}
45
+
46
main() {
47
pane_navigation_bindings
48
pane_resizing_bindings
49
pane_split_bindings
50
+ improve_new_window_binding
51
52
main
0 commit comments