Shougo / ddc-source-lsp

lsp source for ddc.vim
Other
66 stars 20 forks source link

Deal with LS that have id > 1 #32

Closed delphinus closed 2 years ago

delphinus commented 2 years ago

Servers in results can have id larger than 1. ipairs starts looping in its id: 1, 2, ..., but the result table may have 3, 4, ...

I fixed to use pairs to loop all available items robustly.