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