about summary refs log tree commit diff stats
path: root/html/092stack.subx.html
Commit message (Expand)AuthorAgeFilesLines
* 5889Kartik Agaram2020-01-141-0/+477
9 14:24:19 -0400 Implement basic tab completion support' href='/akspecs/aerc/commit/commands/msg/msg.go?h=0.5.1&id=2a0961701c4cabecc53d134ed1782e5612e64580'>2a09617 ^
753adb9 ^


2a09617 ^
753adb9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16









                                           
                                     


                                                        
                                     
 
package msg

import (
	"git.sr.ht/~sircmpwn/aerc/commands"
)

var (
	MessageCommands *commands.Commands
)

func register(cmd commands.Command) {
	if MessageCommands == nil {
		MessageCommands = commands.NewCommands()
	}
	MessageCommands.Register(cmd)
}