zerai.xyz/content/post/cheatsheet-tmux.md
2022-08-28 19:43:47 -04:00

1.2 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 = "" # 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 ⬆️⬇️➡️⬅️

Acknowledgement :