Tmux: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
 
Line 9: Line 9:
*https://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily/
*https://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily/


=FAQ=


==remap control to ^a==
= FAQ =
 
== remap control to ^a ==
 
In ~/.tmux.conf
In ~/.tmux.conf
  unbind C-b
  unbind C-b
  set -g prefix C-a
  set -g prefix C-a
  bind C-a send-prefix
  bind C-a send-prefix


==new window==
== new window ==
 
  ^b c
  ^b c


==switch window==
== switch window ==
 
  ^b n
  ^b n


==Wrong window size==
== Kill window ==
^b &
 
== Wrong window size ==
 
Detach the others:
Detach the others:
  ^b :detach -a
  ^b :detach -a


==Attach==
== Attach ==
 
  tmux a
  tmux a

Latest revision as of 11:07, 22 December 2021

Terminal Multiplexer


Links


FAQ

remap control to ^a

In ~/.tmux.conf

unbind C-b
set -g prefix C-a
bind C-a send-prefix

new window

^b c

switch window

^b n

Kill window

^b &

Wrong window size

Detach the others:

^b :detach -a

Attach

tmux a