summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/InputPrompt.tsx
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-05-14 16:01:29 -0700
committerGitHub <[email protected]>2025-05-14 16:01:29 -0700
commit416813452eafd4b9497fe7f4b36d5000b51c969d (patch)
treeeda5d0d94fa20dfe822cca492b88d9d5f7e36bf0 /packages/cli/src/ui/components/InputPrompt.tsx
parent89aa1cad41eefc4e1e7e4b3cb9d4a495707dd33e (diff)
Improvements to suggestions & slash commands (#344)
Co-authored-by: N. Taylor Mullen <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/components/InputPrompt.tsx')
-rw-r--r--packages/cli/src/ui/components/InputPrompt.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/InputPrompt.tsx b/packages/cli/src/ui/components/InputPrompt.tsx
index 8ec67ec7..1c3d2a07 100644
--- a/packages/cli/src/ui/components/InputPrompt.tsx
+++ b/packages/cli/src/ui/components/InputPrompt.tsx
@@ -76,6 +76,7 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
const newValue = base + selectedSuggestion.value;
onChangeAndMoveCursor(newValue);
onSubmit(newValue); // Execute the command
+ onChangeAndMoveCursor(''); // Clear query after submit
} else {
// Handle @ command completion
const atIndex = query.lastIndexOf('@');