diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx index 7e592f7c6..a79232486 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx @@ -4,7 +4,6 @@ import { TextareaRenderable, MouseEvent, KeyEvent, - SyntaxStyle, PasteEvent, t, dim, @@ -33,6 +32,7 @@ export type PromptProps = { onSubmit?: () => void ref?: (ref: PromptRef) => void hint?: JSX.Element + showPlaceholder?: boolean } export type PromptRef = { @@ -382,7 +382,11 @@ export function Prompt(props: PromptProps) {