Created
December 3, 2019 11:47
-
-
Save snowmanunderwater/d3b9b4a65fc3b05a6386f2618301d530 to your computer and use it in GitHub Desktop.
tmux
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
| # create tmux | |
| $ tmux new-session -s NAME | |
| # detach from tmux | |
| ^b d | |
| # attach to tmux | |
| $ tmux attach -t NAME | |
| # create new window | |
| ^b c | |
| # switch to window | |
| ^b NUMBER | |
| # divide window in half verticaly | |
| ^b % | |
| # divide window in half horizontaly | |
| ^b " | |
| # switch to part of window | |
| ^b ARROW |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment