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
Can we return additional information for users on completion with CompletionItem?
Debug adapter can know detailed information of complemented text. For example: On Ruby, if the given text is 1.time, then it returns 1.times because DAP can know 1 is Integer and it has the method Integer#times. On this case, with the completion results 1.times, showing Integer#times is informative for users. In other words, showing type information seems useful.
If the type information is short, it is enough by containing the information in label, but it's better to show them separately.
The text was updated successfully, but these errors were encountered:
@connor4312 thanks for taking care of this.
I've moved the change log item under the previous version because I typically batch all changes under a single version per milestone.
Could you please create an adoption item in VS Code that refers to this item and explains what to do.
Ah, sorry, I didn't realize -- I already copied the change to vscode-debugadapter-node and published it as 1.53 following semver. Unpublishing is possible though somewhat dangerous -- what would you prefer I do to fix this?
Can we return additional information for users on completion with
CompletionItem
?Debug adapter can know detailed information of complemented text. For example: On Ruby, if the given text is
1.time
, then it returns1.times
because DAP can know1
isInteger
and it has the methodInteger#times
. On this case, with the completion results1.times
, showingInteger#times
is informative for users. In other words, showing type information seems useful.If the type information is short, it is enough by containing the information in
label
, but it's better to show them separately.The text was updated successfully, but these errors were encountered: