vote up 4 vote down star
1

I'm using VIM do alot of work for me using the macros.

There's alot of text in columns and I want the macro to move between columns effortlessly by pressing the w key to "move to the beginning of the next word"

For example:

DataSourceName            string                       ""   
DetailFields              []string                          
DynamicControlBorder      boolean                 empty  may be void 
EscapeProcessing          boolean                    True   
FetchDirection            long                       1000   
FetchSize                 long                         12   
Filter                    string                       ""   
GroupBy                   string                       ""   
HavingClause              string                       ""

However when I do this, VIM only does this for letters; whenever it encounters a "[" or a " it interprets this as another word, messing up the macro because it now appears that there is an additional column.

Is there any setting I can change to make vim ignore the special characters and treat them just like the letters by skipping over them?

[Update]

I found an even better answer to this question over at superuser.com:

http://superuser.com/questions/12679/is-there-anyway-to-have-vim-not-count-special-characters-as-words/12828#12828

flag

2 Answers

vote up 6 vote down check

You could make the special characters a part of word, see the iskeyword option. In your case you could simply try the following commands:

:set iskeyword+=[
:set iskeyword+=]
link|flag
Thanks chief! That did the trick :) – leeand00 Jul 25 at 22:04
Found an even more elaborate answer to this same question over at Superuser for anybody that's interested: superuser.com/questions/12679/… – leeand00 Jul 27 at 23:47
vote up 6 vote down

The W command (Shift+W) moves to the next word delimited only by spaces, not whatever Vim is configured to consider a "word" (as unshifted w does).

link|flag
@Greg, maybe clarify that you mean capital W there to distinguish? – Rob Wells Jul 25 at 14:26
Fixed, thanks.. – Greg Hewgill Jul 25 at 22:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.