diff options
| author | Jacob Richman <[email protected]> | 2025-05-01 18:02:04 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-01 18:02:04 -0700 |
| commit | 53ac7952c7ac11770037fecccda5f0f2fffa3e0b (patch) | |
| tree | 92309fd1cca72e8f4b1e645e0810b8fff8affdb6 /packages/cli/src/ui/components/InputPrompt.tsx | |
| parent | ca53565240174eebbe0c03457a8444cae81e2747 (diff) | |
Support escaping spaces in file paths. (#241)
Diffstat (limited to 'packages/cli/src/ui/components/InputPrompt.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/InputPrompt.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/InputPrompt.tsx b/packages/cli/src/ui/components/InputPrompt.tsx index 67727fd2..fbf84766 100644 --- a/packages/cli/src/ui/components/InputPrompt.tsx +++ b/packages/cli/src/ui/components/InputPrompt.tsx @@ -8,6 +8,7 @@ import React, { useCallback } from 'react'; import { Text, Box, useInput, useFocus, Key } from 'ink'; import TextInput from 'ink-text-input'; import { Colors } from '../colors.js'; +import { Suggestion } from './SuggestionsDisplay.js'; interface InputPromptProps { query: string; @@ -16,7 +17,7 @@ interface InputPromptProps { setInputKey: React.Dispatch<React.SetStateAction<number>>; onSubmit: (value: string) => void; showSuggestions: boolean; - suggestions: string[]; + suggestions: Suggestion[]; // Changed to Suggestion[] activeSuggestionIndex: number; navigateUp: () => void; navigateDown: () => void; @@ -63,7 +64,7 @@ export const InputPrompt: React.FC<InputPromptProps> = ({ base = query.substring(0, atIndex + 1 + lastSlashIndexInPath + 1); } - const newValue = base + selectedSuggestion; + const newValue = base + selectedSuggestion.value; setQuery(newValue); resetCompletion(); // Hide suggestions after selection setInputKey((k) => k + 1); // Increment key to force re-render and cursor reset |
