summary refs log tree commit diff stats
path: root/examples/plugin_chmod_keybindings.py
Commit message (Collapse)AuthorAgeFilesLines
* Should I dual ranger/cleric or wait for the THAC0 bonus? v1.7.0hut2015-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit 7236dde27bf33fec5097c223f0d70598b10ba05f Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 14:33:59 2015 +0200 wrote changelog entry commit 73e76b0f9a22ad8122154c4a2763c27ebce9be37 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:41:27 2015 +0200 update version number in man page commit b1948b9382027ed55d095a936610bc62f7cdba9a Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:41:08 2015 +0200 update rifle version number commit a96a8a808a3c68eb848a3e0361fd95cb8c643d59 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:34:59 2015 +0200 s/ranger-master/ranger-stable/ commit 6967a48193227b4a0c843e8831e5511005179f69 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:33:06 2015 +0200 updated version number commit 0cbc401fd25fc4d307d026628e12ef1106a42bdf Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:18:26 2015 +0200 updated version info in example plugins
* moved "doc/examples" to "examples" for more visibilityhut2015-04-131-0/+20
|
* move examples to doc/exampleshut2013-03-091-20/+0
|
* Added version info to exampleshut2013-03-011-0/+2
|
* examples/plugin_chmod_keybindings.py: fixed crashhut2013-02-221-1/+1
|
* replaced tabs with 4 spaces in all python fileshut2013-02-101-7/+7
| | | | | | | | | PEP 8 (Style Guide for Python Code) suggests the use of 4 spaces: http://www.python.org/dev/peps/pep-0008/#indentation If you need to use tools like "git blame", you can use the -w option to ignore this commit entirely. Patches will continue to work if you substitute tabs with 4 spaces everywhere except in the Makefile.
* updated man page, improved hookshut2012-12-041-5/+5
|
* removed options.py, improved plugins. *UPDATE YOUR COMMANDS.PY*hut2012-12-041-0/+18
Previously, you could change settings in both rc.conf and options.py. With this commit, options.py is deprecated and you are encouraged to use rc.conf to change settings. I chose to do this because it is more elegant to use a simple list of ranger commands for configuration rather than a python file with lots of magic around it and potential syntax errors for inexperienced users. The existing "set" command doesn't evaluate python objects anymore, instead it always takes strings and converts to the proper type automatically. This means that the old set command will not work anymore and you have to update your commands.py if it still uses the old definition of the "set" command. This is how to convert your options.py: old way, in options.py | new way, in rc.conf ---------------------------+------------------------ show_hidden = False | set show_hidden false sort = 'basename' | set sort basename column_ratios = (1, 5, 3) | set column_ratios 1,5,3 For backward compatibility, you still can use options.py, but you get a warning when you start ranger. You can pipe stderr to /dev/null to silence the warning, or just move your stuff from options.py to rc.conf and plugins and delete the options.py. Finally, to extend ranger, which you previously could do through monkey-patching in options.py, you should now use the plugin system. This was an experimental, undocumented feature of ranger for some time, but this and the following commits will imrpove and document it. You can simply move all the monkey-patching code from options.py to a *.py file in ~/.config/ranger/plugins/.
curses to https://github.com/nsf/termbox' href='/akkartik/mu/commit/cpp/termbox/term.inl?h=main&id=5f1285238b09a5f01836138f5bb94654f78588a7'>5f128523 ^
e709c65e ^
5f128523 ^



d94d8243 ^
5f128523 ^

e709c65e ^
5f128523 ^



d94d8243 ^
5f128523 ^

e709c65e ^
5f128523 ^


9a31c34f ^


5f128523 ^
9a31c34f ^






5f128523 ^






9a31c34f ^
5f128523 ^
9a31c34f ^




5f128523 ^
9a31c34f ^
5f128523 ^



9a31c34f ^




























5f128523 ^






9a31c34f ^























5f128523 ^


9a31c34f ^
b4bbd479 ^
c64c9caa ^
d4ecd588 ^
9a31c34f ^





b4bbd479 ^
d4ecd588 ^
9a31c34f ^
5f128523 ^

5af07e1c ^









5f128523 ^
9a31c34f ^














b4bbd479 ^

5af07e1c ^

9a31c34f ^







b4bbd479 ^


9a31c34f ^














5f128523 ^






9a31c34f ^



3315a7d3 ^
9a31c34f ^
5f128523 ^


9a31c34f ^
5f128523 ^


9a31c34f ^


5f128523 ^


9a31c34f ^
























e709c65e ^
9a31c34f ^
e709c65e ^
9a31c34f ^



e709c65e ^



9a31c34f ^



5f128523 ^


9a31c34f ^




e709c65e ^
9a31c34f ^

e709c65e ^
9a31c34f ^




5f128523 ^
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