blob: f0e42ad171b930af3248f53d1ece824db6419b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package msgview
import (
"git.sr.ht/~sircmpwn/aerc/commands"
)
var (
MessageViewCommands *commands.Commands
)
func register(name string, cmd commands.AercCommand) {
if MessageViewCommands == nil {
MessageViewCommands = commands.NewCommands()
}
MessageViewCommands.Register(name, cmd)
}
|