hrsh7th
hrsh7th
Please update the docs.
LGTM. Thank you.
The implementation should have been able to do this, but the current nvim-cmp is badly designed and difficult to implement. Sorry...
Probably, the reason is that nvim-cmp doesn't support `offsetEncoding` spec (that defined in LSP). Probably, if we support LSP 3.17, this problem will be elliminated.
You can add or remove the `comparators` by yourself. ```lua cmp.setup { sorting = { comparators = { cmp.config.compare.offset, cmp.config.compare.exact, cmp.config.compare.score, cmp.config.compare.kind, cmp.config.compare.sort_text, cmp.config.compare.length, cmp.config.compare.order, } } } ``` The...
The behavior of removing duplicate entries is not that smart. LSPs and Snippets entries are not specified to remove duplicate entries. The `removing duplicate entries` is specified per source (e.g....
Sorry. I can't agree with the opinion that "that the option should be easy to configure". I think the core should only have primitive configuration way. Otherwise, the public api...
No. I hope someone create it as a separated plugin.
My next task is this. But it is a bit difficult. I didn't know the reason yet.
Hm... I think we can't fix it because native lsp's `hover` feature also causes this...