|
64 | 64 | { |
65 | 65 | "command": "java.debug.debugJavaFile", |
66 | 66 | "title": "Debug" |
| 67 | + }, |
| 68 | + { |
| 69 | + "command": "java.debug.continueAll", |
| 70 | + "title": "Continue All" |
| 71 | + }, |
| 72 | + { |
| 73 | + "command": "java.debug.continueOthers", |
| 74 | + "title": "Continue Others" |
| 75 | + }, |
| 76 | + { |
| 77 | + "command": "java.debug.pauseAll", |
| 78 | + "title": "Pause All" |
| 79 | + }, |
| 80 | + { |
| 81 | + "command": "java.debug.pauseOthers", |
| 82 | + "title": "Pause Others" |
67 | 83 | } |
68 | 84 | ], |
69 | 85 | "menus": { |
|
98 | 114 | "when": "inDebugMode && debugType == java && javaHotReload == 'manual'" |
99 | 115 | } |
100 | 116 | ], |
| 117 | + "debug/callstack/context": [ |
| 118 | + { |
| 119 | + "command": "java.debug.continueAll", |
| 120 | + "when": "inDebugMode && debugType == java && callStackItemType == 'thread'" |
| 121 | + }, |
| 122 | + { |
| 123 | + "command": "java.debug.continueOthers", |
| 124 | + "when": "inDebugMode && debugType == java && callStackItemType == 'thread'" |
| 125 | + }, |
| 126 | + { |
| 127 | + "command": "java.debug.pauseAll", |
| 128 | + "when": "inDebugMode && debugType == java && callStackItemType == 'thread'" |
| 129 | + }, |
| 130 | + { |
| 131 | + "command": "java.debug.pauseOthers", |
| 132 | + "when": "inDebugMode && debugType == java && callStackItemType == 'thread'" |
| 133 | + } |
| 134 | + ], |
101 | 135 | "commandPalette": [ |
102 | 136 | { |
103 | 137 | "command": "java.debug.hotCodeReplace", |
|
110 | 144 | { |
111 | 145 | "command": "java.debug.debugJavaFile", |
112 | 146 | "when": "false" |
| 147 | + }, |
| 148 | + { |
| 149 | + "command": "java.debug.continueAll", |
| 150 | + "when": "false" |
| 151 | + }, |
| 152 | + { |
| 153 | + "command": "java.debug.continueOthers", |
| 154 | + "when": "false" |
| 155 | + }, |
| 156 | + { |
| 157 | + "command": "java.debug.pauseAll", |
| 158 | + "when": "false" |
| 159 | + }, |
| 160 | + { |
| 161 | + "command": "java.debug.pauseOthers", |
| 162 | + "when": "false" |
113 | 163 | } |
114 | 164 | ] |
115 | 165 | }, |
|
0 commit comments