mirror of
https://git.sr.ht/~sircmpwn/aerc
synced 2025-04-05 14:59:05 +02:00
Tab completion currently only works on commands. Contextual completion will be added in the future.
17 lines
273 B
Go
17 lines
273 B
Go
package msgview
|
|
|
|
import (
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
|
)
|
|
|
|
var (
|
|
MessageViewCommands *commands.Commands
|
|
)
|
|
|
|
func register(cmd commands.Command) {
|
|
if MessageViewCommands == nil {
|
|
MessageViewCommands = commands.NewCommands()
|
|
}
|
|
MessageViewCommands.Register(cmd)
|
|
}
|