girishji / vimcomplete

Async autocompletion for Vim.
MIT License
111 stars 4 forks source link

Is FZF style completion listing possible? #55

Closed hammymath closed 4 months ago

hammymath commented 4 months ago
  1. apples
  2. app
  3. apply

typing "apl" currently does not give apples as a potential result completion. I think it would be a beneficial feature.

girishji commented 4 months ago

Can you try setting option completionMatcher to fuzzy for buffer completion?

    g:VimCompleteOptionsSet({
        buffer: { enable: true, completionMatcher: 'fuzzy' }

Lsp completion also has similar option.