mirror of
https://github.com/sst/opencode.git
synced 2025-07-08 00:25:00 +00:00
fix input bar not rendering capital letters
This commit is contained in:
parent
997cb2d945
commit
85214d7c59
1 changed files with 1 additions and 1 deletions
|
@ -1512,7 +1512,7 @@ func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) {
|
||||||
m.transposeLeft()
|
m.transposeLeft()
|
||||||
|
|
||||||
default:
|
default:
|
||||||
m.insertRunesFromUserInput([]rune{msg.Code})
|
m.insertRunesFromUserInput([]rune(msg.Text))
|
||||||
}
|
}
|
||||||
|
|
||||||
case pasteMsg:
|
case pasteMsg:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue