Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plugins/claude-code/scripts/lib/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ function spawnDetached(binary, args, opts = {}) {
cwd,
env: env || process.env,
detached: true,
windowsHide: true,
stdio: "ignore",
});
child.unref();
Expand Down
1 change: 1 addition & 0 deletions plugins/claude-code/scripts/on-post-tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ function pickPath(obj) {
const worker = path.join(__dirname, "resolver-debounce.js");
const child = spawn(process.execPath, [worker, cwd], {
detached: true,
windowsHide: true,
stdio: "ignore",
env: process.env,
});
Expand Down