Update README.md

This commit is contained in:
Graphene 2017-08-19 14:10:31 +03:00 committed by GitHub
parent c9bd6cca5b
commit 032efb7662

View File

@ -1,34 +1,42 @@
# tmux-guide # tmux-guide
tmux: How to use tmux and cheat-sheet for tmux tmux: How to use tmux and cheat-sheet for tmux
Configuration:
============
Make sure to create a configuration in your local folder:
~.tmux.conf
If your username is John, then your file should be located at somewhere like:
/home/john/.tmux.conf
Cheat sheet: Cheat sheet:
============ ============
Ctrl+b <command>
Ctrl+b <command> NOTE: First press together [Ctrl] and [b] buttons. Then release your fingers from then and press [b].
Commands Commands
============ ============
Windows: Windows:
c - window: create c - window: create
, - window: rename , - window: rename
p - window: previous p - window: previous
n - window: next n - window: next
w - window: select available windows w - window: select available windows
s - window: list all sessions s - window: list all sessions
Splits: Splits:
% - Split: Vertical % - Split: Vertical
" - Split: Horizontal " - Split: Horizontal
Misc: Misc:
: - Commands: Run a custom named command which you have created (e.g. "split-windows") : - Commands: Run a custom named command which you have created (e.g. "split-windows")
Panes: Panes:
q show pane numbers q - Pane: Show numbers
x kill pane x - Pane: Kill
o swap panes o - Panes: Swap
Sessions: Sessions:
tmux new -s session-name tmux new -s session-name
tmux list-sessions tmux list-sessions
tmux attach -t session-name tmux attach -t session-name