Tmux: Difference between revisions

From DWIKI
(Created page with "Terminal Multiplexer =Links= *[https://robots.thoughtbot.com/a-tmux-crash-course tmux crash course] =FAQ= ==new window== ^b c ==switch window== ^b n")
 
mNo edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Terminal Multiplexer
Terminal Multiplexer


=Links=
*[https://robots.thoughtbot.com/a-tmux-crash-course tmux crash course]


=FAQ=
= Links =
==new window==
 
*[https://robots.thoughtbot.com/a-tmux-crash-course tmux crash course]
*[https://gist.github.com/Bekbolatov/6840069e51382965fdad Tmux cheat sheet]
*[https://gist.github.com/Starefossen/5955406 Another cheat sheet]
*https://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily/
 
 
= 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
  ^b c


==switch window==
== switch window ==
 
  ^b n
  ^b n
== Kill window ==
^b &
== Wrong window size ==
Detach the others:
^b :detach -a
== Attach ==
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