作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道我可以使用 vscode.debug.activeDebugSession?.customRequest(command)
向调试适配器发送自定义请求。但是,如果我想监听诸如 Stopped Event 之类的事件怎么办? ?
最佳答案
对于自定义事件,使用这个:
vscode.debug.onDidReceiveDebugSessionCustomEvent(event => {
if(event.event == 'stopped') {
// ...
}
})
对于 vscode 拦截的事件,您可能需要检查 this answer相反:
The solution for this is called a
DebugAdapterTracker
.vscode.debug.registerDebugAdapterTrackerFactory('*', {
createDebugAdapterTracker(session: DebugSession) {
return {
onWillReceiveMessage: m => console.log(`> ${JSON.stringify(m, undefined, 2)}`),
onDidSendMessage: m => console.log(`< ${JSON.stringify(m, undefined, 2)}`)
};
}
});https://code.visualstudio.com/updates/v1_30#_extension-authoring
Look for "Finalized Debug Adapter Tracker API". It was originallycreated for Live Share debugging.
关于visual-studio-code - 如何在 vscode 扩展中监听调试适配器协议(protocol)事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65543150/
我是一名优秀的程序员,十分优秀!