As the title says.
With Find_in_files and the like, the regex doesnt allow the OR operation with look-behind (negative and positive).
Example:
/\w+(?<=Sublime|Bob)/
The regex above gives the error:
Invalid lookbehind assertion encountered in the regular expression. in regular expression /\w+(?<=Sublime|Bob)/
BUT accepts this:
/\w+(?<=Sublime)(?<=Bob)/
I would like the app to support the OR operation for the regex look-behind
Other Details
Even this is not accepted by the app:
/\w+(?<=(?:Sublime|Bob))/