-
Notifications
You must be signed in to change notification settings - Fork 12
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
search query should not strip spaces #300
Comments
Yes, that is limitation, you cannot search space surrounded keyword. Using space as query keyword separator, I cannot keep bare white-space intact.
|
Maybe having an option so we can toggle behavior to tokenize |
That's one idea, then we have to escape Another idea I implemented experimentally but removed is to "set query end manually by special command" such as What do you think of this idea? |
Why not.. If I understand it correctly, to search for Now, it depends on how much you use what. Can be a drag if user wants to use both For me, I personally didn't know that IMO, using Either way, I'm not opposed to any solution that allows my beloved |
Spaces are significant. Right now the workaround is to use regexp search and replace spaces with
\s
, which is not ideal since it also matches EOL.Narrow
0.65.0
, Win7, Atom1.26.1
The text was updated successfully, but these errors were encountered: