Sed

Vim

Operator

d: Delete

y: Yank

%: whole

Word

w: forWard →

e: End →

b: Backward ←

Line

0: same as Zero ←

^: ^0 ←

$: /some/path$ →

Screen

C-u: Up ↑

C-d: Down ↓

gg: Go top ↑

G: Go Bottom ↓

Document

N-G: ``G```o N line

gi: Go Interaction

Edit

Insert

a: Ahead → ^->->

i: Internal ← ^<-<-

o: Open ↓ ^↑

c: Clear

Command

x: same as Delete → ^←

p: Past ↓

u: Undo ←

C-r: Redo →

Clipboard

yy: Yank line

dd: Duplicate Delete line

p: Paste ↓ ^↑

Etc

C-o: Operation

C-r: calculaorR

iw: In Word

aw: Around Word

Bash/ZSH

 ^A %B ^B ^F %F   ^E
  <--<--<-->-->---->
  |  |  |  |  |    |
$ cp monfichier dir/
  <--<-------->---->
 ^U ^W       %D   ^K

C-a: Ahead <-<-

C-e: End ->->

C-f: Forward character ->

C-b: Backward character <-

A-f: Forward word ->

A-b: Backward word <-

C-k: Clear to end of line ->->

C-u: Clear to beginning of line <-<-