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