-
Notifications
You must be signed in to change notification settings - Fork 799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CompletionItemKind missing some kinds from SymbolKind #155
Comments
I wondered that too! The set of completion items should be a super set of the set of symbol kinds. It makes no sense that there are symbols that cannot be provided for completion, since the editor would already have the icons for it anyway. |
The difference is:
I am not sure how useful it is to have String, Number, Boolean and Array as CompletionItemKind. But it doesn't hurt either. @jrieken can you recall any reasons why we kept them so different. |
I am particularly interested in |
Yeah, no particular reason. Mostly historical reasons, something we can revisit |
OK. Great. |
Dups #129 |
I don't get why
CompletionItemKind
does not extendSymbolKind
since you can presumably complete any kind of symbol. In any case, it would be nice ifCompletionItemKind
providedNamespace
orPackage
since that's a common thing to want completion on.The text was updated successfully, but these errors were encountered: