Last active
August 29, 2015 14:21
-
-
Save emaraschio/5fe4a1e70855f986fdf9 to your computer and use it in GitHub Desktop.
My Notes about Tmux
This file contains 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
0- Install in OS X | |
brew install tmux | |
1- Add this line on your shell client | |
tmux attach -t yoursession || tmux new -s yoursession | |
2- Windows | |
CTRL+B % -> Split | |
CTRL+B " -> Move to other panel | |
CTRL+B <UP ARROW> -> Move to next panel | |
CTRL+B z -> Fullscreen | |
CTRL+B c -> New tab | |
CTRL+B X -> Go to tab X | |
---- Resources ---- | |
http://www.sitepoint.com/tmux-a-simple-start/ | |
http://www.sitepoint.com/10-killer-tmux-tips/ | |
https://gist.github.com/MohamedAlaa/2961058 | |
https://gist.github.com/snuggs/800936 | |
https://github.com/tmuxinator/tmuxinator | |
https://github.com/tmux-plugins/tmux-resurrect | |
http://blog.hawkhost.com/2010/06/28/tmux-the-terminal-multiplexer/ | |
http://blog.hawkhost.com/2010/07/02/tmux-%E2%80%93-the-terminal-multiplexer-part-2/ | |
http://byobu.co/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment