Category: tmux
-
[HOWTO] Copy and paste in tmux (complete HOWTO)
I often forget this (because I don’t use copy/paste a lot in tmux), so this is a reminder for me: Go to the pane from where you want to copy Prefix [ Navigate to beginning of copy part, press space Navigate to end of copy part, press enter Text is now in buffer. Paste by…
-
TMUX Toggle pane synchronize key
In tmux.conf, add: bind e set -g synchronize-panes Prefix-e now toggles pane synchronization.
-
TMUX: Auto start on shell start
I always want to use tmux. So I put the following in my bashrc (just before the functions). # If not running interactively, do not do anything # If you don’t do this, your (graphical) login sessions will hang [[ $- != *i* ]] && return # If we are not yet in a screen…
-
TMUX: Start window count at 1 instead of 0
Add to tmux.conf: # Count 1 set -g base-index 1 set -g pane-base-index 1 Completely stop and start all tmux processes and you are good to go!