feature: 实现点击 VCD 文件时 Surfer 显示波形

- VCDViewerEditorProvider 现在接收并持有 vcdFileServer 实例
   - createFromWebviewPanel 方法传递 vcdFileServer 参数
   - 确保自定义编辑器打开 VCD 文件时能够通过 HTTP 服务器加载波形数据
This commit is contained in:
Roe-xin
2026-01-07 17:46:09 +08:00
parent b1dd2442b8
commit be8365c8cb
2 changed files with 12 additions and 7 deletions

View File

@ -175,7 +175,7 @@ export function activate(context: vscode.ExtensionContext) {
);
// 注册 VCD 自定义编辑器
const vcdEditorProvider = VCDViewerEditorProvider.register(context);
const vcdEditorProvider = VCDViewerEditorProvider.register(context, vcdFileServer);
// 添加到订阅
context.subscriptions.push(