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
This is coming from the json schema suggest provider -> forwarding to @aeschli
Debug is properly contributing all the proposals as seen in step 5) of Kai's steps
isidorn
added
bug
Issue identified by VS Code Team member as probable bug
json
JSON support issues
and removed
debug
Debug viewlet, configurations, breakpoints, adapter issues
labels
Sep 28, 2016
That's a subtlety of the JSON language server implementation. In the case of alternatives for the same object (in this case a configuration for each debug adapter) code assist looks which alternative matches. As type matches 100%, it only considers the schema for that cnfiguration and ignores all others. Thats useful for all properties except for the 'type' itself...
But it's tricky and I'd rather live with the bug for now
aeschli
changed the title
Intellisense in launch.json not showing the correct proposals
[json] no completions for enum values in alternatives
Aug 2, 2017
Testing #12600.
Steps to Reproduce:
launch.json
file:in the line 6 place caret in anywhere between the quotes in
"node"
.Ctrl+Space
-> The only proposal you see is
node
. There should also benode2
.delete the word
node
in line 6Ctrl+Space
-> You get all valid proposal for launch config types.
The text was updated successfully, but these errors were encountered: