nvim-telescope/telescope-fzy-native.nvim

Fuzzy search not working

zakissimo opened this issue · 0 comments

After installing telescope and fzy native. Whenever I use telescope it's always exact matching for some reason.

Here's my config :

	},
	extensions = {
		fzy_native = {
			override_generic_sorter = false,
			override_file_sorter = true,
		},
	},
})
require("telescope").load_extension("fzy_native")

Peek 2022-03-17 18-58

I also tried fzf native with the fuzzy=true option although I think it's the default value. I don't know what I'm messing up.

Here's the desired behavior:

Peek 2022-03-17 19-01