-
Notifications
You must be signed in to change notification settings - Fork 29.2k
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
Provide completion proposals for variables in launch.json #8370
Comments
Thanks for the code pointer. However each debug adapter extension provides these variables, so I can not just add a list of these in the configuration editing extension. The right solution for me feels like each debug adapter extension would provide these completion proposal. VSCode could also dynamically provide this list of proposols after collecting them from the adapter extensions however in vscode I can not get a reference to your json-parser, I only see it being used from extensions (thus I can not read the location). Assigning also @weinand |
@isidorn The vscode.d.ts API lets you get all extensions ( |
We now suggest variables inside values that are string for both the @dbaeumer let me know if you do not like this behavior for |
@isidorn like it as well. Thanks for working on it. |
It would be great of there are completion proposals for variables in launch.json.
That's now quite easy to add, check out https://github.com/Microsoft/vscode/blob/master/extensions/configuration-editing/src/extension.ts.
This adds completions to keybindings.json.
You could add yourself also to the 'configuration-editing' extension, as launch is also a configuration file.
The text was updated successfully, but these errors were encountered: