nvim-telescope / telescope-fzf-native.nvim

FZF sorter for telescope written in c
1.38k stars 45 forks source link

Marking fuzzy=true has no effect #18

Closed ajitid closed 3 years ago

ajitid commented 3 years ago

fuzzy=true doesn't brings back fuzzy behaviour of FZF.

Config

local telescope = require("telescope")

telescope.setup{
  defaults = {},
  extensions = {
    fzf = {
      fuzzy = true,
      override_generic_sorter = false,
      override_file_sorter = true,
      case_mode = "smart_case"
    }
  }
}

telescope.load_extension('fzf')

To reproduce, use :Telescope find_files with above config.

Conni2461 commented 3 years ago

Sorry that was my bad. Just wanted to add more configuration :rofl: fuzzy should be default now and not be required to be set