1774767884

This commit is contained in:
Docker7530
2026-03-29 15:04:47 +08:00
parent 798019bbbf
commit 6b9ac80177
16 changed files with 104 additions and 401 deletions
@@ -1,9 +0,0 @@
module.exports = async function openTerminal(params) {
const { app } = params;
const vaultPath = app.vault.adapter.basePath;
const command = `wt -d "${vaultPath}"`;
const { exec } = require("node:child_process");
exec(command, (error) => {
if (error) console.error("执行失败:", error);
});
};