diff options
author | Hubert Hirtz <hubert@hirtz.pm> | 2020-11-19 16:08:38 +0100 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtz.pm> | 2020-11-19 16:08:38 +0100 |
commit | 83e0e82ad08adeb910c13e4a53336cbf422356c9 (patch) | |
tree | 662ab140d62759c03dfef7a9be5eb6234d0c987e /app.go | |
parent | Move editor view when completing text (diff) |
Add completion for /msg
Diffstat (limited to 'app.go')
-rw-r--r-- | app.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -460,6 +460,7 @@ func (app *App) completions(cursorIdx int, text []rune) []ui.Completion { cs = app.completionsChannelTopic(cs, cursorIdx, text) cs = app.completionsChannelMembers(cs, cursorIdx, text) } + cs = app.completionsMsg(cs, cursorIdx, text) if cs != nil { cs = append(cs, ui.Completion{ |