We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Although some progress has been done
85a4122
search for ( which must be escaped in ag which search with regexp by default do not highlight all results
(
A function to escape unscaped chars is needed
"(\(|:)" --> "\((\|:\)" "function (foo|bar)\(\)" --> "function \(foo\|bar\)()"
The text was updated successfully, but these errors were encountered:
Rfc: extracted syntax file from ag#group#search
95140f4
- Plus function was split to prepare to following refactoring - Experimental simplification of regex escaping for highlighting Ref #50, Ref #11
1defc3d
Have to add some test for this as it is a tricky implementation easily breakable
Sorry, something went wrong.
No branches or pull requests
Although some progress has been done
85a4122
search for
(
which must be escaped in ag which search with regexp by default do not highlight all resultsA function to escape unscaped chars is needed
The text was updated successfully, but these errors were encountered: