aboutsummaryrefslogtreecommitdiff
path: root/commands/terminal/terminal.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/terminal/terminal.go')
-rw-r--r--commands/terminal/terminal.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/terminal/terminal.go b/commands/terminal/terminal.go
new file mode 100644
index 0000000..f438582
--- /dev/null
+++ b/commands/terminal/terminal.go
@@ -0,0 +1,16 @@
+package terminal
+
+import (
+ "git.sr.ht/~sircmpwn/aerc2/commands"
+)
+
+var (
+ TerminalCommands *commands.Commands
+)
+
+func register(name string, cmd commands.AercCommand) {
+ if TerminalCommands == nil {
+ TerminalCommands = commands.NewCommands()
+ }
+ TerminalCommands.Register(name, cmd)
+}