Cheatography
https://cheatography.com
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 |
VSCode
Strg + Shift + p |
show command palette |
Strg + ö |
start terminal |
|
|
Tmux
tmux new -s mysession |
start new session |
tmux kill-session -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,Down,Left,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 |
|
Created By
Metadata
Comments
No comments yet. Add yours below!
Add a Comment
Related Cheat Sheets