nvim-telescope / telescope-fzy-native.nvim

FZY style sorter that is compiled
MIT License
178 stars 8 forks source link

Fuzzy search not working #10

Open zakissimo opened 2 years ago

zakissimo commented 2 years ago

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