Allow regex / non fuzzy search in the file picker #8181
-
For certain workflows (e.g. "go over every This could be done by defining a specific syntax for it (e.g. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
An additional mode or syntax could be search in files (like |
Beta Was this translation helpful? Give feedback.
-
Fuzzy completions already have special syntax for more exact searches. You can use This syntax allows what you have described. For example
I don't see us implementing a regex mode for the pickers. |
Beta Was this translation helpful? Give feedback.
Fuzzy completions already have special syntax for more exact searches.
You can use
$
for suffix match,^
for prefix match,'
for substring match,!
for negated substring match (every that contains this substring will be removed),!^
for negated prefix match and!...$
for negated postifx match.This syntax allows what you have described. For example
^directory/to/search .rs$
I don't see us implementing a regex mode for the pickers.