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 3ae60da commit 0259263Copy full SHA for 0259263
terminal/tmux.md
@@ -0,0 +1,10 @@
1
+## Tmux summary
2
+1. Installation in osx `brew install osx`.
3
+2. Start `tmux`
4
+3. Split panes into left and right `C-b %`
5
+4. Navigating panes `C-b <arrow key>`. It can be configured to Alt + <arrow key> using the following in .tmux.conf
6
+ bind -n M-Left select-pane -L
7
+ bind -n M-Right select-pane -R
8
+ bind -n M-Up select-pane -U
9
+ bind -n M-Down select-pane -D
10
+5. Exit a pane `exit`
0 commit comments