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 03bb80d commit aa6125aCopy full SHA for aa6125a
OS/Linux/Tmux/tmux.md
@@ -46,5 +46,27 @@ Big clock: ``Ctrl b`` + ``t``
46
47
Shortcuts: ``Ctrl b`` + ``?``
48
49
+You can also create a `.tmux.config` file to create custom keybinds
50
+
51
+```
52
+set -g mouse on
53
54
+new
55
+neww
56
+splitw -h
57
+splitw -v
58
59
+bind h split-window -v
60
+bind v split-window -h
61
62
+unbind r
63
+bind r source-file ~/.tmux.conf
64
65
+bind i resize-pane -L 5
66
+bind b resize-pane -D 5
67
+bind s resize-pane -U 5
68
+bind d resize-pane -R 5
69
70
71
72
0 commit comments