我想在调试器适配器上捕获断点事件,以便创建响应操作。
可以做到吗?
我想在调试器适配器上捕获断点事件,以便创建响应操作。
可以做到吗?
基于VS Code API,事件onDidChangeBreakpoints
允许捕获断点的状态
示例:
const vscode = require('vscode');
context.subscriptions.push(vscode.debug.onDidChangeBreakpoints(
session => {
vscode.debug.registerDebugAdapterDescriptorFactory
console.log("Breakpoint changed");
}
))
session
包含added
,changed
和removed
属性。