How to contribute to debug console context menu #2422
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @yuqizhou77 , I’m not too familiarized with the Debug Adapter API, but based its documentation (https://code.visualstudio.com/api/extension-guides/debugger-extension), it seems you can only interact with the content of the Debug Console window, for interactive evaluation with autocomplete. Also, the Contributions Points for menus (https://code.visualstudio.com/api/references/contribution-points#contributes.menus) doesn’t expose any option that refers to the Debug Console. So, I suppose such feature is not supported. In this case, I would suggest you to open a feature request in the VS Code repo (https://github.com/microsoft/vscode/issues). Hope this helps |
Beta Was this translation helpful? Give feedback.
Hi @yuqizhou77 ,
I’m not too familiarized with the Debug Adapter API, but based its documentation (https://code.visualstudio.com/api/extension-guides/debugger-extension), it seems you can only interact with the content of the Debug Console window, for interactive evaluation with autocomplete. Also, the Contributions Points for menus (https://code.visualstudio.com/api/references/contribution-points#contributes.menus) doesn’t expose any option that refers to the Debug Console.
So, I suppose such feature is not supported. In this case, I would suggest you to open a feature request in the VS Code repo (https://github.com/microsoft/vscode/issues).
Hope this helps