summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/app.go b/app.go
index e1d8d59..3d6d3a2 100644
--- a/app.go
+++ b/app.go
@@ -401,6 +401,8 @@ func (app *App) handleKeyEvent(ev *tcell.EventKey) {
if ok {
app.typing()
}
+ case tcell.KeyCtrlR:
+ app.win.InputBackSearch()
case tcell.KeyTab:
ok := app.win.InputAutoComplete(1)
if ok {