Bee wrote:
> [^\s]\+ matches everything except "\" and "s"

Yes. You can try search /[\s] and observe that it highlights
each \ and each s (so the "\s" is NOT used to mean whitespace).

To search for not whitespace:

/[^[:space:]]\+

John

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to