summary refs log tree commit diff stats
path: root/commands/account/account.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/account.go')
-rw-r--r--commands/account/account.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/account/account.go b/commands/account/account.go
new file mode 100644
index 0000000..918d962
--- /dev/null
+++ b/commands/account/account.go
@@ -0,0 +1,16 @@
+package account
+
+import (
+	"git.sr.ht/~sircmpwn/aerc2/commands"
+)
+
+var (
+	AccountCommands *commands.Commands
+)
+
+func register(name string, cmd commands.AercCommand) {
+	if AccountCommands == nil {
+		AccountCommands = commands.NewCommands()
+	}
+	AccountCommands.Register(name, cmd)
+}
00 committer Kartik K. Agaram <vc@akkartik.com> 2015-03-29 23:20:02 -0700 994 - spaces now check bounds' href='/akkartik/mu/commit/cpp/028space_surround?h=main&id=2f5f7919fd29ff05a8f182d3cb1aa9d168b58b66'>2f5f7919 ^
8f1db754 ^
2f5f7919 ^
8f1db754 ^
2f5f7919 ^
8f1db754 ^





6673e1fc ^

82ac0b7e ^
8f1db754 ^

6673e1fc ^
82ac0b7e ^





6673e1fc ^
82ac0b7e ^
8f1db754 ^

6673e1fc ^
a66c9ae6 ^
8f1db754 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50