Victor Kamoto

Results 5 comments of 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 ![image](https://github.com/LazyVim/LazyVim/assets/43573646/463cec65-cf2a-415f-99d8-e9a1f3738a3d)

> 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...