Can I turn on extended regular expressions support in Vim?

前端 未结 2 1712
没有蜡笔的小新
没有蜡笔的小新 2020-12-23 12:46

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

相关标签:
2条回答
  • 2020-12-23 13:14

    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!-)

    0 讨论(0)
  • 2020-12-23 13:29

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

    nnoremap / /\v
    vnoremap / /\v
    
    0 讨论(0)
提交回复
热议问题