Show Menu
Cheatography

Linux Applications Cheat Sheet by

Most Important Shortcuts for Vim, Tmux etc.

Vim

w
next word
e
last character of word
b
first character of word
0
beginning of line
$
end of line
(
last paragraph
)
next paragraph
A
insert mode on end of line
r
replace character
x
delete character
.
repeat last command
:!
execute shell commands
dw
delete word
d0
delete everything before
d$
delete everything after
yy
copy line
p
paste line
n
next result (while search)
N
last result (while search)
:% s/a/b/gc
replace a with b
:saveas a.txt
save as other file

Placeh­older

Text
Text

VSCode

Strg + Shift + p
show command palette
Strg + รถ
start terminal
 

Tmux

tmux new -s mysession
start new session
tmux kill-s­ession -t mysession
kill session
tmux ls
list sessions
tmux a -t mysession
attach to session
prefix + c
new window
prefix + w
list all windows
prefix + n
jump to next window
prefix + p
jump to previous window
prefix + 1
jump to 1 window
prefix + .
move window
prefix + ,
rename current window
prefix + CTRL S
save session (bootable)
prefix + CTRL V
restore session
prefix + h
split horizontal
prefix + v
split vertical
prefix + z
zoom into current window
ALT + Up,Dow­n,L­eft­,Right
change pane
prefix + [
enable scrolling
prefix + m
toogle mouse mode
prefix + r
reload tmux.conf
prefix + i
enable plugin
 

Misc

Strg + a
go to beginning of line
       
 

Comments

No comments yet. Add yours below!

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.

          Related Cheat Sheets

          tmux the terminal multiplexer Cheat Sheet
          VI Editor Cheat Sheet
          Vim NERDTree Cheat Sheet