1
0
mirror of https://git.sr.ht/~sircmpwn/aerc synced 2024-09-20 19:05:09 +02:00
aerc/commands/account/account.go
Gregory Mullen 2a0961701c Implement basic tab completion support
Tab completion currently only works on commands. Contextual completion
will be added in the future.
2019-06-29 14:24:19 -04:00

17 lines
257 B
Go

package account
import (
"git.sr.ht/~sircmpwn/aerc/commands"
)
var (
AccountCommands *commands.Commands
)
func register(cmd commands.Command) {
if AccountCommands == nil {
AccountCommands = commands.NewCommands()
}
AccountCommands.Register(cmd)
}