vote up 0 vote down star

Imagine, we have to construct a regexp in vi/vim. Which special characters we have to escape with backslash?

By special characters I mean the following chars: {}|()-[]+*.^$?

Seems like we have to escape: {|()+?

And leave as is: }^$*.[]-

Thanks.

p.s. AFAIK, we have no '?' character in vi/vim but '=' instead which should be also escaped by backslash.

flag

2 Answers

vote up 1 vote down check

In vim:

:help magic

link|flag
Thanks! Vimers call them 'magic' :) – igorp1024 Nov 6 at 14:51
vote up 2 vote down

I think the Vim documentation on magic characters will give you a definitive list.

link|flag

Your Answer

Get an OpenID
or

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