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
(
???
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can change the default required ‘magic level’
See
:he magicI’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: