'find in path' matches too many spaces
Answered
How can I disable it?
e.g:
"\n {8}return foo\(\);"
matches
"
return foo();"
and
"
return foo();"
and
"
return foo();"
The 'find' once I open the file no longer matches the same search afterwards. Is there no way to find with s specific amount of spaces?
Regex on or off doesn'T matter.
Please sign in to leave a comment.
Try using \s{n} (n is a number of spaces) with regexp on.