Created
September 18, 2017 08:19
-
-
Save jamiemcconnell/ff7254a2e770aa9ba4bafa5f20691688 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tmux | |
| Create a session | |
| tmux new-session -s session_name | |
| Reconnect to session | |
| tmux attach-session -t session_name | |
| Detach from a session | |
| CTRL+b | |
| :detach <ENTER> | |
| # Panes | |
| % vertical split o swap panes | |
| " horizontal split q show pane numbers | |
| x kill pane | |
| # Windows | |
| c create window w list windows | |
| , name window p previous window | |
| & kill window f find window | |
| n next window | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment