diff options
Diffstat (limited to 'app.go')
| -rw-r--r-- | app.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -219,6 +219,10 @@ func (app *App) handleUIEvent(ev tcell.Event) { } else { app.win.InputLeft() } + case tcell.KeyHome: + app.win.InputHome() + case tcell.KeyEnd: + app.win.InputEnd() case tcell.KeyBackspace2: ok := app.win.InputBackspace() if ok && app.win.InputLen() == 0 { |
