Complat software training 101
  • Introduction
  • Day 1
  • Day 2
  • TODO
  • Linear regression
  • Tmux
  • quick link
  • CLI more - 1
  • Vim more - 1
  • MQ
  • iv - 1
  • iv - 2
  • iv - 3
  • clear Arch
  • lv - array
  • INTERVIEW - JS
  • RDKit - read/write
  • RDKit - process
  • RDKit - transform
  • RDKit - rxn
  • SYSTEM DESIGN - Question
  • SYSTEM DESIGN - EX1
  • SYSTEM DESIGN - EX2
  • SYSTEM DESIGN - EX3
  • SYSTEM DESIGN - EX99
Powered by GitBook
On this page

Was this helpful?

Vim more - 1

New line & go into insert mode

o # new line after the current line
O # ... before ...

Movement

b # to previous word head
w # to next word head
e # to next word tail

Delete

x # delete character on cursor

dd
D # delete to eof


d-j # delete this line and next line
d-k # delete this line and upper line

d-l # delete right
d-h # delete left

Joint

J # join next line to current line

Undo / Redo

u # undo
ctrl-r # redo
PreviousCLI more - 1NextMQ

Last updated 5 years ago

Was this helpful?

http://tnerual.eriogerg.free.fr/vimqrc.html