-
if i understand correctly, this shouldn't match any string:
Is it possible to have fzf matching whole words only? |
Beta Was this translation helpful? Give feedback.
Answered by
junegunn
Mar 30, 2024
Replies: 1 comment
-
In that case https://github.com/junegunn/fzf?tab=readme-ov-file#search-syntax You can either escape the space (i.e. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
junegunn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In that case
s
andc
are treated as two separate search terms.https://github.com/junegunn/fzf?tab=readme-ov-file#search-syntax
You can either escape the space (i.e.
s\ c
) or turn off the extended search mode with+x
(or--no-extended
) which I don't recommend.