summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* options: activate preview of files by defaulthut2010-01-241-1/+1
* actions: add narg to move_right, so Nl starts with mode Nhut2010-01-242-2/+4
* keys: let l and Enter do the samehut2010-01-242-5/+2
* README: corrected bad instructionshut2010-01-241-2/+2
* apps: fixed error when EDITOR is undefinedhut2010-01-241-8/+10
* bugfixhut2010-01-242-2/+2
* implemented the use of Runner in the rest of the codehut2010-01-245-197/+20
* runner: bugfixes + documentationhut2010-01-241-4/+20
* added a new runner classhut2010-01-241-0/+175
* apps: added handler for common webbrowsershut2010-01-231-1/+11
* actions: allow using n and N from the starthut2010-01-231-1/+1
* todo: added #52-#54hut2010-01-231-0/+3
* console: better tab completion for OpenConsolehut2010-01-232-8/+11
* fixed handling of spaces in filenames when using "open with: self"hut2010-01-231-1/+6
* fm: sort executableshut2010-01-231-1/+1
* console: tab completion for OpenConsolehut2010-01-231-4/+8
* apps: bugfixeshut2010-01-231-2/+2
* apps: changes in orderhut2010-01-231-1/+1
* clean uphut2010-01-231-1/+0
* action: improved debugginghut2010-01-231-1/+1
* fm: use "property" as a decorator for "executables"hut2010-01-231-3/+2
* apps: more intelligent application choosinghut2010-01-233-6/+73
* ext: added get_executables functionhut2010-01-231-0/+47
* added unique function, moved flatten to ext/iter_toolshut2010-01-232-1/+15
* help: formattinghut2010-01-222-3/+14
* help: added documentation for running fileshut2010-01-223-2/+110
* help: fixed tagging shortcut descriptionhut2010-01-211-2/+2
* main: ignore errors of setlocalehut2010-01-211-1/+4
* main: added debug modehut2010-01-213-0/+11
* actions: fixed bug in delete()hut2010-01-211-1/+1
* keys: swapped t and b keyshut2010-01-211-8/+8
* updated dochut2010-01-211-4/+20
* directory: get_selection() returns *ordered* marked itemshut2010-01-212-1/+2
* browserview: catch errorhut2010-01-211-2/+8
* cleanuphut2010-01-211-1/+0
* directory: represent selection with list instead of sethut2010-01-211-13/+15
* console: fixed minor bughut2010-01-212-9/+14
* color: added a remove_attr functionhut2010-01-211-0/+6
* colorschemes/default: remove unnecessary lineshut2010-01-211-14/+0
* commands: use deque in find commandhut2010-01-211-5/+8
* ext/flatten: flatten deques too.hut2010-01-211-2/+4
* curses_shortcuts: use flatten instead of _combinehut2010-01-201-15/+5
* added flatten functionhut2010-01-201-0/+27
* ranger/init: fixed usage stringhut2010-01-201-1/+1
* apps: catch a TypeErrorhut2010-01-201-2/+3
* keyapi: fixed Wrapper so that it works with pydochut2010-01-201-0/+2
* apps: added a few application definitionshut2010-01-201-2/+56
* console: slightly improved tab completion for CommandConsolehut2010-01-201-1/+4
* clean uphut2010-01-201-2/+5
* readme: improvedhut2010-01-201-6/+13
/317abort.subx?h=main&id=eb26052b91ae61b6b30d7452f635933bd088d948'>eb26052b ^
858fe603 ^










858fe603 ^
2d4fb39d ^
858fe603 ^


858fe603 ^











































2d4fb39d ^





















2d4fb39d ^















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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332