mirror of
https://github.com/Maks1mS/bubbles.git
synced 2024-12-25 07:04:37 +03:00
Add ^U, ^B and ^F keybindings
This commit is contained in:
parent
127afac006
commit
23f5f33283
@ -43,11 +43,15 @@ func Update(msg tea.Msg, m Model) (Model, tea.Cmd) {
|
|||||||
m.pos--
|
m.pos--
|
||||||
}
|
}
|
||||||
return m, nil
|
return m, nil
|
||||||
|
case tea.KeyCtrlF: // ^F, forward one character
|
||||||
|
fallthrough
|
||||||
case tea.KeyLeft:
|
case tea.KeyLeft:
|
||||||
if m.pos > 0 {
|
if m.pos > 0 {
|
||||||
m.pos--
|
m.pos--
|
||||||
}
|
}
|
||||||
return m, nil
|
return m, nil
|
||||||
|
case tea.KeyCtrlB: // ^B, back one charcter
|
||||||
|
fallthrough
|
||||||
case tea.KeyRight:
|
case tea.KeyRight:
|
||||||
if m.pos < len(m.Value) {
|
if m.pos < len(m.Value) {
|
||||||
m.pos++
|
m.pos++
|
||||||
@ -68,6 +72,10 @@ func Update(msg tea.Msg, m Model) (Model, tea.Cmd) {
|
|||||||
m.Value = m.Value[:m.pos]
|
m.Value = m.Value[:m.pos]
|
||||||
m.pos = len(m.Value)
|
m.pos = len(m.Value)
|
||||||
return m, nil
|
return m, nil
|
||||||
|
case tea.KeyCtrlU: // ^U, kill text before cursor
|
||||||
|
m.Value = m.Value[m.pos:]
|
||||||
|
m.pos = 0
|
||||||
|
return m, nil
|
||||||
case tea.KeyRune:
|
case tea.KeyRune:
|
||||||
m.Value = m.Value[:m.pos] + msg.String() + m.Value[m.pos:]
|
m.Value = m.Value[:m.pos] + msg.String() + m.Value[m.pos:]
|
||||||
m.pos++
|
m.pos++
|
||||||
|
Loading…
Reference in New Issue
Block a user