summary refs log tree commit diff stats
path: root/commands/account
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/mkdir.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/commands/account/mkdir.go b/commands/account/mkdir.go
new file mode 100644
index 0000000..d245821
--- /dev/null
+++ b/commands/account/mkdir.go
@@ -0,0 +1,39 @@
+package account
+
+import (
+	"errors"
+	"time"
+
+	"github.com/gdamore/tcell"
+
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
+)
+
+func init() {
+	register("mkdir", Mkdir)
+}
+
+func Mkdir(aerc *widgets.Aerc, args []string) error {
+	if len(args) != 2 {
+		return errors.New("Usage: :mkdir <name>")
+	}
+	acct := aerc.SelectedAccount()
+	if acct == nil {
+		return errors.New("No account selected")
+	}
+	name := args[1]
+	acct.Worker().PostAction(&types.CreateDirectory{
+		Directory: name,
+	}, func(msg types.WorkerMessage) {
+		switch msg := msg.(type) {
+		case *types.Done:
+			aerc.PushStatus("Directory created.", 10*time.Second)
+			acct.Directories().Select(name)
+		case *types.Error:
+			aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
+				Color(tcell.ColorDefault, tcell.ColorRed)
+		}
+	})
+	return nil
+}
ame the previous revision' href='/akspecs/aerc/blame/commands/account/move.go?id=07138146a01d802e4d1b5a7d0ccf4601d89eeef8'>^
2a09617 ^


6838c23 ^
2a09617 ^


6838c23 ^
f9d26ee ^
2e5ae19 ^

6838c23 ^
c552231 ^
acfe7d7 ^

2e5ae19 ^
c552231 ^
acfe7d7 ^











753adb9 ^

2e5ae19 ^


8bb115d ^



217e85a ^



753adb9 ^



32f970e ^

c552231 ^
acfe7d7 ^

2e5ae19 ^

715c9a4 ^
2e5ae19 ^






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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78