summary refs log tree commit diff stats
path: root/ranger.py
Commit message (Collapse)AuthorAgeFilesLines
* reverted a part of 45cf5174. Allow "source ranger ranger" againhut2010-04-011-8/+7
| | | | This is OK since it comes at almost no cost
* removed the cd-after-exit hackhut2010-03-291-13/+8
| | | | | | | | | Fear not. You still get the same functionality by using a function like: ranger() { $(which ranger) $@ && cd "$(grep \^\' ~/.ranger/bookmarks | cut -b3-)" }
* ranger.__init__: don't implicitly import ranger.__main__hut2010-03-261-1/+1
|
* Changed license to the GNU General Public Licensehut2010-02-281-12/+14
|
* ranger.py: fixed cd-after-exit with spaces in directoryhut2010-02-241-1/+1
|
* ranger.py: removed unnecessary codehut2010-02-151-1/+1
|
* ranger.py: reverted cd-after-exit to the old wayhut2010-02-141-10/+1
| | | | | | | | This breaks cd-after-exit after Ctrl+C again, but enables compatibility with zsh which I prefer over the former. If you only use bash, you can safely revert this commit unless future changes make it break.
* ranger.py: more simple '--debug' flag checkhut2010-02-141-1/+1
|
* ranger.py: improved handling of bad importhut2010-01-261-1/+2
|
* ranger.py: more fixeshut2010-01-121-2/+2
|
* ranger.py: cleanup/fixhut2010-01-111-9/+8
|
* fixed #31, cd-after-exit works even after pressing ^Chut2010-01-111-1/+12
|
* added license informationhut2010-01-081-3/+17
|
* F1 key (inside console) for viewing information about the commandhut2009-12-291-1/+1
|
* shorten comment in ranger.pyhut2009-12-261-11/+5
|
* implemented OpenConsolehut2009-12-251-2/+2
|
* random updateshut2009-12-251-3/+16
|
* tons of stuffhut2009-12-171-1/+1
|
* merged main with __init__hut2009-12-121-1/+1
|
* restructurationshut2009-12-111-2/+4
|
* changing implementation of optionshut2009-12-061-3/+6
|
* structural improvementshut2009-12-011-46/+9
|
* random improvementshut2009-11-291-2/+2
|
* implemented colorschemes.hut2009-11-291-10/+10
|
* started to implement colorschemeshut2009-11-291-6/+11
|
* restructurationhut2009-11-281-33/+33
|
* embedded wrapper.sh into ranger.pyhut2009-11-271-0/+12
|
* cd-after-exithut2009-11-271-4/+17
|
* general improvementhut2009-11-271-1/+1
|
* more VROOMhut2009-11-271-0/+38
=070547a7ffbae5c1527a4ff7b5c36ad4e2b629b4'>^
0e7e9315 ^
630fef01 ^


a234ba0c ^


85ccedd0 ^
90ac69be ^
e6e0a13e ^
a234ba0c ^
2a69f8d2 ^
8ccbeade ^




2a69f8d2 ^
0ce92446 ^
630fef01 ^
2a69f8d2 ^

630fef01 ^
9a322a02 ^
630fef01 ^


9a322a02 ^
0146e625 ^
d5dee163 ^
c16871d1 ^
8ccbeade ^
630fef01 ^
3e1832b0 ^
630fef01 ^
0146e625 ^
630fef01 ^


9a322a02 ^
0146e625 ^
d5dee163 ^
57dc5f14 ^
0146e625 ^
630fef01 ^


9a322a02 ^
0c1bbb63 ^
630fef01 ^
0146e625 ^
630fef01 ^


9a322a02 ^
0146e625 ^
d5dee163 ^
0146e625 ^
630fef01 ^


9a322a02 ^
0c1bbb63 ^
630fef01 ^

070547a7 ^
8e46b9e7 ^
070547a7 ^

8e46b9e7 ^
070547a7 ^
8e46b9e7 ^
0c1bbb63 ^

e14cd43a ^
404dde28 ^
3fdd9944 ^
c6c0a94b ^
4f7feedb ^
9bea1ce8 ^



d99f1536 ^

8ae6d359 ^
4f7feedb ^
f4441ec6 ^
e02dbe24 ^
10142444 ^

b84bddc4 ^
6fd5b617 ^
945d6559 ^
73262221 ^
cbe14d6e ^
36427971 ^
3a778cc9 ^
5d59d176 ^
28dd5458 ^
10142444 ^
4aee5347 ^
d5dee163 ^
630fef01 ^
630fef01 ^
28dd5458 ^




4aee5347 ^
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