Can I turn on extended regular expressions support in Vim?

RegexVimCommand Line

Regex Problem Overview


The characters for extended regular expressions are invaluable; is there a way to turn them on so that I don't have to escape them in my Vim regex, much like the -E flag I can pass to grep(1)?

Regex Solutions


Solution 1 - Regex

Do :help magic in vim and you'll see there are four levels (very magic, magic, nomagic, and very nomagic) but only the two central ones can be set globally (the default is magic, and with :set commands you can only toggle between magic and nomagic); start your RE with \v to make all the rest of it "very magic" ("all ASCII characters except '0'-'9', 'a'-'z', 'A'-'Z' and '_' have a special meaning") -- but that applies only to that one specific RE!-)

Solution 2 - Regex

A workaround is to remap / to prefix searches with "very magic" automatically:

nnoremap / /\v
vnoremap / /\v

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDrew StephensView Question on Stackoverflow
Solution 1 - RegexAlex MartelliView Answer on Stackoverflow
Solution 2 - RegexStephen NiedzielskiView Answer on Stackoverflow