Software Crafting
  • Introduction
  • Tools
    • *nix\/Shell Setup
      • zsh
        • Switching to zsh
        • zsh Themes
        • zsh Prompt Escape Sequences
        • Troubleshooting
    • git
      • Addressing common errors
    • GitHub
      • GitHub Markdown Cheetsheet
      • Configure \/ Make \/ Make Install
    • tmux
      • Useful tmux Links
    • vim
      • Build from Repository Tips
    • Ubuntu
    • Misc
  • Seminars
    • 2018 SCaLE 16x Container Days
    • 2017 MATLAB Expo
    • 2017 SoCal Code Camp
    • 2017 SCNA
    • 2017 MathWorks Advisory Board
      • Day 1: MATLAB Platform and Data Analytics
      • Day 2: Model-Based Design with Simulink: Modeling and Simulation
      • Day 3: Model-Based Design with Simulink: Code Gen and V&V
    • Agile Systems Engineering Planning Using Six Thinking Hats
    • 2016 SoCal Code Camp
    • 2016 SCNA
    • 2016 Pre-SCNA Workshop
  • Programming
    • Javascript
      • Node.js
        • Frameworks
    • Python 2
    • Rust
    • Makefiles
    • GNU General Public License (GPL)
  • Crafting
  • Algorithms
  • Amazon Web Services
    • Administrating
Powered by GitBook
On this page
  • Key Bindings
  • Session Handling
  • Common Problems
  • Borders drawn with dashed lines
  • Errors with binding keys

Was this helpful?

  1. Tools

tmux

PreviousConfigure \/ Make \/ Make InstallNextUseful tmux Links

Last updated 6 years ago

Was this helpful?

Key Bindings

M-\ prefix key

Session Handling

tmux ls list sessions tmux attach -t # attach to session tmux name -s session_name create a named session tmux rename-session -t # session_name rename session

Common Problems

Borders drawn with dashed lines

For terminal in OS X, the origin of the problem is the font. Changing the font from the default Monaco to Menlo fixes the problem. ()

Errors with binding keys

Sometimes an error is encountered when binding keys to non-standard characters, such as the backslash (/) key. The solution is to use single-quotes around the key-combination. For example, use 'M-\' instead of M-\.

stackoverflow