Hi,

Claus Atzenbeck wrote:
> On Tue, 30 Jan 2007, Roy Fulbright wrote:
> 
>> Try using capital "W" instead.
> 
> Thanks, this helps. I read about it when I started using Vim, however,
> apparently I forgot that.

note that "W" uses Vim's definition of WORD, i.e., any sequence of
non-blank characters separated by white space is considered to be a
WORD. In practice this means that "W" will not stop at commas, dots,
exclamation marks, quotes, etc. It might be better to

  :set iskeyword=@,48-57,_,192-255

which considers all characters where the C runtime function isalpa()
returns TRUE, all digits, the underscore, and all characters in the
range from 192 to 255 to be part of a word. Then "w" should work as
wanted.

Regards,
Jürgen

-- 
Sometimes I think the surest sign that intelligent life exists elsewhere
in the universe is that none of it has tried to contact us.     (Calvin)

Reply via email to