summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2015-07-15 00:06:02 +0200
committerhut <hut@lepus.uberspace.de>2015-10-04 01:19:01 +0200
commit1f124acd4a650a0f7ecb72c3abdd675c0c04e353 (patch)
tree60e1206f4ee1411963e6b90e4913cb6518956724 /doc
parentffc86e63f325a544d533b2a605e112ebc044f90e (diff)
downloadranger-1f124acd4a650a0f7ecb72c3abdd675c0c04e353.tar.gz
rc.conf: added pP/pO keys for FIFO-queued copying, fixes #345
Diffstat (limited to 'doc')
-rw-r--r--doc/ranger.18
-rw-r--r--doc/ranger.pod5
2 files changed, 11 insertions, 2 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1
index 42eca7e6..ea720903 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -1,4 +1,4 @@
-.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)
+.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.29)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -133,7 +133,7 @@
 .\" ========================================================================
 .\"
 .IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.7.1" "05/04/2015" "ranger manual"
+.TH RANGER 1 "ranger-1.7.1" "07/15/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
@@ -497,6 +497,10 @@ modern \s-1GUI\s0 programs.
 .IP "po" 14
 .IX Item "po"
 Paste the copied/cut files, overwriting existing files.
+.IP "pP, pO" 14
+.IX Item "pP, pO"
+Like pp and po, but queues the operation so that it will be executed \fIafter\fR
+any other operations.  Reminder: type \f(CW\*(C`w\*(C'\fR to open the task window.
 .IP "pl, pL" 14
 .IX Item "pl, pL"
 Create symlinks (absolute or relative) to the copied files
diff --git a/doc/ranger.pod b/doc/ranger.pod
index ab84de2c..b68595a9 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -418,6 +418,11 @@ modern GUI programs.
 
 Paste the copied/cut files, overwriting existing files.
 
+=item pP, pO
+
+Like pp and po, but queues the operation so that it will be executed I<after>
+any other operations.  Reminder: type C<w> to open the task window.
+
 =item pl, pL
 
 Create symlinks (absolute or relative) to the copied files
='#n25'>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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397