feat:实现文档集同步的功能

This commit is contained in:
Roe-xin
2026-03-19 10:36:13 +08:00
parent d2cd7b0bc8
commit 4ba096d898
4 changed files with 71 additions and 14 deletions

View File

@ -552,5 +552,13 @@ export async function handleWebviewMessage(
}
}
break;
case "loadDocumentSets":
const { getDocumentSets } = await import("./contextHelper");
panel.webview.postMessage({
command: "documentSetSaved",
documentSets: getDocumentSets(),
});
break;
}
}