From af17e5c0251dc317ea91b22f698cb35f9857a1ea Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 17 Nov 2021 23:12:50 -0500 Subject: [PATCH] docs: create computers/tmux --- computers/tmux.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 computers/tmux.md diff --git a/computers/tmux.md b/computers/tmux.md new file mode 100644 index 0000000..8b35f02 --- /dev/null +++ b/computers/tmux.md @@ -0,0 +1,23 @@ +--- +title: Tmux +description: +published: 1 +date: 2021-11-18T04:12:42.276Z +tags: +editor: markdown +dateCreated: 2021-11-18T04:12:42.276Z +--- + +# Tmux +## Basics +- **ctrl+b %** - Opens new pane to left +- **ctrl+b "** - Opens to new below +- **ctrl+b c** - Opens new window +- **ctrl+b {any number}** - switches to that window +- **ctrl+b ,** - rename window +- **ctrl+b d** - detach session +- **tmux ls** - lists all sessions +- **tmux attach -t {session number/name}** - reattach to session +- **tmux session-rename -t {session number/name} {new name}** - renames session +- **tmux new -s {name}** - Opens new session with given name +- **tmux kill-session -t {session number/name}** - kills session \ No newline at end of file