mirror of
https://git.sr.ht/~sircmpwn/aerc
synced 2025-01-24 06:40:25 +01:00
2a0961701c
Tab completion currently only works on commands. Contextual completion will be added in the future.
17 lines
257 B
Go
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)
|
|
}
|