diff --git a/main.go b/main.go index 710d256..ff6696e 100644 --- a/main.go +++ b/main.go @@ -1472,6 +1472,11 @@ func (o *Input) Focus() (text string, ok bool) { o.CursorIndex-- o.Text = cut(o.Text, o.CursorIndex) } + case tcell.KeyBackspace2: + if o.CursorIndex > 0 { + o.CursorIndex-- + o.Text = cut(o.Text, o.CursorIndex) + } case tcell.KeyLeft: if o.CursorIndex > 0 { o.CursorIndex--