Victor Kamoto
Victor Kamoto
> Not sure what a good way to fix this could be. How about this? https://github.com/hrsh7th/nvim-cmp/wiki/Example-mappings#safely-select-entries-with-cr 
> What grinds me with Tab completion is I don't know how to dismiss the cmp and just insert a regular `` character 🙂 I tried mapping stuff like however...
The lazyvim config doesn't cater for tab completion. Since you added it yourself, you'll have to make custom mappings to cater for your usecase
https://github.com/yioneko/vtsls ```lua settings = { vtsls = { experimental = { completion = { enableServerSideFuzzyMatch = true, }, }, }, } ```
> can you elaborate on this? It significantly improves completion performance, as explained in the link on that post: https://github.com/yioneko/vtsls?tab=readme-ov-file#bad-performance-of-completion `tsserver` could throw out plenty of completion entries, most of...