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
eregex.vim: e169210 vim: 7.4 OS: Linux
I have a logfile that looks something like this:
host: example.com action: frobnicate foo status: OK host: example.com action: bamboozle baz status: network error
I want to search for entries that don't have "status: OK" i.e. the errors. This works fine when searching from the top down e.g.
:M/status: (?!OK)
But it's not working for me at all with a reverse search. I navigate to the bottom of the document, enter:
:M?status: (?!OK)
And get the following error:
E486: Pattern not found: status: (
The text was updated successfully, but these errors were encountered:
I get the same error when with a zero-width positive lookahead assertion. Works in forward search, but not backward search.
Sorry, something went wrong.
hi, this has been fixed?
No branches or pull requests
eregex.vim: e169210
vim: 7.4
OS: Linux
I have a logfile that looks something like this:
I want to search for entries that don't have "status: OK" i.e. the errors. This works fine when searching from the top down e.g.
But it's not working for me at all with a reverse search. I navigate to the bottom of the document, enter:
And get the following error:
The text was updated successfully, but these errors were encountered: