I am extending the debug variable and watch context menu and would also like to extend the debug hover menu. But there is no contribution point for this. Suggest adding to
|
key: 'debug/watch/context', |
{
key: 'debug/hover/context',
id: MenuId.DebugHoverContext,
description: localize('menus.debugHoverContext', "The debug hover view context menu")
},
Further, there are also no contribution points to the debug breakpoints context menu, neither the view title menu. I'm considering implementing proper handling of language exceptions, but maybe I'll rather add an additional view than to extend the existing breakpoints view...
I am extending the debug variable and watch context menu and would also like to extend the debug hover menu. But there is no contribution point for this. Suggest adding to
vscode/src/vs/workbench/services/actions/common/menusExtensionPoint.ts
Line 109 in 6dcd47b
Further, there are also no contribution points to the debug breakpoints context menu, neither the view title menu. I'm considering implementing proper handling of language exceptions, but maybe I'll rather add an additional view than to extend the existing breakpoints view...