Cactus
Cactus

Reputation: 924

Neovim and telescope:find files with two strings

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?

Upvotes: 2

Views: 1778

Answers (1)

Jorge Morgado
Jorge Morgado

Reputation: 1178

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

Upvotes: 3

Related Questions