Open axsaucedo opened 3 years ago
A little late but i have the same problem myself, it seems to be an issue with the way the regex is parsed by Far.vim.
If i run
:F "function\(" *.cpp
I get the same error, as it seems that Far.vim expects a second ) to match the first as if it was a non-escaped () group.
My solution so far is to use
:F "function\(.*\)" *.cpp
which does the job as i mostly want to search for functions, which always have a matching closing parenthesis
I have tried running a replace with the command:
But I get the following error when I run the command:
I have also tried running multiple variations such as without the backslashes and/or alternating.
I have also tried with the old regexengine as recommended settings (and without).
Is this a bug or just my configuration?