Merge remote-tracking branch 'origin/main' into johnnyeric/kilo-opencode-v1.18.0

This commit is contained in:
Johnny Eric Amancio
2026-08-11 11:47:51 +02:00
168 changed files with 2267 additions and 1505 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/tui",
"version": "7.4.20",
"version": "7.4.21",
"private": true,
"type": "module",
"license": "MIT",
@@ -831,13 +831,14 @@ export function Autocomplete(props: {
moveTo(index)
}}
onMouseUp={() => select()}
gap={1} // kilocode_change - keep descriptions separated from labels in flex layout
>
<text fg={index === store.selected ? selectedForeground(theme) : theme.text} flexShrink={0}>
{option().display}
</text>
<Show when={option().description}>
<text fg={index === store.selected ? selectedForeground(theme) : theme.textMuted} wrapMode="none">
{" " + option().description?.trimStart()}
{option().description?.trimStart()}{/* kilocode_change */}
</text>
</Show>
</box>