diff options
Diffstat (limited to 'extension/src/diffs.ts')
-rw-r--r-- | extension/src/diffs.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/extension/src/diffs.ts b/extension/src/diffs.ts index 426415fc..bdf9903b 100644 --- a/extension/src/diffs.ts +++ b/extension/src/diffs.ts @@ -62,9 +62,7 @@ class DiffManager { } private escapeFilepath(filepath: string): string { - return filepath - .replace(/\//g, "$forwardslash$") - .replace(/\\/g, "$backslash$"); + return filepath.replace(/\//g, "$f$").replace(/\\/g, "$b$"); } private remoteTmpDir: string = "/tmp/continue"; |