summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorKalyan Sriram <kalyan@coderkalyan.com>2021-12-15 02:30:00 +0000
committerdelthas <delthas@dille.cc>2022-02-10 12:21:19 +0100
commit7b559b37b187cb8348fac4c7259ec76a848204f2 (patch)
tree07487bb35954c9eb789db636f0d2a6ff19533d56 /app.go
parentui: buffers: sort buffer list (diff)
ui: add commands completion
Diffstat (limited to 'app.go')
-rw-r--r--app.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.go b/app.go
index 85836e8..5d1c6c3 100644
--- a/app.go
+++ b/app.go
@@ -951,6 +951,7 @@ func (app *App) completions(cursorIdx int, text []rune) []ui.Completion {
cs = app.completionsChannelMembers(cs, cursorIdx, text)
}
cs = app.completionsMsg(cs, cursorIdx, text)
+ cs = app.completionsCommands(cs, cursorIdx, text)
if cs != nil {
cs = append(cs, ui.Completion{