about summary refs log tree commit diff stats
path: root/src/utils
Commit message (Expand)AuthorAgeFilesLines
...
* Fix and implement cursor movement commandsbptato2021-12-201-12/+3
* Fix cursorPrevWord, cursorNextWordbptato2021-12-191-1/+5
* Fix html parser bugsbptato2021-12-191-0/+3
* More configuration optionsbptato2021-12-191-62/+69
* More code formatting consistencybptato2021-12-171-3/+2
* Some parser fixesbptato2021-12-151-10/+13
* Add roman list style typebptato2021-12-151-17/+32
* Add lists, function selector fixesbptato2021-12-141-1/+102
* Support more colors, config.nim refactoringbptato2021-12-101-4/+2
* Change configuration format to tomlbptato2021-12-051-10/+78
* Support CSS word breakbptato2021-11-231-1/+1
* Fix delete characterbptato2021-11-201-2/+20
* User stylesheets and applyStylesheets optimizationsbptato2021-11-191-0/+26
* Store pixels per character/rowbptato2021-11-141-17/+3
* Parse ansi escape codes when displaying plain textbptato2021-11-131-4/+4
* Refactor output formatting code, drop non-ansi supportbptato2021-11-131-0/+19
* Colors, italic, bold, read from pipebptato2021-11-121-19/+17
* Layout engine improvements, use author style sheetbptato2021-11-101-17/+19
* Get rid of some old code, work on css property handlingbptato2021-08-111-11/+20
* Implement CSS display none in box renderer etc.bptato2021-08-081-0/+11
* Reorganize importsbptato2021-08-071-1/+1
* Refactoring in buffer.nimbptato2021-08-061-2/+0
* Refactor display.nim and twtio.nimbptato2021-08-061-0/+13
* Implement new buffer model which supports X coordsbptato2021-08-054-19/+14
* Remove static radix tree and small/full buildsbptato2021-08-052-151/+5
* more stuffbptato2021-08-051-4/+101
* CSS selectors and re-organizationbptato2021-07-303-0/+775
'/acidbong/suckless/dwm/commit/wm.c?id=da2bbd371c522d63d737d43a127601a3fdbcb9d8'>da2bbd3 ^
9cd686c ^
dba2306 ^
1076f2b
adaa28a ^

1076f2b
adaa28a ^







1076f2b
1076f2b
dba2306 ^
1076f2b












0053620 ^
1076f2b





3399650 ^



















adaa28a ^












3399650 ^
dba2306 ^
3399650 ^
b1701ad ^
3399650 ^



b1701ad ^
3399650 ^











c0705ee ^
3399650 ^












adaa28a ^

1076f2b
adaa28a ^
1076f2b

dba2306 ^







4641aa2 ^
dba2306 ^
















4641aa2 ^

1076f2b


0e5c819 ^

1076f2b

5b44976 ^
1076f2b
439e15d ^
1076f2b
1076f2b






adaa28a ^
1076f2b





dba2306 ^
1076f2b




dba2306 ^

1076f2b

39677ec ^
1076f2b
dba2306 ^

1076f2b
1076f2b
dba2306 ^
1076f2b

3399650 ^

1076f2b

1076f2b


1076f2b




29355bd ^
1076f2b
39677ec ^
c0705ee ^



39677ec ^
9cd686c ^



83d2390 ^
9cd686c ^

6458d72 ^
9cd686c ^









eb756ee ^

c0705ee ^
eb756ee ^
9cd686c ^
83d2390 ^
16c67f3 ^

439e15d ^
9cd686c ^
439e15d ^

9cd686c ^
dba2306 ^
1076f2b
0e5c819 ^
eb756ee ^
e3fd306 ^
0e5c819 ^
5b44976 ^

0e5c819 ^





dba2306 ^
0e5c819 ^
6475be9 ^





0e5c819 ^
5b44976 ^
0e5c819 ^
eb756ee ^

5b44976 ^


eb756ee ^



0e5c819 ^
eb756ee ^
0e5c819 ^
c0705ee ^
0e5c819 ^

439e15d ^

1076f2b




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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314