mirror of
https://git.sr.ht/~sircmpwn/aerc
synced 2024-11-23 08:32:12 +01:00
2a0961701c
Tab completion currently only works on commands. Contextual completion will be added in the future.
13 lines
178 B
Go
13 lines
178 B
Go
package commands
|
|
|
|
var (
|
|
GlobalCommands *Commands
|
|
)
|
|
|
|
func register(cmd Command) {
|
|
if GlobalCommands == nil {
|
|
GlobalCommands = NewCommands()
|
|
}
|
|
GlobalCommands.Register(cmd)
|
|
}
|