2019-03-21 16:32:22 -04:00
|
|
|
package terminal
|
|
|
|
|
|
|
|
import (
|
2019-05-17 20:57:10 -04:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
2019-03-21 16:32:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
TerminalCommands *commands.Commands
|
|
|
|
)
|
|
|
|
|
2019-06-27 10:33:11 -07:00
|
|
|
func register(cmd commands.Command) {
|
2019-03-21 16:32:22 -04:00
|
|
|
if TerminalCommands == nil {
|
|
|
|
TerminalCommands = commands.NewCommands()
|
|
|
|
}
|
2019-06-27 10:33:11 -07:00
|
|
|
TerminalCommands.Register(cmd)
|
2019-03-21 16:32:22 -04:00
|
|
|
}
|