On Tue, 30 Jan 2007, Jürgen Krämer wrote:

> 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.

Perfect. This is exactly what I wanted. Thanks!

Claus

Reply via email to