summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--doc/ranger.115
-rw-r--r--doc/ranger.pod14
2 files changed, 26 insertions, 3 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1
index 59bf529c..41463478 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -133,7 +133,7 @@
 .\" ========================================================================
 .\"
 .IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.6.1" "02/06/2015" "ranger manual"
+.TH RANGER 1 "ranger-1.6.1" "02/18/2015" "ranger manual"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
@@ -188,11 +188,18 @@ Change the configuration directory of ranger from ~/.config/ranger to \*(L"dir\*
 .IX Item "--copy-config=file"
 Create copies of the default configuration files in your local configuration
 directory.  Existing ones will not be overwritten.  Possible values: \fIall\fR,
-\&\fIcommands\fR, \fIrc\fR, \fIrifle\fR, \fIscope\fR.
+\&\fIcommands\fR, \fIcommands_full\fR, \fIrc\fR, \fIrifle\fR, \fIscope\fR.
 .Sp
 Note: You may want to disable loading of the global configuration files by
 exporting \fIRANGER_LOAD_DEFAULT_RC=FALSE\fR in your environment.  See also:
 \&\fB\s-1FILES\s0\fR, \fB\s-1ENVIRONMENT\s0\fR
+.Sp
+\&\-\-copy\-config=\fBcommands\fR will copy only a small sample configuration file with
+a thoroughly commented example.  It is recommended to keep this file tidy to
+avoid getting defunct commands on ranger upgrades.  The full default
+commands.py can be copied with \-\-copy\-config=\fBcommands_full\fR, but that file
+will be ignored by ranger and serves only as a reference for making your own
+commands.
 .IP "\fB\-\-choosefile\fR=\fItargetfile\fR" 14
 .IX Item "--choosefile=targetfile"
 Allows you to pick a file with ranger.  This changes the behavior so that when
@@ -1193,6 +1200,10 @@ and settings are defined here.
 .IX Item "commands.py"
 A python module that defines commands which can be used in ranger's console by
 typing \*(L":\*(R" or in the rc.conf file.
+.IP "commands_full.py" 10
+.IX Item "commands_full.py"
+This file is copied by \-\-copy\-config=commands_full and serves as a reference
+for custom commands.  It is entirely ignored by ranger.
 .IP "rifle.conf" 10
 .IX Item "rifle.conf"
 This is the configuration file for the built-in file launcher called \*(L"rifle\*(R".
diff --git a/doc/ranger.pod b/doc/ranger.pod
index 177cd0f5..6888ee70 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -70,12 +70,19 @@ Change the configuration directory of ranger from ~/.config/ranger to "dir".
 
 Create copies of the default configuration files in your local configuration
 directory.  Existing ones will not be overwritten.  Possible values: I<all>,
-I<commands>, I<rc>, I<rifle>, I<scope>.
+I<commands>, I<commands_full>, I<rc>, I<rifle>, I<scope>.
 
 Note: You may want to disable loading of the global configuration files by
 exporting I<RANGER_LOAD_DEFAULT_RC=FALSE> in your environment.  See also:
 B<FILES>, B<ENVIRONMENT>
 
+--copy-config=B<commands> will copy only a small sample configuration file with
+a thoroughly commented example.  It is recommended to keep this file tidy to
+avoid getting defunct commands on ranger upgrades.  The full default
+commands.py can be copied with --copy-config=B<commands_full>, but that file
+will be ignored by ranger and serves only as a reference for making your own
+commands.
+
 =item B<--choosefile>=I<targetfile>
 
 Allows you to pick a file with ranger.  This changes the behavior so that when
@@ -1266,6 +1273,11 @@ and settings are defined here.
 A python module that defines commands which can be used in ranger's console by
 typing ":" or in the rc.conf file.
 
+=item commands_full.py
+
+This file is copied by --copy-config=commands_full and serves as a reference
+for custom commands.  It is entirely ignored by ranger.
+
 =item rifle.conf
 
 This is the configuration file for the built-in file launcher called "rifle".
2-18 03:22:32 +0100 doc/rifle.1: Added man page for rifle' href='/akspecs/ranger/commit/doc/rifle.1?h=v1.7.2&id=a6836d5d2b809dab92c178c3678317d8c8f00220'>a6836d5d ^
57c2dff1 ^




a6836d5d ^

57c2dff1 ^




a6836d5d ^

57c2dff1 ^



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