2a0961701c
Tab completion currently only works on commands. Contextual completion will be added in the future.
16 lines
262 B
Go
16 lines
262 B
Go
package terminal
|
|
|
|
import (
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
|
)
|
|
|
|
var (
|
|
TerminalCommands *commands.Commands
|
|
)
|
|
|
|
func register(cmd commands.Command) {
|
|
if TerminalCommands == nil {
|
|
TerminalCommands = commands.NewCommands()
|
|
}
|
|
TerminalCommands.Register(cmd)
|
|
}
|