summary refs log tree commit diff stats
path: root/commands/account/mkdir.go
Commit message (Collapse)AuthorAgeFilesLines
* gofmt fixesDrew DeVault2020-04-241-1/+1
|
* Use aerc.PushError where appropriateBen Fiedler2020-04-231-4/+1
| | | | Forgot an unused import, to save you the hassle here is v2.
* Make commands join args with spacesJeffas2019-09-201-2/+3
| | | | | | | | | | | | | | | This patch ensures the following commands join their arguments with spaces to make it easier to interact with: - cf - mkdir - cd - attach - detach - ct - copy - move - save
* all: purge redundant underscoresWagner Riffel2019-09-041-3/+3
| | | | Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
* Implement basic tab completion supportGregory Mullen2019-06-291-2/+12
| | | | | Tab completion currently only works on commands. Contextual completion will be added in the future.
* Implement :mkdir commandDrew DeVault2019-06-091-0/+39
f30ee796c'>^
6c98519a ^

083acade ^
f550ae3f ^
083acade ^

dd7f4e5c ^
2e386864 ^

8e0d73b5 ^
dd7f4e5c ^
6dad7b92 ^
b1b7864c ^
6dad7b92 ^
6e152710 ^


0abb72df ^


a0fdb913 ^


a3528772 ^
b39fcc5f ^
0128bee7 ^
eafe24e1 ^
0128bee7 ^
3a9e3382 ^
b39fcc5f ^
0128bee7 ^
f5e9c01e ^


9e09af36 ^

0a053bef ^
9e09af36 ^
f3e1e9e4 ^


bf391538 ^


e01ea652 ^


61006fdd ^
f4ad6457 ^

61006fdd ^
e690d4e9 ^


6a40e8e0 ^

083acade ^
f45f3c73 ^



465dd890 ^


083acade ^

0a8001b2 ^
083acade ^

2bc7178b ^
083acade ^



1c683951 ^



0128bee7 ^
083acade ^

0128bee7 ^
b39fcc5f ^
0128bee7 ^
0128bee7 ^
b44906cd ^

0128bee7 ^

876e288a ^


0128bee7 ^
1c456c93 ^



34c131ef ^


















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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151