Dnia niedziela, 18 czerwca 2006 12:00, Yakov Lerner napisaƂ:
> vim unserstands \t and \n in [] in regexp (as tab and as newline).
>
> But \s is not treated as blanks in []. Can you please add
> treatment of \s as blanks in [] in regexp. I mean, \s is sort of
> space and Tab, no more complex than that, no ?

\t and \n are single characters. Vim doesn't understand classes in [].
But you can use [[:space:]] (but [:space:] is only <space> and <tab>).

m.

Reply via email to