vim:放弃hjkl
vim放弃使用hjkl,可以加快文本的编辑速度,不信,看我摘录的文章:http://vimcasts.org/blog/2013/02/habit-breaking-habit-making/
Wordwise motions are 5x faster than h
and l
The w
, b
, e
, and ge
commands allow us to move forward or backward to the start or end of a word. The W
, B
, E
, and gE
commands do the same for a WORD (see :help word for the difference between words and WORDs). If we say that the average word length is 5 letters, then moving back and forward a word at a time is approximately five times faster than using h
and l
to move a character at a time.
Start off by adding w
and