⪼ Made with 💜 by realpolyglot.com
- Income Sources
- Tmux Cheat Sheet & Quick Reference
- tmux shortcuts & cheatsheet
- tmuxp
- The Tao of tmux
- Benefits of using tmux — lessons from streamlining a development environment
- Tmux Tutorial (leimao.github.io)
- beginners-guide-to-react
- COURSE: The Beginner's Guide to React
- Software Engineering :: Operating Systems :: macOS :: MacBook Pro :: MacBook Setup for SWE :: Research & Resources
- Git :: Guides :: Everyday Git
- REMOTE PAIR PROGRAMMING WITH SSH & TMUX
- Pair Programing with vi and tmux
You've studied a few cheat sheets and reference guides; however, TMUX still doesn't seem to click for you? This guide is the guide I wish I had when I first encountered TMUX. A guide, small enough to digest in an afternoon with just enough depth for you to be a TMUX master even after being away from it for an extended period of time.
An exhaustive reference guide won't help. You don't need to know all of the commands and options. This guide is a minimal set of everyday commands that help keep you productive.
CTRL+b d
[detached (from session Thoughtworks Pair Programming Interview)]
CTRL+b q {PaneNumber}
CTRL+b !
CTRL+b ,
think of the percentage sign's circles as panes and there is a line going down the center
CTRL+b %
CTRL+b {WindowNumber}
CTRL+b w
CTRL+b s
CTRL+b $
» type attach
attach is a function with definition
# Defined in /Users/wmoore/.config/fish/functions/attach.fish @ line 1
function attach
tmux attach-session -t (tmux ls | cut -d':' -f1 | fzf-tmux)
end