summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* 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
* fixed unit testshut2010-01-205-63/+83
* command: fixed abbreviation handlinghut2010-01-191-1/+2
* browsercolumn: bz->bz2hut2010-01-191-1/+1
* browsercolumn: performance improvementhut2010-01-191-2/+2
* TODO: added #49 and #50hut2010-01-191-0/+2
* browsercolumn: preview more filetypeshut2010-01-192-2/+25
* commands: forbid to abbreviate :delete with :d (to avoid mistakes)hut2010-01-191-1/+6
* implemented #48: abbreviate commandshut2010-01-193-4/+20
* done #32hut2010-01-194-1/+18
* TODO: added stuffhut2010-01-191-0/+2
* settings: allow to toggle flushinputhut2010-01-195-4/+7
* human_readable: slight improvement of output formathut2010-01-191-1/+1
* done #35: display disk usage of files in current directoryhut2010-01-193-2/+13
* done #34: display free disk spacehut2010-01-196-4/+29
* typohut2010-01-191-1/+1
* titlebar: red hostname if logged in with roothut2010-01-193-4/+11
* generate: fixedhut2010-01-192-4/+4
* fixed #43: bookmark ` = 'hut2010-01-183-5/+11
* typohut2010-01-181-1/+1
* stuffhut2010-01-182-1/+2
* actions: bookmark old dir in ` when using :cdhut2010-01-184-20/+25
* options: allow to specify how to recognize "hidden files"hut2010-01-183-3/+18
* fsobject: recognize capital letter file extensionshut2010-01-182-2/+3
^
f07bb12f ^






34a60763 ^




f07bb12f ^






34a60763 ^
f07bb12f ^






34a60763 ^
f07bb12f ^









34a60763 ^
c776804d ^
f07bb12f ^

34a60763 ^
f07bb12f ^



34a60763 ^





f07bb12f ^





34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^

f07bb12f ^

34a60763 ^

f07bb12f ^






34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^





34a60763 ^
f07bb12f ^





















34a60763 ^
f07bb12f ^





























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