summary refs log tree commit diff stats
path: root/tests/js/treprinifexpr.nim
Commit message (Collapse)AuthorAgeFilesLines
* fix #15651 (#15800)flywind2020-10-311-0/+18
* fix * minor
ommitter Drew DeVault <sir@cmpwn.com> 2019-03-21 16:30:23 -0400 Add context-specific commands' href='/akspecs/aerc/commit/commands/global.go?h=0.5.1&id=8126d82956636a2525263e2d0d985d721fdb8074'>8126d82 ^
2a09617 ^
8126d82 ^
1
2
3
4
5
6
7
8
9
10
11
12





                                
                            


                                              
                                    
 
package commands

var (
	GlobalCommands *Commands
)

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