-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
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
find end of line #2059
Comments
(\r\n)+ |
It just uses JavaScript regex against the text. |
@matthewkastor |
:O but I worked on that a long time ago and I totally hate line by line parsing! Hmmm... hmmmm... changing the default would be a nightmare flood of bug reports... I could have sworn there was a way to do it. That was so long ago... if you specify your search string with forward slashes will it be parsed as a regex object? Maybe I'm remembering a different project. |
This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
in regex mode
[.*]
neither\r
nor\n
will find the end of lineI realize
bbb$
will findbbb
at the end of a lineand
^qqq
will findqqq
at the start of a lineBut it would be nice if
bbb\nqqq
would find the lines that end withbbb
--AND-- the next line starting withqqq
.The text was updated successfully, but these errors were encountered: