summary refs log tree commit diff stats
path: root/config
Commit message (Expand)AuthorAgeFilesLines
* Change ex command to C-x when using terminalDrew DeVault2019-05-241-2/+2
* Bind :compose to C in binds.confFrancis Dinh2019-05-231-0/+2
* Install default configs to XDG config if not foundDrew DeVault2019-05-221-4/+34
* Show account wizard if no accounts configuredDrew DeVault2019-05-221-6/+3
* New account wizard, part oneDrew DeVault2019-05-211-0/+9
* Use kebab-case for cred-cmdsDrew DeVault2019-05-211-2/+2
* Implement :next-part, :prev-partDrew DeVault2019-05-201-0/+2
* Rename :delete-message et al to :delete et alDrew DeVault2019-05-191-14/+14
* Implement loading passwords from external commandsGalen Abell2019-05-181-8/+61
* Install filters to /usr/share/aerc/filtersDrew DeVault2019-05-171-3/+3
* Remove unimplemented color configurationDrew DeVault2019-05-171-42/+0
* Implement ui.empty-message config optionDrew DeVault2019-05-172-17/+0
* Abort if accounts.conf is world readableReto Brunner2019-05-161-1/+26
* Revert "Abort if accounts.conf is world readable"Drew DeVault2019-05-161-25/+1
* Revert "s/aerc.conf/address.conf/ in permission check"Drew DeVault2019-05-161-1/+1
* s/aerc.conf/address.conf/ in permission checkCole Helbling2019-05-161-1/+1
* Abort if accounts.conf is world readableReto Brunner2019-05-161-1/+25
* Change default bindings for repliesDrew DeVault2019-05-161-4/+4
* Change default reply keybindingsDrew DeVault2019-05-161-8/+8
* Copy sent emails to the Sent folderDrew DeVault2019-05-152-0/+4
* Fix default bindings for quit and editDrew DeVault2019-05-141-1/+4
* Move ! bind to [messages]Drew DeVault2019-05-141-1/+1
* Add (non-functional) reply commands to bindingsDrew DeVault2019-05-141-2/+9
* Add ! to default keybindingsDrew DeVault2019-05-141-0/+1
* Add $EDITOR, internal config for composeDrew DeVault2019-05-142-0/+17
* Add distinct keybindings for each compose viewDrew DeVault2019-05-143-11/+31
* Populate "From" header from config for new emailsDrew DeVault2019-05-132-0/+5
* Add outgoing account configurationDrew DeVault2019-05-122-5/+10
* Add initial compose widgetDrew DeVault2019-05-121-0/+8
* Use better regex for identifying patchesDrew DeVault2019-03-311-1/+1
* Remove show-headers config optionDrew DeVault2019-03-311-6/+0
* Remove unused config optionsDrew DeVault2019-03-311-6/+0
* Remove key bindings from aerc.confDrew DeVault2019-03-311-46/+0
* Add script for sandboxing w3mDrew DeVault2019-03-311-1/+1
* Use shell to execute filters, fix non-determinismDrew DeVault2019-03-311-1/+2
* Improve plaintext.pyDrew DeVault2019-03-311-1/+0
* Implement header-regex-match filtersDrew DeVault2019-03-312-7/+21
* Add basic filter implementationDrew DeVault2019-03-312-25/+67
* Add message view commands, :closeDrew DeVault2019-03-301-1/+1
* Update default config/binds.confDrew DeVault2019-03-301-2/+17
* Handle no configured accounts gracefullyJulian P Samaroo2019-03-301-0/+4
* Rig up terminal keybinding groupDrew DeVault2019-03-211-0/+1
* Add context-specific keybindingsDrew DeVault2019-03-213-12/+114
* Add additional context to key binding setDrew DeVault2019-03-211-4/+14
* Handle terminal title, login shellDrew DeVault2019-03-171-1/+1
* Implement :next-tab, :prev-tabDrew DeVault2019-03-171-6/+6
* Fix special key bindings (e.g. <C-d>)Drew DeVault2019-03-151-1/+6
* Implement default in accounts.confDrew DeVault2019-03-151-4/+7
* Remove extra debug log statementDrew DeVault2019-03-151-1/+0
* Implement sidebar-width config optionDrew DeVault2019-03-151-7/+10
akspecs/aerc/blame/widgets/directories.go?h=0.1.4&id=60284850f22624a03996e882fcfd6aeb2af88b93'>^
a782b70 ^





257affc ^




cf66462 ^
257affc ^





cf66462 ^

84965d6 ^
cf66462 ^


257affc ^

2349b7d ^
b60999c ^




































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
152
153
154
155