Advertisement
FocusedWolf

Linux: Tmux

Jun 6th, 2024 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. $ tmux
  2.  
  3. [Ctrl + b] ? <-- Show help. Q to exit help.
  4.  
  5. [Ctrl + b] " <-- Split window vertically.
  6. [Ctrl + b] % <-- Split window horizontally.
  7. [Ctrl + b] space <-- Select next layout.
  8.  
  9. [Ctrl + b] arrow <-- Select the pane in the arrow direction.
  10. [Ctrl + b] o <-- Select the next pane.
  11. [Ctrl + b] [Ctrl + o] <-- Rotate panes.
  12. [Ctrl + b] x or $ exit <-- Kill the active pane.
  13. [Ctrl + b] z <-- Zoom the active pane.
  14.  
  15. [Ctrl + b] & <-- Kill current window. If only one window then exits tmux.
  16. [Ctrl + b] 0-9 <-- Select window N.
  17. [Ctrl + b] c <-- Create a new window.
  18. [Ctrl + b] n <-- Select the next window.
  19. [Ctrl + b] p <-- Select the previous window.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement