Guest User

Untitled

a guest
Jan 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. = Sessions
  2.  
  3. tmux new-session [-s session-name]
  4. tmux attach-session [-t target-session]
  5. tmux list-sessions (alias: ls)
  6. tmux rename-session [-t target-session] new-name
  7.  
  8. C-b d # detach session
  9.  
  10. = Windows
  11.  
  12. C-b . # Renumber a window
  13. C-b , # Rename a window
  14.  
  15. C-b % # Split vertically
  16. C-b " # Split horizontally
  17. C-b o # Switch to next pane
  18.  
  19. tmux link-window -s [session]:[window] [-t [[session]:][window]]
  20.  
  21. = Options
  22.  
  23. # Set default path
  24. :set-option default-path <path>
Add Comment
Please, Sign In to add comment