File tree Expand file tree Collapse file tree
packages/opencode/src/cli/cmd/tui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -279,7 +279,6 @@ function App() {
279279 {
280280 title : `Toggle model optimization (${ local . optimize . enabled ? "ON" : "OFF" } )` ,
281281 value : "optimize.toggle" ,
282- keybind : "optimize_toggle" ,
283282 category : "Agent" ,
284283 onSelect : ( ) => {
285284 local . optimize . toggle ( )
Original file line number Diff line number Diff line change @@ -752,12 +752,12 @@ export function Prompt(props: PromptProps) {
752752 < box backgroundColor = { theme . backgroundElement } width = { 1 } justifyContent = "center" alignItems = "center" > </ box >
753753 </ box >
754754 < box flexDirection = "row" justifyContent = "space-between" >
755- < box flexDirection = "row" gap = { 2 } flexShrink = { 0 } wrapMode = "none" >
756- < text fg = { theme . text } >
755+ < box flexDirection = "row" gap = { 2 } flexShrink = { 0 } >
756+ < text fg = { theme . text } flexShrink = { 0 } wrapMode = "none" >
757757 < span style = { { fg : theme . textMuted } } > { local . model . parsed ( ) . provider } </ span > { " " }
758758 < span style = { { bold : true } } > { local . model . parsed ( ) . model } </ span >
759759 </ text >
760- < text fg = { theme . text } >
760+ < text fg = { theme . text } flexShrink = { 0 } wrapMode = "none" >
761761 < span style = { { fg : theme . textMuted } } > OPTIMIZE:</ span > { " " }
762762 < span style = { { bold : true , fg : local . optimize . enabled ? theme . success : theme . textMuted } } >
763763 { local . optimize . enabled ? "ON" : "OFF" }
You can’t perform that action at this time.
0 commit comments