aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/i_events.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/i_events.go b/src/i_events.go
index 3e1b810..0c9c968 100644
--- a/src/i_events.go
+++ b/src/i_events.go
@@ -559,7 +559,8 @@ func i_events(data *HardData) {
data.insert = nil
ui.buff = ""
} else if event.Rune() == 'j' ||
- event.Key() == tcell.KeyDown {
+ event.Key() == tcell.KeyDown ||
+ event.Key() == tcell.KeyTab {
if data.ui.insert_sel < data.ui.insert_sel_max {
data.ui.insert_sel += 1
}