macros - Is there anyway to have vim not count special characters as words? -
I am using VIM using the matrix.
The column has lots of text and I want to move the macro between the columns easily by pressing the w key to "move on to the beginning of next word"
for example To:
DataSourceName string "extension" [strings] string DynamicControlBorder boolean may be empty; zero projection boolean True FetchDirection long 1000 FetchSize long 12 filter string "" group string string "" havingClause string " Code>However when I do this The front, VIM only for letters; Whenever it is interpreted as "[" or "another word, it grows the macro, because now it appears that there is an additional column.
Do I have any settings Can I change so that I neglect VIM and behave like a letter by skipping them on a special letter?
[Update]
I got a better response to this question in SuperSyar.com:
You can do special part of the word word, see the iskeyword
option. In your case, you can just try the following commands:
: set iskeyword + = [: set iskeyword + =]
Comments
Post a Comment