aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/aerc.go
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/aerc.go')
-rw-r--r--widgets/aerc.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go
index 75b7d5ae..163ba9e0 100644
--- a/widgets/aerc.go
+++ b/widgets/aerc.go
@@ -270,6 +270,8 @@ func (aerc *Aerc) simulate(strokes []config.KeyStroke) {
exline.TabComplete(func(cmd string) ([]string, string) {
return aerc.complete(cmd), ""
})
+ // send tab to text input to trigger completion
+ exline.Event(tcell.NewEventKey(tcell.KeyTab, 0, tcell.ModNone))
}
}