-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
Hi VS Code dev here 👋
Last milestone we have introduced a Start View for debugging. More about this can be found here microsoft/vscode#84677
So when the user has no launch.json file this view should help him start debugging.
This view is currently language agnostic and not very cluttered thus we are slowly looking in opening it up to extensions. We have two options:
- Allow extensions to contribute commands / text to the current view. Those commands would be rendered as additional blue buttons or as some menu
- Allow extensions to contribute a whole view which would be below the start view. The C++ extension could choose what to render in that view and it would give a bit more control to the extension. Using context keys this view would only be visible in the "start" experience
What I would be interested in is what C++ would like to contribute to improve the start experience. If it is only commands, than I think it makes sense to show those commands in the start view (for example with additional blue buttons). If it is much more then it makes more sense that C++ contributes the whole view.
What are the biggest pain points that C++ users hit when setting up debugging?
Related python discussion: microsoft/vscode-python-debugger#164
Let me know what you think and how you envision the C++ debug start experience.
Thanks!
Current look of debug start view
fyi @WardenGnaw
