Skip to content

Commit 0259263

Browse files
added tmux basics
1 parent 3ae60da commit 0259263

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

terminal/tmux.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)