I use shortcut 'w' to move the cursor one word right, is there any shortcut to move a word left?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
use
Source: http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html |
|||||||||
|
|
It's b. You can see other motions here: http://vimdoc.sourceforge.net/htmldoc/motion.html#word-motions Generally a Vim command is consisted of count action motion Where: count is number of times you want it to execute, default is 1 action is obviously an action: d for delete, c for change, default is empty and it means simply move motion is the direction, you got that already |
|||||||
|
|
yes, you can use "b" to backforward a word, and in advance, "2b" to move back 2 words |
|||
|
|


wdoes not move the cursor left. What are you trying to achieve? Moving the cursor (and if so in what direction) or moving words (again in what direction). – Peter van der Heijden Dec 20 '10 at 11:16