Vim Tips Wiki
(Minor rewording, and added tt tags around the keystrokes to make them more obvious in the explanation.)
m (Removed review marker.)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=137
 
|id=137

Revision as of 11:39, 1 June 2008

Tip 137 Printable Monobook Previous Next

created October 14, 2001 · complexity basic · author Brian Medley · version 5.7


By default, when pressing left/right cursor keys, Vim will not move to the previous/next line after reaching first/last character in the line. This can be quite annoying for new users. Fortunately this behaviour can be easily changed by putting this in your vimrc file:

set whichwrap=<,>,h,l,[,]

This causes the left and right arrow keys, as well as h and l, to wrap when used at beginning or end of lines. ( < > are the cursor keys used in normal and visual mode, and [ ] are the cursor keys in insert mode).

References

Comments