1.3 KiB
+++ title = "Cheatsheet Tmux" date = 2022-08-28T19:15:25-04:00 lastmod = 2022-08-28T19:15:25-04:00 tags = ["cheatsheet","tmux"] categories = ["Linux"] imgs = [] cover = "https://images.pexels.com/photos/5380664/pexels-photo-5380664.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" # image show on top readingTime = true # show reading time after article date toc = true comments = false justify = false # text-align: justify; single = false # display as a single page, hide navigation on bottom, like as about page. license = "" # CC License draft = false +++
Tmux is a terminal multiplexer. It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal.
| Create window | Ctrl + b c |
| Switch window by number | Ctrl + b 0...9 |
| Previous window | Ctrl + b p |
| Next window | Ctrl + b n |
| Split pane with vertical layout | Ctrl + b " |
| Split pane with horizontal layout | Ctrl + b { |
| Switch pane | Ctrl + b ⬆️⬇️➡️⬅️ |