From 97d0887e56edc007cabc4f5c0d8a28ff020866ff Mon Sep 17 00:00:00 2001 From: Thomas Kelly Date: Thu, 19 Mar 2026 12:56:01 -0500 Subject: [PATCH] Handling underscores in workspace paths --- src/providers/ClaudeCodeWatcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/ClaudeCodeWatcher.ts b/src/providers/ClaudeCodeWatcher.ts index 78900b8..e1d20dd 100644 --- a/src/providers/ClaudeCodeWatcher.ts +++ b/src/providers/ClaudeCodeWatcher.ts @@ -343,7 +343,7 @@ export class ClaudeCodeWatcher implements IConversationProvider { * C:\Users\foo\project → C-Users-foo-project (BUG20: Windows backslash + colon) */ private encodeWorkspacePath(workspacePath: string): string { - return workspacePath.replace(/[/\\.:]/g, '-'); + return workspacePath.replace(/[/\\.:_]/g, '-'); } // ── Project discovery & progressive scanning (standalone) ─────────