Vim (LvL: Survive) : Navigation

left down up right:h,j,k,l

jump to beginning of next word(considering punctuation): w

jump to beginning of next word(ignoring punctuation&right after next space): W

jump to the end of next word(skip punctuation): e

jump to the end of next word(containing punctuation): E

jump to the beginning of the last word(containing punctuation):b

jump to the beginning of the last word(skip punctuation):B

do to $num of jump: num + e/b/w....

jump to the end of the last word(containing punctuation):ge

jump to the end of the last word(skip punctuation):gE

jump to the next "some char":f "some char"

jump to the last "some char":F "some char"

jump to the one setoff before next "some char": t "some char"

repeat:  ;

jump to the beginning of the line:$

jump to the end of the line:0


Reference: http://www.derekwyatt.org/vim/vim-tutorial-videos/vim-novice-tutorial-videos/

你可能感兴趣的:(vim,basic)