We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125af82 commit b6c1df4Copy full SHA for b6c1df4
packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
@@ -562,10 +562,6 @@ export function Prompt(props: PromptProps) {
562
}
563
})
564
565
- createEffect(() => {
566
- renderer.setCursorColor(highlight())
567
- })
568
-
569
return (
570
<>
571
<Autocomplete
@@ -777,7 +773,7 @@ export function Prompt(props: PromptProps) {
777
773
ref={(r: TextareaRenderable) => (input = r)}
778
774
onMouseDown={(r: MouseEvent) => r.target?.focus()}
779
775
focusedBackgroundColor={theme.backgroundElement}
780
- cursorColor={theme.primary}
776
+ cursorColor={highlight()}
781
syntaxStyle={syntax()}
782
/>
783
<box flexDirection="row" flexShrink={0} paddingTop={1} gap={1}>
0 commit comments