I am using telescope with Neovim to find files quickly. However, when I try to input two search strings seperate by space, telescope does not list any files. How can I search for files with two individual substrings in their path?
Asked
Active
Viewed 1,176 times
1 Answers
3
As Telescope is a fuzzy finder, you don't need to separate search by spaces, just type all together.
For example, if you have a file named some_python_script.py
it will appear as a result of the query: somescript

Jorge Morgado
- 1,148
- 7
- 23
-
Thank you, that actually did the trick, I should have had that idea myself. – Cactus Jun 16 '22 at 15:37