summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-02-22 02:17:17 +0100
committerhut <hut@lavabit.com>2013-02-22 02:25:57 +0100
commit8bcfc1988283736d2cd5405789f04db8ccf151c3 (patch)
tree961892586e90ed4c37b39361a28ba4ff27d6e5b7
parent4537b1ab36f60baf4915f8378e26c13f9fa0d688 (diff)
downloadranger-8bcfc1988283736d2cd5405789f04db8ccf151c3.tar.gz
ext.rifle: better searching for configuration file
-rwxr-xr-xranger/ext/rifle.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index e5cf17b4..dff87b5a 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -373,9 +373,19 @@ def main():
         conf_path = os.environ['XDG_CONFIG_HOME'] + '/ranger/rifle.conf'
     else:
         conf_path = os.path.expanduser('~/.config/ranger/rifle.conf')
+    default_conf_path = conf_path
     if not os.path.isfile(conf_path):
         conf_path = os.path.normpath(os.path.join(os.path.dirname(__file__),
             '../config/rifle.conf'))
+    if not os.path.isfile(conf_path):
+        try:
+            # if ranger is installed, get the configuration from ranger
+            import ranger
+        except ImportError:
+            pass
+        else:
+            conf_path = os.path.join(ranger.__path__[0], "config", "rifle.conf")
+
 
     # Evaluate arguments
     from optparse import OptionParser
@@ -396,6 +406,11 @@ def main():
         parser.print_help()
         raise SystemExit(1)
 
+    if not os.path.isfile(conf_path):
+        sys.stderr.write("Could not find a configuration file.\n"
+                "Please create one at %s.\n" % default_conf_path)
+        raise SystemExit(1)
+
     if options.p.isdigit():
         number = int(options.p)
         label = None
93d27b93dd4'>09b8717b ^
71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





55479bc2 ^
09b8717b ^



71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





55479bc2 ^
09b8717b ^


71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^



6f65d591 ^
09b8717b ^


6f65d591 ^
09b8717b ^


55479bc2 ^
09b8717b ^
09b8717b ^


55479bc2 ^
09b8717b ^

71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





55479bc2 ^
09b8717b ^



71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





55479bc2 ^
09b8717b ^


71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





3d8b137c ^
09b8717b ^



4e7186fa ^
09b8717b ^






2d91279b ^
09b8717b ^


3d8b137c ^
09b8717b ^

2d91279b ^
09b8717b ^
3d8b137c ^



09b8717b ^

2d91279b ^
09b8717b ^


2d91279b ^
09b8717b ^


2d91279b ^
09b8717b ^

ea19d0dc ^
2d91279b ^
09b8717b ^






2d91279b ^
09b8717b ^

2d91279b ^
09b8717b ^
9c2421ec ^
3d8b137c ^

09b8717b ^






2d91279b ^
09b8717b ^

2d91279b ^
3d8b137c ^

09b8717b ^
2d91279b ^
09b8717b ^
3d8b137c ^
09b8717b ^


2d91279b ^
09b8717b ^

3d8b137c ^

09b8717b ^


3d8b137c ^
09b8717b ^

3d8b137c ^

09b8717b ^



6f65d591 ^
09b8717b ^


6f65d591 ^
09b8717b ^


55479bc2 ^
09b8717b ^
09b8717b ^


55479bc2 ^
09b8717b ^

71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^







55479bc2 ^
09b8717b ^



71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^





55479bc2 ^
09b8717b ^


71056d61 ^
ceeb92d4 ^
71056d61 ^


ceeb92d4 ^
71056d61 ^
09b8717b ^

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