summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/shared/text-buffer.ts
diff options
context:
space:
mode:
authorLeo <[email protected]>2025-06-08 18:56:58 +0100
committerGitHub <[email protected]>2025-06-08 10:56:58 -0700
commit9efca40dae2e75477af1a20df4e3e65bf8dfe93d (patch)
tree39e10eef42ddfd4b9c73b7c2410dd5bccb5ed900 /packages/cli/src/ui/components/shared/text-buffer.ts
parent584286cfd9b53eee8f1189a3ad98462c77eb8fb9 (diff)
feat: Add flow to allow modifying edits during edit tool call (#808)
Diffstat (limited to 'packages/cli/src/ui/components/shared/text-buffer.ts')
-rw-r--r--packages/cli/src/ui/components/shared/text-buffer.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/shared/text-buffer.ts b/packages/cli/src/ui/components/shared/text-buffer.ts
index 27565324..e5957c7d 100644
--- a/packages/cli/src/ui/components/shared/text-buffer.ts
+++ b/packages/cli/src/ui/components/shared/text-buffer.ts
@@ -1440,7 +1440,7 @@ export interface TextBuffer {
key: Record<string, boolean>,
) => boolean;
/**
- * Opens the current buffer contents in the user’s preferred terminal text
+ * Opens the current buffer contents in the user's preferred terminal text
* editor ($VISUAL or $EDITOR, falling back to "vi"). The method blocks
* until the editor exits, then reloads the file and replaces the in‑memory
* buffer with whatever the user saved.
@@ -1451,7 +1451,7 @@ export interface TextBuffer {
*
* Note: We purposefully rely on the *synchronous* spawn API so that the
* calling process genuinely waits for the editor to close before
- * continuing. This mirrors Git’s behaviour and simplifies downstream
+ * continuing. This mirrors Git's behaviour and simplifies downstream
* control‑flow (callers can simply `await` the Promise).
*/
openInExternalEditor: (opts?: { editor?: string }) => Promise<void>;