Within Vim to group some chars sequence usage of \( \) is required. The same behavior is for other specials: \{ \}.
Is it possible to change regex style to be like in perl? How to switch it?
Instead
\\(
I would
(
???
|
|
|
You can change the default required 'magic level'
See I'd recommend using the corresponding escapes instead to avoid breaking your other mappings.
will match consecutive digits like you'd expect with Perl Regex From pattern.txt help:
|
||||
|
|