You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to 1.7.0, I was trying to test the new DROP TABLE keyword support.
But I noticed that on LunarVim (in particular), the suggestions where not being displayed.
After some debugging, I noticed that sqlls was properly configured, and also returning suggestions as usual. But still, suggestions where not being displayed
After some more debugging I found out that LunarVim skips LSP suggestions that have the Text kind.
WIth this information in hand, I found out this code
Just for added context, the problem is solved here.
But I believe that it was just a coincidence. And is not necessarily related to this issue in particular.
After updating to 1.7.0, I was trying to test the new
DROP TABLE
keyword support.But I noticed that on LunarVim (in particular), the suggestions where not being displayed.
After some debugging, I noticed that sqlls was properly configured, and also returning suggestions as usual. But still, suggestions where not being displayed
After some more debugging I found out that LunarVim skips LSP suggestions that have the
Text
kind.WIth this information in hand, I found out this code
My questions is Why is that? Shouldn't keyword candidates be returned as
CompletionItemKind.Keyword
?BTW, this
ICONS
object is being repeated hereThe text was updated successfully, but these errors were encountered: