summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-08-02 03:51:00 +0200
committerhut <hut@lavabit.com>2012-08-02 03:52:28 +0200
commit176e8a684cb490393f84e7fdccc6aafda559364b (patch)
tree526b3cc3f1f182ae62ca6b67146fcf7fbb935fc3 /doc
parentd2c8c6cb3f24ac626275af133bb723e549850538 (diff)
downloadranger-176e8a684cb490393f84e7fdccc6aafda559364b.tar.gz
renamed ranger/defaults to ranger/config
Diffstat (limited to 'doc')
-rw-r--r--doc/HACKING6
-rw-r--r--doc/ranger.pod6
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/HACKING b/doc/HACKING
index f6d5d064..89452398 100644
--- a/doc/HACKING
+++ b/doc/HACKING
@@ -46,7 +46,7 @@ In ranger/fsobject/file.py
 the constant PREVIEW_BLACKLIST
 
 * Adding options:
-In ranger/defaults/options.py
+In ranger/config/options.py
 add the default value, like: my_option = True
 In ranger/container/settingobject.py
 add the name of your option to the constant ALLOWED_SETTINGS
@@ -58,12 +58,12 @@ assuming <self> is a "SettingsAware" object.
 Copy ranger/colorschemes/default.py to ranger/colorschemes/myscheme.py
 and modify it according to your needs.  Alternatively, mimic the jungle
 colorscheme.  It subclasses the default scheme and just modifies a few things.
-In ranger/defaults/options.py (or ~/.config/ranger/options.py), change
+In ranger/config/options.py (or ~/.config/ranger/options.py), change
     colorscheme = 'default'
 to: colorscheme = 'myscheme'
 
 * Change the file type => application associations:
-In ranger/defaults/apps.py
+In ranger/config/apps.py
 modify the method app_default.
 The variable "f" is a filesystem-object with attributes like mimetype,
 extension, etc.  For a full list, check ranger/fsobject/fsobject.py
diff --git a/doc/ranger.pod b/doc/ranger.pod
index 9f8b4f04..2a3a345b 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -24,8 +24,8 @@ open your files with.
 
 This manual mainly contains information on the usage of ranger.  Refer to the
 F<README> for install instructions and to F<doc/HACKING> for development
-specific information.  For configuration, see the files in F<ranger/defaults>.
-They are usually installed to F</usr/lib/python*/site-packages/ranger/defaults>
+specific information.  For configuration, see the files in F<ranger/config>.
+They are usually installed to F</usr/lib/python*/site-packages/ranger/config>
 and can be obtained with ranger's --copy-config option.
 
 Inside ranger, you can press I<1?> for a list of key bindings, I<2?> for a list
@@ -229,7 +229,7 @@ and modes.
 
 =head1 KEY BINDINGS
 
-Key bindings are defined in the file F<ranger/defaults/rc.conf>.  Check this
+Key bindings are defined in the file F<ranger/config/rc.conf>.  Check this
 file for a list of all key bindings.  You can copy it to your local
 configuration directory with the --copy-config=rc option.
 
anger.1?h=v1.9.0b1&id=a2853ab67f2e471d9a34b4c528db6ee2024ef874'>a2853ab6 ^
dd91e084 ^










85a9a41e ^
dd91e084 ^


















85a9a41e ^





af4bcb88 ^


dd91e084 ^
2c309379 ^
dd91e084 ^

2c309379 ^
dd91e084 ^

2c309379 ^


dd91e084 ^



































85a9a41e ^






6c474705 ^
1ee34606 ^

85a9a41e ^






dd91e084 ^


































aefd8048 ^
a2853ab6 ^
dd91e084 ^





a2853ab6 ^
acf16d12 ^

a2853ab6 ^
dd91e084 ^
























acf16d12 ^

dd91e084 ^

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