jonarrien / telescope-cmdline.nvim

Telescope cmdline
MIT License
129 stars 11 forks source link

Support fuzzy finding #12

Closed dlvhdr closed 9 months ago

dlvhdr commented 9 months ago

Given the input "lsp" I would like to match commands such as "LspInfo". Right now I have to match the casing and search for "Lsp". Also fuzzy searching in general would help like typing "lsi" to find "L s p Info".

jonarrien commented 9 months ago

This plugin uses nvim's internal command line autocompletion and it will suggest the same results as command line does ( case sensitive and without fuzzy finding). On the other hand, it uses your input to search in command history and it won't work well with fuzzy finding.

In any case, typing lsp provides the results what you are looking for. Just ensure you use <TAB> to autocomplete it.

image