summary refs log tree commit diff stats
path: root/doc/ranger.1
blob: 4c8267f2e78fbbee2aa9d0cddb6c6435d6543e9f (plain) (blame)
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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings.  \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote.  \*(C+ will
.\" give a nicer C++.  Capital omega is used to do unbreakable dashes and
.\" therefore won't be available.  \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
.    ds -- \(*W-
.    ds PI pi
.    if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
.    if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\"  diablo 12 pitch
.    ds L" ""
.    ds R" ""
.    ds C` ""
.    ds C' ""
'br\}
.el\{\
.    ds -- \|\(em\|
.    ds PI \(*p
.    ds L" ``
.    ds R" ''
.    ds C`
.    ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD.  Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.if !\nF .nr F 0
.if \nF>0 \{\
.    de IX
.    tm Index:\\$1\t\\n%\t"\\$2"
..
.    if !\nF==2 \{\
.        nr % 0
.        nr F 2
.    \}
.\}
.\"
.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
.\" Fear.  Run.  Save yourself.  No user-serviceable parts.
.    \" fudge factors for nroff and troff
.if n \{\
.    ds #H 0
.    ds #V .8m
.    ds #F .3m
.    ds #[ \f1
.    ds #] \fP
.\}
.if t \{\
.    ds #H ((1u-(\\\\n(.fu%2u))*.13m)
.    ds #V .6m
.    ds #F 0
.    ds #[ \&
.    ds #] \&
.\}
.    \" simple accents for nroff and troff
.if n \{\
.    ds ' \&
.    ds ` \&
.    ds ^ \&
.    ds , \&
.    ds ~ ~
.    ds /
.\}
.if t \{\
.    ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
.    ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
.    ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
.    ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
.    ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
.    ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
.\}
.    \" troff and (daisy-wheel) nroff accents
.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
.ds ae a\h'-(\w'a'u*4/10)'e
.ds Ae A\h'-(\w'A'u*4/10)'E
.    \" corrections for vroff
.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
.    \" for low resolution devices (crt and lpr)
.if \n(.H>23 .if \n(.V>19 \
\{\
.    ds : e
.    ds 8 ss
.    ds o a
.    ds d- d\h'-1'\(ga
.    ds D- D\h'-1'\(hy
.    ds th \o'bp'
.    ds Th \o'LP'
.    ds ae ae
.    ds Ae AE
.\}
.rm #[ #] #H #V #F C
.\" ========================================================================
.\"
.IX Title "RANGER 1"
.TH RANGER 1 "ranger-1.9.0b5" "07/16/2017" "ranger manual"
.\" For nroff, turn off justification.  Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
ranger \- visual file manager
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
\&\fBranger\fR [\fB\-\-version\fR] [\fB\-\-help\fR] [\fB\-\-debug\fR] [\fB\-\-clean\fR]
[\fB\-\-cachedir\fR=\fIdirectory\fR] [\fB\-\-confdir\fR=\fIdirectory\fR] [\fB\-\-datadir\fR=\fIdirectory\fR]
[\fB\-\-copy\-config\fR=\fIwhich\fR]
[\fB\-\-choosefile\fR=\fItarget\fR] [\fB\-\-choosefiles\fR=\fItarget\fR]
[\fB\-\-choosedir\fR=\fItarget\fR] [\fB\-\-selectfile\fR=\fIfilepath\fR]
[\fB\-\-show\-only\-dirs\fR]
[\fB\-\-list\-unused\-keys\fR] [\fB\-\-list\-tagged\-files\fR=\fItag\fR]
[\fB\-\-profile\fR] [\fB\-\-cmd\fR=\fIcommand\fR] [\fIpath\fR]
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
ranger is a console file manager with \s-1VI\s0 key bindings.
.SH "RESOURCES"
.IX Header "RESOURCES"
\&\fIThis manual\fR contains instructions on how to use and configure ranger.
.PP
\&\fIInside ranger\fR, you can press \fI?\fR for a list of key bindings, commands or
settings.
.PP
The \fI\s-1README\s0\fR contains install instructions.
.PP
The file \fI\s-1HACKING\s0.md\fR contains guidelines for code modification.
.PP
The directory \fIdoc/configs\fR contains configuration files.  They are usually
installed to \fI/usr/share/doc/ranger/config\fR and can be obtained with ranger's
\&\-\-copy\-config option.
.PP
The directory \fIexamples\fR contains reference implementations for ranger
plugins, sample configuration files and some programs for integrating ranger
with other software.  They are usually installed to
\&\fI/usr/share/doc/ranger/examples\fR.
.PP
The man page of \fIrifle\fR\|(1) describes the functions of the file opener
.PP
The section \fI\s-1LINKS\s0\fR of this man page contains further resources.
.SH "OPTIONS"
.IX Header "OPTIONS"
.IP "\fB\-d\fR, \fB\-\-debug\fR" 14
.IX Item "-d, --debug"
Activate the debug mode: Whenever an error occurs, ranger will exit and print a
full traceback.  The default behavior is to merely print the name of the
exception in the statusbar/log and try to keep running.
.IP "\fB\-c\fR, \fB\-\-clean\fR" 14
.IX Item "-c, --clean"
Activate the clean mode:  ranger will not access or create any configuration
files nor will it leave any traces on your system.  This is useful when your
configuration is broken, when you want to avoid clutter, etc.
.IP "\fB\-\-cachedir\fR=\fIdir\fR" 14
.IX Item "--cachedir=dir"
Change the cache directory of ranger from \f(CW$XDG_CACHE_HOME\fR or ~/.cache/ranger to \*(L"dir\*(R".
.IP "\fB\-r\fR \fIdir\fR, \fB\-\-confdir\fR=\fIdir\fR" 14
.IX Item "-r dir, --confdir=dir"
Change the configuration directory of ranger from \f(CW$XDG_CONFIG_HOME\fR or ~/.config/ranger to \*(L"dir\*(R".
.IP "\fB\-\-datadir\fR=\fIdir\fR" 14
.IX Item "--datadir=dir"
Change the data directory of ranger from \f(CW$XDG_DATA_HOME\fR or ~/.local/share/ranger to \*(L"dir\*(R".
.IP "\fB\-\-copy\-config\fR=\fIfile\fR" 14
.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, \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
you open a file, ranger will exit and write the absolute path of that file into
\&\fItargetfile\fR.
.IP "\fB\-\-choosefiles\fR=\fItargetfile\fR" 14
.IX Item "--choosefiles=targetfile"
Allows you to pick multiple files with ranger.  This changes the behavior so
that when you open a file, ranger will exit and write the absolute paths of all
selected files into \fItargetfile\fR, adding one newline after each filename.
.IP "\fB\-\-choosedir\fR=\fItargetfile\fR" 14
.IX Item "--choosedir=targetfile"
Allows you to pick a directory with ranger.  When you exit ranger, it will
write the last visited directory into \fItargetfile\fR.
.IP "\fB\-\-selectfile\fR=\fItargetfile\fR" 14
.IX Item "--selectfile=targetfile"
Open ranger with \fItargetfile\fR selected.
.IP "\fB\-\-show\-only\-dirs\fR" 14
.IX Item "--show-only-dirs"
Display only the directories. May be used in conjunction with
\&\fB\-\-choosedir\fR=\fItargetfile\fR.
.IP "\fB\-\-list\-unused\-keys\fR" 14
.IX Item "--list-unused-keys"
List common keys which are not bound to any action in the \*(L"browser\*(R" context.
This list is not complete, you can bind any key that is supported by curses:
use the key code returned by \f(CW\*(C`getch()\*(C'\fR.
.IP "\fB\-\-list\-tagged\-files\fR=\fItag\fR" 14
.IX Item "--list-tagged-files=tag"
List all files which are tagged with the given tag.  Note: Tags are single
characters.  The default tag is \*(L"*\*(R"
.IP "\fB\-\-profile\fR" 14
.IX Item "--profile"
Print statistics of \s-1CPU\s0 usage on exit.
.IP "\fB\-\-cmd\fR=\fIcommand\fR" 14
.IX Item "--cmd=command"
Execute the command after the configuration has been read.  Use this option
multiple times to run multiple commands.
.IP "\fB\-\-version\fR" 14
.IX Item "--version"
Print the version and exit.
.IP "\fB\-h\fR, \fB\-\-help\fR" 14
.IX Item "-h, --help"
Print a list of options and exit.
.SH "CONCEPTS"
.IX Header "CONCEPTS"
This part explains how certain parts of ranger work and how they can be used
efficiently.
.SS "\s-1TAGS\s0"
.IX Subsection "TAGS"
Tags are single characters which are displayed left of a filename.  You can use
tags however you want.  Press \*(L"t\*(R" to toggle tags and \*(L"ut\*(R" to remove any tags of
the selection. The default tag is an Asterisk (\*(L"*\*(R"), but you can use any tag by
typing \fI"<tagname>\fR.
.SS "\s-1PREVIEWS\s0"
.IX Subsection "PREVIEWS"
By default, only text files are previewed, but you can enable external preview
scripts by setting the option \f(CW\*(C`use_preview_script\*(C'\fR and \f(CW\*(C`preview_files\*(C'\fR to true.
.PP
This default script is \fI~/.config/ranger/scope.sh\fR. It contains more
documentation and calls to the programs \fIlynx\fR and \fIelinks\fR for html,
\&\fIhighlight\fR for text/code, \fIimg2txt\fR for images, \fIatool\fR for archives,
\&\fIpdftotext\fR for PDFs and \fImediainfo\fR for video and audio files.
.PP
Install these programs (just the ones you need) and scope.sh will automatically
use them.
.PP
Independently of the preview script, there is a feature to preview images
by drawing them directly into the terminal. To enable this feature, set the
option \f(CW\*(C`preview_images\*(C'\fR to true and enable one of the image preview modes:
.PP
\fIw3m\fR
.IX Subsection "w3m"
.PP
This does not work over ssh, requires certain terminals (tested on \*(L"xterm\*(R" and
\&\*(L"urxvt\*(R") and is incompatible with tmux, although it works with screen.
.PP
To enable this feature, install the program \*(L"w3m\*(R" and set the option
\&\f(CW\*(C`preview_images_method\*(C'\fR to w3m.
.PP
\fIiTerm2\fR
.IX Subsection "iTerm2"
.PP
This only works in iTerm2 compiled with image preview support, but works over
ssh.
.PP
To enable this feature, set the option \f(CW\*(C`preview_images_method\*(C'\fR to iterm2.
.PP
\fIurxvt\fR
.IX Subsection "urxvt"
.PP
This only works in urxvt compiled with pixbuf support. Does not work over ssh.
.PP
Essentially this mode sets an image as a terminal background temporarily, so it
will break any previously set image background.
.PP
To enable this feature, set the option \f(CW\*(C`preview_images_method\*(C'\fR to urxvt.
.PP
\fIurxvt-full\fR
.IX Subsection "urxvt-full"
.PP
The same as urxvt but utilizing not only the preview pane but the whole terminal
window.
.PP
To enable this feature, set the option \f(CW\*(C`preview_images_method\*(C'\fR to urxvt-full.
.SS "\s-1SELECTION\s0"
.IX Subsection "SELECTION"
The \fIselection\fR is defined as \*(L"All marked files \s-1IF THERE ARE ANY,\s0 otherwise
the current file.\*(R"  Be aware of this when using the :delete command, which
deletes all files in the selection.
.PP
You can mark files by pressing <Space>, v, etc.  A yellow \fBMrk\fR symbol at the
bottom right indicates that there are marked files in this directory.
.SS "\s-1MACROS\s0"
.IX Subsection "MACROS"
Macros can be used in commands to abbreviate things.
.PP
.Vb 6
\& %f   the highlighted file
\& %d   the path of the current directory
\& %s   the selected files in the current directory
\& %t   all tagged files in the current directory
\& %c   the full paths of the currently copied/cut files
\& %p   the full paths of selected files
.Ve
.PP
The macros \f(CW%f\fR, \f(CW%d\fR, \f(CW%p\fR, and \f(CW%s\fR also have upper case variants, \f(CW%F\fR, \f(CW%D\fR, \f(CW%P\fR, and
\&\f(CW%S\fR, which refer to the next tab.  To refer to specific tabs, add a number in
between.  (%7s = selection of the seventh tab.)
.PP
\&\f(CW%c\fR is the only macro which ranges out of the current directory. So you may
\&\*(L"abuse\*(R" the copying function for other purposes, like diffing two files which
are in different directories:
.PP
.Vb 2
\& Yank the file A (type yy), move to the file B, then type
\& @diff %c %f
.Ve
.PP
Macros for file paths are generally shell-escaped so they can be used in the
\&\f(CW\*(C`shell\*(C'\fR command.
.PP
Additionally, if you create a key binding that uses <any>, a special statement
which accepts any key, then the macro \f(CW%any\fR (or \f(CW%any0\fR, \f(CW%any1\fR, \f(CW%any2\fR, ...) can be
used in the command to get the key that was pressed.
.PP
The macro \f(CW%rangerdir\fR expands to the directory of ranger's python library, you
can use it for something like this command:
  alias show_commands shell less \f(CW%rangerdir\fR/config/commands.py
.PP
\&\f(CW%confdir\fR expands to the directory given by \fB\-\-confdir\fR.
.PP
\&\f(CW%datadir\fR expands to the directory given by \fB\-\-datadir\fR.
.PP
The macro \f(CW%space\fR expands to a space character. You can use it to add spaces to
the end of a command when needed, while preventing editors to strip spaces off
the end of the line automatically.
.PP
To write a literal %, you need to escape it by writing %%.
.SS "\s-1BOOKMARKS\s0"
.IX Subsection "BOOKMARKS"
Type \fBm<key>\fR to bookmark the current directory. You can re-enter this
directory by typing \fB`<key>\fR. <key> can be any letter or digit.  Unlike vim,
both lowercase and uppercase bookmarks are persistent.
.PP
Each time you jump to a bookmark, the special bookmark at key ` will be set
to the last directory. So typing \*(L"``\*(R" gets you back to where you were before.
.PP
Bookmarks are selectable when tabbing in the :cd command.
.PP
Note: The bookmarks ' (Apostrophe) and ` (Backtick) are the same.
.SS "\s-1RIFLE\s0"
.IX Subsection "RIFLE"
Rifle is the file opener of ranger.  It can be used as a standalone program or
a python module.  It is located at \fIranger/ext/rifle.py\fR.  In contrast to
other, more simple file openers, rifle can automatically find installed
programs so it can be used effectively out of the box on a variety of systems.
.PP
It's configured in \fIrifle.conf\fR through a list of conditions and commands.
For each line the conditions are checked and if they are met, the respective
command is taken into consideration.  By default, simply the first matching
rule is used.  In ranger, you can list and choose rules by typing \*(L"r\*(R" or simply
by typing \*(L"<rulenumber><enter>\*(R".  If you use rifle standalone, you can list all
rules with the \*(L"\-l\*(R" option and pick a rule with \*(L"\-p <number>\*(R".
.PP
The rules, along with further documentation, are contained in
\&\fIranger/config/rifle.conf\fR.
.SS "\s-1FLAGS\s0"
.IX Subsection "FLAGS"
Flags give you a way to modify the behavior of the spawned process.  They are
used in the commands \f(CW\*(C`:open_with\*(C'\fR (key \*(L"r\*(R") and \f(CW\*(C`:shell\*(C'\fR (key \*(L"!\*(R").
.PP
.Vb 4
\& f   Fork the process.  (Run in background)
\& c   Run the current file only, instead of the selection
\& r   Run application with root privilege (requires sudo)
\& t   Run application in a new terminal window
.Ve
.PP
There are some additional flags that can currently be used only in the \f(CW\*(C`shell\*(C'\fR
command: (for example \f(CW\*(C`:shell \-w df\*(C'\fR)
.PP
.Vb 3
\& p   Redirect output to the pager
\& s   Silent mode.  Output will be discarded.
\& w   Wait for an Enter\-press when the process is done
.Ve
.PP
By default, all the flags are off unless specified otherwise in the
\&\fIrifle.conf\fR configuration file.  You can specify as many flags as you want.
An uppercase flag negates the effect: \*(L"ffcccFsf\*(R" is equivalent to \*(L"cs\*(R".
.PP
The terminal program name for the \*(L"t\*(R" flag is taken from the environment
variable \f(CW$TERMCMD\fR.  If it doesn't exist, it tries to extract it from \f(CW$TERM\fR and
uses \*(L"xterm\*(R" as a fallback if that fails.
.PP
Examples: \f(CW\*(C`:open_with c\*(C'\fR will open the file that you currently point at, even
if you have selected other files.  \f(CW\*(C`:shell \-w df\*(C'\fR will run \*(L"df\*(R" and wait for
you to press Enter before switching back to ranger.
.SS "\s-1PLUGINS\s0"
.IX Subsection "PLUGINS"
ranger's plugin system consists of python files which are located in
\&\fI~/.config/ranger/plugins/\fR and are imported in alphabetical order when
starting ranger.  A plugin changes rangers behavior by overwriting or extending
a function that ranger uses.  This allows you to change pretty much every part
of ranger, but there is no guarantee that things will continue to work in
future versions as the source code evolves.
.PP
Adding new commands via a plugin as simple as specifying them like you would do
in the \fIcommands.py\fR.
.PP
There are some hooks that are specifically made for the use in plugins.  They
are functions that start with hook_ and can be found throughout the code.
.PP
.Vb 1
\& grep \*(Aqdef hook_\*(Aq \-r /path/to/rangers/source
.Ve
.PP
Also try:
.PP
.Vb 1
\& pydoc ranger.api
.Ve
.PP
Note that you should \s-1NOT\s0 simply overwrite a function unless you know what
you're doing.  Instead, save the existing function and call it from your new
one.  This way, multiple plugins can use the same hook.  There are several
sample plugins in the \fI/usr/share/doc/ranger/examples/\fR directory, including a
hello-world plugin that describes this procedure.
.SH "KEY BINDINGS"
.IX Header "KEY BINDINGS"
Key bindings are defined in the file \fIranger/config/rc.conf\fR.  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.
.PP
Many key bindings take an additional numeric argument.  Type \fI5j\fR to move
down 5 lines, \fI2l\fR to open a file in mode 2, \fI10<Space>\fR to mark 10 files.
.PP
This list contains the most useful bindings:
.SS "\s-1MAIN BINDINGS\s0"
.IX Subsection "MAIN BINDINGS"
.IP "h, j, k, l" 14
.IX Item "h, j, k, l"
Move left, down, up or right
.IP "^D or J, ^U or K" 14
.IX Item "^D or J, ^U or K"
Move a half page down, up
.IP "H, L" 14
.IX Item "H, L"
Move back and forward in the history
.IP "gg" 14
.IX Item "gg"
Move to the top
.IP "G" 14
.IX Item "G"
Move to the bottom
.IP "[, ]" 14
Move up and down in the parent directory.
.IP "^R" 14
.IX Item "^R"
Reload everything
.IP "F" 14
.IX Item "F"
Toggle \fIfreeze_files\fR setting.  When active, directories and files will not be
loaded, improving performance when all the files you need are already loaded.
This does not affect file previews, which can be toggled with \fIzI\fR.  Also try
disabling the preview of directories with \fIzP\fR.
.IP "^L" 14
.IX Item "^L"
Redraw the screen
.IP "i" 14
.IX Item "i"
Inspect the current file in a bigger window.
.IP "E" 14
.IX Item "E"
Edit the current file in \f(CW$EDITOR\fR (\*(L"nano\*(R" by default)
.IP "S" 14
.IX Item "S"
Open a shell in the current directory
.IP "?" 14
Opens this man page
.IP "W" 14
.IX Item "W"
Opens the log window where you can review messages that pop up at the bottom.
.IP "w" 14
.IX Item "w"
Opens the task window where you can view and modify background processes that
currently run in ranger.  In there, you can type \*(L"dd\*(R" to abort a process and
\&\*(L"J\*(R" or \*(L"K\*(R" to change the priority of a process.  Only one process is run at a
time.
.IP "^C" 14
.IX Item "^C"
Stop the currently running background process that ranger has started, like
copying files, loading directories or file previews.
.IP "<octal>=, +<who><what>, \-<who><what>" 14
.IX Item "<octal>=, +<who><what>, -<who><what>"
Change the permissions of the selection.  For example, \f(CW\*(C`777=\*(C'\fR is equivalent to
\&\f(CW\*(C`chmod 777 %s\*(C'\fR, \f(CW\*(C`+ar\*(C'\fR does \f(CW\*(C`chmod a+r %s\*(C'\fR, \f(CW\*(C`\-ow\*(C'\fR does \f(CW\*(C`chmod o\-w %s\*(C'\fR etc.
.IP "yy" 14
.IX Item "yy"
Copy (yank) the selection, like pressing Ctrl+C in modern \s-1GUI\s0 programs.  (You
can also type \*(L"ya\*(R" to add files to the copy buffer, \*(L"yr\*(R" to remove files again,
or \*(L"yt\*(R" for toggling.)
.IP "dd" 14
.IX Item "dd"
Cut the selection, like pressing Ctrl+X in modern \s-1GUI\s0 programs.  (There are
also \*(L"da\*(R", \*(L"dr\*(R" and \*(L"dt\*(R" shortcuts equivalent to \*(L"ya\*(R", \*(L"yr\*(R" and \*(L"yt\*(R".)
.IP "pp" 14
.IX Item "pp"
Paste the files which were previously copied or cut, like pressing Ctrl+V in
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
.IP "phl" 14
.IX Item "phl"
Create hardlinks to the copied files
.IP "pht" 14
.IX Item "pht"
Duplicate the subdirectory tree of the copied directory, then create
hardlinks for each contained file into the new directory tree.
.IP "m\fIX\fR" 14
.IX Item "mX"
Create a bookmark with the name \fIX\fR
.IP "`\fIX\fR" 14
.IX Item "`X"
Move to the bookmark with the name \fIX\fR
.IP "n" 14
.IX Item "n"
Find the next file.  By default, this gets you to the newest file in the
directory, but if you search something using the keys /, cm, ct, ..., it will
get you to the next found entry.
.IP "N" 14
.IX Item "N"
Find the previous file.
.IP "o\fIX\fR" 14
.IX Item "oX"
Change the sort method (like in mutt)
.IP "z\fIX\fR" 14
.IX Item "zX"
Change settings.  See the settings section for a list of settings and their
hotkey.
.IP "u\fI?\fR" 14
.IX Item "u?"
Universal undo-key.  Depending on the key that you press after \*(L"u\*(R", it either
restores closed tabs (uq), removes tags (ut), clears the copy/cut buffer (ud),
starts the reversed visual mode (uV) or clears the selection (uv).
.IP "f" 14
.IX Item "f"
Quickly navigate by entering a part of the filename.
.IP "Space" 14
.IX Item "Space"
Mark a file.
.IP "v" 14
.IX Item "v"
Toggle the mark-status of all files
.IP "V" 14
.IX Item "V"
Starts the visual mode, which selects all files between the starting point and
the cursor until you press \s-1ESC. \s0 To unselect files in the same way, use \*(L"uV\*(R".
.IP "/" 14
Search for files in the current directory.
.IP ":" 14
Open the console.
.IP "!" 14
Open the console with the content \*(L"shell \*(R" so you can quickly run commands
.IP "@" 14
Open the console with the content \*(L"shell  \f(CW%s\fR\*(R", placing the cursor before the
\&\*(L" \f(CW%s\fR\*(R" so you can quickly run commands with the current selection as the
argument.
.IP "r" 14
.IX Item "r"
Open the console with the content \*(L"open with \*(R" so you can decide which program
to use to open the current file selection.
.IP "cd" 14
.IX Item "cd"
Open the console with the content \*(L"cd \*(R"
.IP "Alt\-\fIN\fR" 14
.IX Item "Alt-N"
Open a tab. N has to be a number from 0 to 9. If the tab doesn't exist yet, it
will be created.
.IP "gn, ^N" 14
.IX Item "gn, ^N"
Create a new tab.
.IP "gt, gT" 14
.IX Item "gt, gT"
Go to the next or previous tab. You can also use \s-1TAB\s0 and \s-1SHIFT+TAB\s0 instead.
.IP "gc, ^W" 14
.IX Item "gc, ^W"
Close the current tab.  The last tab cannot be closed this way.
.IP "M" 14
.IX Item "M"
A key chain that allows you to quickly change the line mode of all the files of
the current directory.  For a more permanent solution, use the command
\&\*(L"default_linemode\*(R" in your rc.conf.
.SS "READLINE-LIKE \s-1BINDINGS IN THE CONSOLE\s0"
.IX Subsection "READLINE-LIKE BINDINGS IN THE CONSOLE"
.IP "^B, ^F" 14
.IX Item "^B, ^F"
Move left and right (B for back, F for forward)
.IP "^P, ^N" 14
.IX Item "^P, ^N"
Move up and down (P for previous, N for Next)
.IP "^A, ^E" 14
.IX Item "^A, ^E"
Move to the start or to the end
.IP "^D" 14
.IX Item "^D"
Delete the current character.
.IP "^H" 14
.IX Item "^H"
Backspace.
.SH "MOUSE BUTTONS"
.IX Header "MOUSE BUTTONS"
.IP "Left Mouse Button" 4
.IX Item "Left Mouse Button"
Click on something and you'll move there.  To run a file, \*(L"enter\*(R" it, like a
directory, by clicking on the preview.
.IP "Right Mouse Button" 4
.IX Item "Right Mouse Button"
Enter a directory or run a file.
.IP "Scroll Wheel" 4
.IX Item "Scroll Wheel"
Scrolls up or down.  You can point at the column of the parent directory while
scrolling to switch directories.
.SH "SETTINGS"
.IX Header "SETTINGS"
This section lists all built-in settings of ranger.  The valid types for the
value are in [brackets].  The hotkey to toggle the setting is in <brokets>, if
a hotkey exists.
.PP
Settings can be changed in the file \fI~/.config/ranger/rc.conf\fR or on the
fly with the command \fB:set option value\fR.  Examples:
.PP
.Vb 2
\& set column_ratios 1,2,3
\& set show_hidden true
.Ve
.PP
Toggling options can be done with:
.PP
.Vb 1
\& set show_hidden!
.Ve
.PP
The different types of settings and an example for each type:
.PP
.Vb 7
\& setting type   | example values
\& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
\& bool           | true, false
\& integer        | 1, 23, 1337
\& string         | foo, hello world
\& list           | 1,2,3,4
\& none           | none
.Ve
.PP
You can view a list of all settings and their current values by pressing \*(L"3?\*(R"
in ranger.
.IP "automatically_count_files [bool]" 4
.IX Item "automatically_count_files [bool]"
Should ranger count and display the number of files in each directory
as soon as it's visible?  This gets slow with remote file sytems.  Turning it
off will still allow you to see the number of files after entering the
directory.
.IP "autosave_bookmarks [bool]" 4
.IX Item "autosave_bookmarks [bool]"
Save bookmarks (used with mX and `X) instantly?  This helps to synchronize
bookmarks between multiple ranger instances but leads to *slight* performance
loss.  When false, bookmarks are saved when ranger is exited.
.IP "autoupdate_cumulative_size [bool]" 4
.IX Item "autoupdate_cumulative_size [bool]"
You can display the \*(L"real\*(R" cumulative size of directories by using the command
:get_cumulative_size or typing \*(L"dc\*(R".  The size is expensive to calculate and
will not be updated automatically.  You can choose to update it automatically
though by turning on this option.
.IP "cd_bookmarks [bool]" 4
.IX Item "cd_bookmarks [bool]"
Specify whether bookmarks should be included in the tab completion of the \*(L"cd\*(R"
command.
.IP "cd_tab_case [string]" 4
.IX Item "cd_tab_case [string]"
Changes case sensitivity for the \*(L"cd\*(R" command tab completion. Possible values are:
.Sp
.Vb 3
\& sensitive
\& insensitive
\& smart
.Ve
.IP "cd_tab_smart [bool]" 4
.IX Item "cd_tab_smart [bool]"
Use smart tab completion with less typing? E.g. \*(L":cd /f/b/b<tab>\*(R" yields \*(L":cd /foo/bar/baz\*(R".
.IP "clear_filters_on_dir_change [bool]" 4
.IX Item "clear_filters_on_dir_change [bool]"
If set to 'true', persistent filters would be cleared upon leaving the directory
.IP "collapse_preview [bool] <zc>" 4
.IX Item "collapse_preview [bool] <zc>"
When no preview is visible, should the last column be squeezed to make use of
the whitespace?
.IP "colorscheme [string]" 4
.IX Item "colorscheme [string]"
Which colorscheme to use?  These colorschemes are available by default:
\&\fBdefault\fR, \fBjungle\fR, \fBsnow\fR.  Snow is a monochrome scheme, jungle replaces
blue directories with green ones for better visibility on certain terminals.
.IP "column_ratios [list]" 4
.IX Item "column_ratios [list]"
How many columns are there, and what are their relative widths?  For example, a
value of 1,1,1 would mean 3 evenly sized columns. 1,1,1,1,4 means 5 columns
with the preview column being as large as the other columns combined.
.IP "confirm_on_delete [string]" 4
.IX Item "confirm_on_delete [string]"
Ask for a confirmation when running the \*(L"delete\*(R" command?  Valid values are
\&\*(L"always\*(R" (default), \*(L"never\*(R", \*(L"multiple\*(R". With \*(L"multiple\*(R", ranger will ask only
if you delete multiple files at once.
.IP "dirname_in_tabs [bool]" 4
.IX Item "dirname_in_tabs [bool]"
Display the directory name in tabs?
.IP "display_size_in_main_column [bool]" 4
.IX Item "display_size_in_main_column [bool]"
Display the file size in the main column?
.IP "display_size_in_status_bar [bool]" 4
.IX Item "display_size_in_status_bar [bool]"
Display the file size in the status bar?
.IP "display_tags_in_all_columns [bool]" 4
.IX Item "display_tags_in_all_columns [bool]"
Display tags in all columns?
.IP "draw_borders [bool]" 4
.IX Item "draw_borders [bool]"
Draw borders around columns?
.IP "draw_progress_bar_in_status_bar [bool]" 4
.IX Item "draw_progress_bar_in_status_bar [bool]"
Draw a progress bar in the status bar which displays the average state of all
currently running tasks which support progress bars?
.IP "flushinput [bool] <zi>" 4
.IX Item "flushinput [bool] <zi>"
Flush the input after each key hit?  One advantage is that when scrolling down
with \*(L"j\*(R", ranger stops scrolling instantly when you release the key.  One
disadvantage is that when you type commands blindly, some keys might get lost.
.IP "freeze_files [bool] <F>" 4
.IX Item "freeze_files [bool] <F>"
When active, directories and files will not be loaded, improving performance
when all the files you need are already loaded.  This does not affect file
previews.
.IP "hidden_filter [string]" 4
.IX Item "hidden_filter [string]"
A regular expression pattern for files which should be hidden.  For example,
this pattern will hide all files that start with a dot or end with a tilde.
.Sp
.Vb 1
\& set hidden_filter ^\e.|~$
.Ve
.IP "idle_delay [integer]" 4
.IX Item "idle_delay [integer]"
The delay that ranger idly waits for user input, in milliseconds, with a
resolution of 100ms.  Lower delay reduces lag between directory updates but
increases \s-1CPU\s0 load.
.IP "line_numbers [string]" 4
.IX Item "line_numbers [string]"
Show line numbers in main column.  Possible values are:
.Sp
.Vb 3
\& false      turn the feature off
\& absolute   absolute line numbers for use with "<N>gg"
\& relative   relative line numbers for "<N>k" or "<N>j"
.Ve
.IP "max_console_history_size [integer, none]" 4
.IX Item "max_console_history_size [integer, none]"
How many console commands should be kept in history?  \*(L"none\*(R" will disable the
limit.
.IP "max_history_size [integer, none]" 4
.IX Item "max_history_size [integer, none]"
How many directory changes should be kept in history?
.IP "metadata_deep_search [bool]" 4
.IX Item "metadata_deep_search [bool]"
When the metadata manager module looks for metadata, should it only look for a
\&\*(L".metadata.json\*(R" file in the current directory, or do a deep search and check
all directories above the current one as well?
.IP "mouse_enabled [bool] <zm>" 4
.IX Item "mouse_enabled [bool] <zm>"
Enable mouse input?
.IP "padding_right [bool]" 4
.IX Item "padding_right [bool]"
When collapse_preview is on and there is no preview, should there remain a
little padding on the right?  This allows you to click into that space to run
the file.
.IP "preview_directories [bool] <zP>" 4
.IX Item "preview_directories [bool] <zP>"
Preview directories in the preview column?
.IP "preview_files [bool] <zp>" 4
.IX Item "preview_files [bool] <zp>"
Preview files in the preview column?
.IP "preview_images [bool]" 4
.IX Item "preview_images [bool]"
Draw images inside the console with the external program w3mimgpreview?
.IP "preview_max_size [int]" 4
.IX Item "preview_max_size [int]"
Avoid previewing files that exceed a certain size, in bytes.  Use a value of 0
to disable this feature.
.IP "preview_script [string, none]" 4
.IX Item "preview_script [string, none]"
Which script should handle generating previews?  If the file doesn't exist, or
use_preview_script is off, ranger will handle previews itself by just printing
the content.
.IP "save_console_history [bool]" 4
.IX Item "save_console_history [bool]"
Should the console history be saved on exit?  If disabled, the console history
is reset when you restart ranger.
.IP "save_tabs_on_exit [bool]" 4
.IX Item "save_tabs_on_exit [bool]"
Save all tabs, except the active, on exit? The last saved tabs are restored once
when starting the next session. Multiple sessions are stored in a stack and the
oldest saved tabs are restored first.
.IP "scroll_offset [integer]" 4
.IX Item "scroll_offset [integer]"
Try to keep this much space between the top/bottom border when scrolling.
.IP "shorten_title [integer]" 4
.IX Item "shorten_title [integer]"
Trim the title of the window if it gets long?  The number defines how many
directories are displayed at once. A value of 0 turns off this feature.
.IP "show_cursor [bool]" 4
.IX Item "show_cursor [bool]"
Always show the terminal cursor?
.IP "show_hidden_bookmarks [bool]" 4
.IX Item "show_hidden_bookmarks [bool]"
Show dotfiles in the bookmark preview window? (Type ')
.IP "show_hidden [bool] <zh>, <^H>" 4
.IX Item "show_hidden [bool] <zh>, <^H>"
Show hidden files?
.IP "sort_case_insensitive [bool] <zc>" 4
.IX Item "sort_case_insensitive [bool] <zc>"
Sort case-insensitively?  If true, \*(L"a\*(R" will be listed before \*(L"B\*(R" even though
its \s-1ASCII\s0 value is higher.
.IP "sort_directories_first [bool] <zd>" 4
.IX Item "sort_directories_first [bool] <zd>"
Sort directories first?
.IP "sort_reverse [bool] <or>" 4
.IX Item "sort_reverse [bool] <or>"
Reverse the order of files?
.IP "sort_unicode [bool]" 4
.IX Item "sort_unicode [bool]"
When sorting according to some string, should the unicode characters be
compared, instead of looking at the raw character values to save time?
.IP "sort [string] <oa>, <ob>, <oc>, <oe>, <om>, <on>, <ot>, <os>, <oz>" 4
.IX Item "sort [string] <oa>, <ob>, <oc>, <oe>, <om>, <on>, <ot>, <os>, <oz>"
Which sorting mechanism should be used?  Choose one of \fBatime\fR, \fBbasename\fR,
\&\fBctime\fR, \fBextension\fR, \fBmtime\fR, \fBnatural\fR, \fBtype\fR, \fBsize\fR, \fBrandom\fR
.Sp
Note: You can reverse the order by typing an uppercase second letter in the key
combination, e.g. \*(L"oN\*(R" to sort from Z to A.
.IP "status_bar_on_top [bool]" 4
.IX Item "status_bar_on_top [bool]"
Put the status bar at the top of the window?
.IP "hostname_in_titlebar [bool]" 4
.IX Item "hostname_in_titlebar [bool]"
Show hostname in titlebar?
.IP "tilde_in_titlebar [bool]" 4
.IX Item "tilde_in_titlebar [bool]"
Abbreviate \f(CW$HOME\fR with ~ in the titlebar (first line) of ranger?
.IP "unicode_ellipsis [bool]" 4
.IX Item "unicode_ellipsis [bool]"
Use a unicode \*(L"...\*(R" character instead of \*(L"~\*(R" to mark cut-off filenames?
.IP "update_title [bool]" 4
.IX Item "update_title [bool]"
Set a window title?
.IP "update_tmux_title [bool]" 4
.IX Item "update_tmux_title [bool]"
Set the title to \*(L"ranger\*(R" in the tmux program?
.IP "use_preview_script [bool] <zv>" 4
.IX Item "use_preview_script [bool] <zv>"
Use the preview script defined in the setting \fIpreview_script\fR?
.IP "vcs_aware [bool]" 4
.IX Item "vcs_aware [bool]"
Gather and display data about version control systems. Supported vcs: git, hg.
.IP "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]" 4
.IX Item "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]"
Sets the state for the version control backend. The possible values are:
.Sp
.Vb 3
\& disabled   don\*(Aqt display any information.
\& local      display only local state.
\& enabled    display both, local and remote state. May be slow for hg and bzr.
.Ve
.IP "wrap_scroll [bool]" 4
.IX Item "wrap_scroll [bool]"
Enable scroll wrapping \- moving down while on the last item will wrap around to
the top and vice versa.
.IP "xterm_alt_key [bool]" 4
.IX Item "xterm_alt_key [bool]"
Enable this if key combinations with the Alt Key don't work for you.
(Especially on xterm)
.SH "COMMANDS"
.IX Header "COMMANDS"
You can enter the commands in the console which is opened by pressing \*(L":\*(R".
.PP
You can always get a list of the currently existing commands by typing \*(L"2?\*(R" in
ranger.  For your convenience, this is a list of the \*(L"public\*(R" commands including their parameters, excluding descriptions:
.PP
.Vb 10
\& alias [newcommand] [oldcommand]
\& bulkrename
\& cd [directory]
\& chain command1[; command2[; command3...]]
\& chmod octal_number
\& cmap key command
\& console [\-pSTARTPOSITION] command
\& copycmap key newkey [newkey2...]
\& copymap key newkey [newkey2...]
\& copypmap key newkey [newkey2...]
\& copytmap key newkey [newkey2...]
\& cunmap keys...
\& default_linemode [path=regexp | tag=tags] linemodename
\& delete
\& echo [text]
\& edit [filename]
\& eval [\-q] python_code
\& filter [string]
\& filter_inode_type [dfl]
\& find pattern
\& flat level
\& grep pattern
\& help
\& jump_non [\-FLAGS...]
\& linemode linemodename
\& load_copy_buffer
\& map key command
\& mark pattern
\& mark_tag [tags]
\& meta key value
\& mkdir dirname
\& open_with [application] [flags] [mode]
\& pmap key command
\& prompt_metadata [key1 [key2 [...]]]
\& punmap keys...
\& quit
\& quit!
\& quitall
\& quitall!
\& relink newpath
\& rename_append [\-FLAGS...]
\& rename newname
\& save_copy_buffer
\& scout [\-FLAGS...] pattern
\& search pattern
\& search_inc pattern
\& set option value
\& setintag tags option value
\& setlocal [path=<path>] option value
\& shell [\-FLAGS...] command
\& source filename
\& terminal
\& tmap key command
\& touch filename
\& travel pattern
\& tunmap keys...
\& unmap keys...
\& unmark pattern
\& unmark_tag [tags]
.Ve
.PP
There are additional commands which are directly translated to python
functions, one for every method in the ranger.core.actions.Actions class.
They are not documented here, since they are mostly for key bindings, not to be
typed in by a user.  Read the source if you are interested in them.
.PP
These are the public commands including their descriptions:
.IP "alias [\fInewcommand\fR] [\fIoldcommand\fR]" 2
.IX Item "alias [newcommand] [oldcommand]"
Copies the oldcommand as newcommand.
.IP "bulkrename" 2
.IX Item "bulkrename"
This command opens a list of selected files in an external editor.  After you
edit and save the file, it will generate a shell script which does bulk
renaming according to the changes you did in the file.
.Sp
This shell script is opened in an editor for you to review.  After you close
it, it will be executed.
.IP "cd [\fIdirectory\fR]" 2
.IX Item "cd [directory]"
The cd command changes the directory.  The command \f(CW\*(C`:cd \-\*(C'\fR is equivalent to
typing ``.
.IP "chain \fIcommand1\fR[; \fIcommand2\fR[; \fIcommand3\fR...]]" 2
.IX Item "chain command1[; command2[; command3...]]"
Combines multiple commands into one, separated by semicolons.
.IP "chmod \fIoctal_number\fR" 2
.IX Item "chmod octal_number"
Sets the permissions of the selection to the octal number.
.Sp
The octal number is between 000 and 777. The digits specify the permissions for
the user, the group and others.  A 1 permits execution, a 2 permits writing, a
4 permits reading.  Add those numbers to combine them. So a 7 permits
everything.
.Sp
Key bindings in the form of [\-+]<who><what> and <octal>= also exist.  For
example, \fB+ar\fR allows reading for everyone, \-ow forbids others to write and
777= allows everything.
.Sp
See also: man 1 chmod
.IP "cmap \fIkey\fR \fIcommand\fR" 2
.IX Item "cmap key command"
Binds keys for the console. Works like the \f(CW\*(C`map\*(C'\fR command.
.IP "console [\-p\fIN\fR] \fIcommand\fR" 2
.IX Item "console [-pN] command"
Opens the console with the command already typed in.  The cursor is placed at
\&\fIN\fR.
.IP "copycmap \fIkey\fR \fInewkey\fR [\fInewkey2\fR ...]" 2
.IX Item "copycmap key newkey [newkey2 ...]"
See \f(CW\*(C`copymap\*(C'\fR
.IP "copymap \fIkey\fR \fInewkey\fR [\fInewkey2\fR ...]" 2
.IX Item "copymap key newkey [newkey2 ...]"
Copies the keybinding \fIkey\fR to \fInewkey\fR in the \*(L"browser\*(R" context.  This is a
deep copy, so if you change the new binding (or parts of it) later, the old one
is not modified.
.Sp
To copy key bindings of the console, taskview, or pager use \*(L"copycmap\*(R",
\&\*(L"copytmap\*(R" or \*(L"copypmap\*(R".
.IP "copypmap \fIkey\fR \fInewkey\fR [\fInewkey2\fR ...]" 2
.IX Item "copypmap key newkey [newkey2 ...]"
See \f(CW\*(C`copymap\*(C'\fR
.IP "copytmap \fIkey\fR \fInewkey\fR [\fInewkey2\fR ...]" 2
.IX Item "copytmap key newkey [newkey2 ...]"
See \f(CW\*(C`copymap\*(C'\fR
.IP "cunmap [\fIkeys...\fR]" 2
.IX Item "cunmap [keys...]"
Removes key mappings of the console. Works like the \f(CW\*(C`unmap\*(C'\fR command.
.IP "default_linemode [\fIpath=regexp\fR | \fItag=tags\fR] \fIlinemodename\fR" 2
.IX Item "default_linemode [path=regexp | tag=tags] linemodename"
Sets the default linemode.  See \fIlinemode\fR command.
.Sp
Examples:
.Sp
Set the global default linemode to \*(L"permissions\*(R":
 :default_linemode permissions
.Sp
Set the default linemode to \*(L"permissions\*(R" for all files tagged with \*(L"p\*(R" or \*(L"P\*(R":
 :default_linemode tag=pP permissions
.Sp
Set the default linemode for all files in ~/books/ to \*(L"metatitle\*(R":
 :default_linemode path=/home/.*?/books/.* metatitle
.IP "delete" 2
.IX Item "delete"
Destroy all files in the selection with a roundhouse kick.  ranger will ask for
a confirmation if you attempt to delete multiple (marked) files or non-empty
directories.  This can be changed by modifying the setting \*(L"confirm_on_delete\*(R".
.IP "echo \fItext\fR" 2
.IX Item "echo text"
Display the text in the statusbar.
.IP "edit [\fIfilename\fR]" 2
.IX Item "edit [filename]"
Edit the current file or the file in the argument.
.IP "eval [\fI\-q\fR] \fIpython_code\fR" 2
.IX Item "eval [-q] python_code"
Evaluates the python code.  `fm' is a reference to the \s-1FM\s0 instance.  To display
text, use the function `p'.  The result is displayed on the screen unless you
use the \*(L"\-q\*(R" option.
.Sp
Examples:
 :eval fm
 :eval len(fm.tabs)
 :eval p(\*(L"Hello World!\*(R")
.IP "filter [\fIstring\fR]" 2
.IX Item "filter [string]"
Displays only the files which contain the \fIstring\fR in their basename.  Running
this command without any parameter will reset the filter.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "filter_inode_type [dfl]" 2
.IX Item "filter_inode_type [dfl]"
Displays only the files of specified inode type. To display only directories,
use the 'd' parameter. To display only files, use the 'f' parameter. To display
only links, use the 'l' parameter. Parameters can be combined. To remove this
filter, use no parameter.
.IP "find \fIpattern\fR" 2
.IX Item "find pattern"
Search files in the current directory that contain the given (case-insensitive)
string in their name as you type.  Once there is an unambiguous result, it will
be run immediately. (Or entered, if it's a directory.)
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "flat level" 2
.IX Item "flat level"
Flattens the directory view up to the specified level. Level \-1 means infinite
level. Level 0 means standard view without flattened directory view. Level
values \-2 and less are invalid.
.IP "grep \fIpattern\fR" 2
.IX Item "grep pattern"
Looks for a string in all marked files or directories.
.IP "help" 2
.IX Item "help"
Provides a quick way to view ranger documentations.
.IP "jump_non [\-\fIflags\fR...]" 2
.IX Item "jump_non [-flags...]"
Jumps to first non-directory if highlighted file is a directory and vice versa.
.Sp
Flags:
 \-r    Jump in reverse order
 \-w    Wrap around if reaching end of filelist
.IP "linemode \fIlinemodename\fR" 2
.IX Item "linemode linemodename"
Sets the linemode of all files in the current directory.  The linemode may be:
.Sp
.Vb 6
\& "filename": display each line as "<basename>...<size>"
\& "fileinfo": display each line as "<basename>...<file(1) output>"
\& "permissions": display each line as "<permissions> <owner> <group> <basename>"
\& "metatitle": display metadata from .metadata.json files if
\&     available, fall back to the "filename" linemode if no
\&     metadata was found.  See :meta command.
.Ve
.Sp
The custom linemodes may be added by subclassing the \fILinemodeBase\fR class.
See the \fIranger.core.linemode\fR module for some examples.
.IP "load_copy_buffer" 2
.IX Item "load_copy_buffer"
Load the copy buffer from \fI~/.config/ranger/copy_buffer\fR.  This can be used to
pass the list of copied files to another ranger instance.
.IP "map \fIkey\fR \fIcommand\fR" 2
.IX Item "map key command"
Assign the key combination to the given command.  Whenever you type the
key/keys, the command will be executed.  Additionally, if you use a quantifier
when typing the key, like 5j, it will be passed to the command as the attribute
\&\*(L"self.quantifier\*(R".
.Sp
The keys you bind with this command are accessible in the file browser only,
not in the console, task view or pager.  To bind keys there, use the commands
\&\*(L"cmap\*(R", \*(L"tmap\*(R" or \*(L"pmap\*(R".
.IP "mark \fIpattern\fR" 2
.IX Item "mark pattern"
Mark all files matching the regular expression pattern.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "mark_tag [\fItags\fR]" 2
.IX Item "mark_tag [tags]"
Mark all tags that are tagged with either of the given tags.  When leaving out
the tag argument, all tagged files are marked.
.IP "meta \fIkey\fR \fIvalue\fR" 2
.IX Item "meta key value"
Set the metadata of the currently highlighted file.  Example:
.Sp
.Vb 2
\& :meta title The Hitchhiker\*(Aqs Guide to the Galaxy
\& :meta year 1979
.Ve
.Sp
This metadata can be displayed by, for example, using the \*(L"metatitle\*(R" line mode
by typing Mt.
.IP "mkdir \fIdirname\fR" 2
.IX Item "mkdir dirname"
Creates a directory with the name \fIdirname\fR.
.IP "open_with [\fIapplication\fR] [\fIflags\fR] [\fImode\fR]" 2
.IX Item "open_with [application] [flags] [mode]"
Open the selected files with the given application, unless it is omitted, in
which case the default application is used.  \fIflags\fR change the way the
application is executed and are described in their own section in this man
page.  The \fImode\fR is a number that specifies which application to use.  The list
of applications is generated by the external file opener \*(L"rifle\*(R" and can be
displayed when pressing \*(L"r\*(R" in ranger.
.Sp
Note that if you specify an application, the mode is ignored.
.IP "pmap \fIkey\fR \fIcommand\fR" 2
.IX Item "pmap key command"
Binds keys for the pager. Works like the \f(CW\*(C`map\*(C'\fR command.
.IP "prompt_metadata [\fIkeys ...\fR]" 2
.IX Item "prompt_metadata [keys ...]"
Prompt the user to input metadata with the \f(CW\*(C`meta\*(C'\fR command for multiple keys in
a row.
.IP "punmap [\fIkeys ...\fR]" 2
.IX Item "punmap [keys ...]"
Removes key mappings of the pager. Works like the \f(CW\*(C`unmap\*(C'\fR command.
.IP "quit" 2
.IX Item "quit"
Closes the current tab, if there's only one tab. Otherwise quits if there are no tasks in progress.
The current directory will be bookmarked as ' so you can re-enter it by typing `` or '' the next time you
start ranger.
.IP "quit!" 2
.IX Item "quit!"
Like \f(CW\*(C`quit\*(C'\fR, except will force quit even if tasks are in progress.
.IP "quitall" 2
.IX Item "quitall"
Like \f(CW\*(C`quit\*(C'\fR, except will quit even if multiple tabs are open.
.IP "quitall!" 2
.IX Item "quitall!"
Like \f(CW\*(C`quitall\*(C'\fR, except will force quit even if tasks are in progress.
.IP "relink \fInewpath\fR" 2
.IX Item "relink newpath"
Change the link destination of the current symlink file to <newpath>. First
<tab> will load the original link.
.IP "rename \fInewname\fR" 2
.IX Item "rename newname"
Rename the current file.  If a file with that name already exists, the renaming
will fail.  Also try the key binding A for appending something to a file name.
.IP "rename_append [\-\fIflags\fR...]" 2
.IX Item "rename_append [-flags...]"
Opens the console with \*(L":rename <current file>\*(R" with the cursor positioned
before the file extension.
.Sp
Flags:
 \-a    Position before all extensions
 \-r    Remove everything before extensions
.IP "save_copy_buffer" 2
.IX Item "save_copy_buffer"
Save the copy buffer to \fI~/.config/ranger/copy_buffer\fR.  This can be used to
pass the list of copied files to another ranger instance.
.IP "scout [\-\fIflags\fR...] [\-\-] \fIpattern\fR" 2
.IX Item "scout [-flags...] [--] pattern"
Swiss army knife command for searching, traveling and filtering files.
.Sp
Flags:
 \-a    Automatically open a file on unambiguous match
 \-e    Open the selected file when pressing enter
 \-f    Filter files that match the current search pattern
 \-g    Interpret pattern as a glob pattern
 \-i    Ignore the letter case of the files
 \-k    Keep the console open when changing a directory with the command
 \-l    Letter skipping; e.g. allow \*(L"rdme\*(R" to match the file \*(L"readme\*(R"
 \-m    Mark the matching files after pressing enter
 \-M    Unmark the matching files after pressing enter
 \-p    Permanent filter: hide non-matching files after pressing enter
 \-r    Interpret pattern as a regular expression pattern
 \-s    Smart case; like \-i unless pattern contains upper case letters
 \-t    Apply filter and search pattern as you type
 \-v    Inverts the match
.Sp
Multiple flags can be combined.  For example, \*(L":scout \-gpt\*(R" would create
a :filter\-like command using globbing.
.IP "search \fIpattern\fR" 2
.IX Item "search pattern"
Search files in the current directory that match the given (case insensitive)
regular expression pattern.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "search_inc \fIpattern\fR" 2
.IX Item "search_inc pattern"
Search files in the current directory that match the given (case insensitive)
regular expression pattern.  This command gets you to matching files as you
type.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "set \fIoption\fR \fIvalue\fR" 2
.IX Item "set option value"
Assigns a new value to an option.  Valid options are listed in the settings
section.  Use tab completion to get the current value of an option, though this
doesn't work for functions and regular expressions. Valid values are:
.Sp
.Vb 7
\& setting type   | example values
\& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
\& bool           | true, false
\& integer        | 1, 23, 1337
\& string         | foo, hello world
\& list           | 1,2,3,4
\& none           | none
.Ve
.IP "setintag \fItags\fR \fIoption\fR \fIvalue\fR" 2
.IX Item "setintag tags option value"
Assigns a new value to an option, but locally for the directories that are
marked with \fItag\fR.  This means, that this option only takes effect when
visiting that directory.
.Sp
For example, to change the sorting order in your downloads directory, tag it
with the \fIv\fR tag by typing \fI"v\fR, then use this command:
.Sp
.Vb 1
\& setintag v sort ctime
.Ve
.IP "setlocal [path=\fIpath\fR] \fIoption\fR \fIvalue\fR" 2
.IX Item "setlocal [path=path] option value"
Assigns a new value to an option, but locally for the directory given by
\&\fIpath\fR. This means, that this option only takes effect when visiting that
directory. If no path is given, uses the current directory.
.Sp
\&\fIpath\fR is a regular expression.  This means that \f(CW\*(C`path=~/dl\*(C'\fR applies to all
paths that start with \fI~/dl\fR, e.g. \fI~/dl2\fR and \fI~/dl/foo\fR. To avoid this,
use \f(CW\*(C`path=~/dl$\*(C'\fR.
.Sp
\&\fIpath\fR can be quoted with either single or double quotes to prevent unwanted
splitting. \fIpath='~/dl dl$'\fR or \fIpath=\*(L"~/dl dl$\*(R"\fR
.IP "shell [\-\fIflags\fR] \fIcommand\fR" 2
.IX Item "shell [-flags] command"
Run a shell command.  \fIflags\fR are discussed in their own section.
.IP "source \fIfilename\fR" 2
.IX Item "source filename"
Reads commands from a file and executes them in the ranger console.
.Sp
This can be used to re-evaluate the rc.conf file after changing it:
.Sp
.Vb 1
\& map X chain shell vim \-p %confdir/rc.conf %rangerdir/config/rc.conf; source %confdir/rc.conf
.Ve
.IP "terminal" 2
.IX Item "terminal"
Spawns the \fIx\-terminal-emulator\fR starting in the current directory.
.IP "tmap \fIkey\fR \fIcommand\fR" 2
.IX Item "tmap key command"
Binds keys for the taskview. Works like the \f(CW\*(C`map\*(C'\fR command.
.IP "touch \fIfilename\fR" 2
.IX Item "touch filename"
Creates an empty file with the name \fIfilename\fR, unless it already exists.
.IP "travel \fIpattern\fR" 2
.IX Item "travel pattern"
Filters the current directory for files containing the letters in the
string, possibly with other letters in between.  The filter is applied as
you type.  When only one directory is left, it is entered and the console
is automatically reopened, allowing for fast travel.
To close the console, press \s-1ESC\s0 or execute a file.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "tunmap [\fIkeys ...\fR]" 2
.IX Item "tunmap [keys ...]"
Removes key mappings of the taskview. Works like the \f(CW\*(C`unmap\*(C'\fR command.
.IP "unmap [\fIkeys\fR ...]" 2
.IX Item "unmap [keys ...]"
Removes the given key mappings in the \*(L"browser\*(R" context.  To unmap key bindings
in the console, taskview, or pager use \*(L"cunmap\*(R", \*(L"tunmap\*(R" or \*(L"punmap\*(R".
.IP "unmark \fIpattern\fR" 2
.IX Item "unmark pattern"
Unmark all files matching a regular expression pattern.
.Sp
This command is based on the \fIscout\fR command and supports all of its options.
.IP "unmark_tag [\fItags\fR]" 2
.IX Item "unmark_tag [tags]"
Unmark all tags that are tagged with either of the given tags.  When leaving
out the tag argument, all tagged files are unmarked.
.SH "FILES"
.IX Header "FILES"
ranger reads several configuration files which are located in
\&\fI\f(CI$HOME\fI/.config/ranger\fR or \fI\f(CI$XDG_CONFIG_HOME\fI/ranger\fR if \f(CW$XDG_CONFIG_HOME\fR is
defined.  You can use the \-\-copy\-config option to obtain the default
configuration files.  The files contain further documentation.
.PP
\&\fIrc.conf\fR, \fIcommands.py\fR and \fIcolorschemes\fR do not need to be copied fully
as they will only be adding to the default configuration files except if explicitly
overridden. This may lead to some confusing situations, for example when a key is
being bound despite the corresponding line being removed from the user's copy of
the configuration file. This behavior may be disabled with an environment
variable (see also: \fB\s-1ENVIRONMENT\s0\fR). Note: All other configuration files only
read from one source; i.e. default \s-1OR\s0 user, not both.
.PP
When starting ranger with the \fB\-\-clean\fR option, it will not access or create
any of these files.
.SS "\s-1CONFIGURATION\s0"
.IX Subsection "CONFIGURATION"
.IP "rc.conf" 10
.IX Item "rc.conf"
Contains a list of commands which are executed on startup.  Mostly key bindings
and settings are defined here.
.IP "commands.py" 10
.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.  Note that you can define commands in the
same manner within plugins.
.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".
.IP "scope.sh" 10
.IX Item "scope.sh"
This is a script that handles file previews.  When the options
\&\fIuse_preview_script\fR and \fIpreview_files\fR are set, the program specified in
the option \fIpreview_script\fR is run and its output and/or exit code determines
rangers reaction.
.IP "colorschemes/" 10
.IX Item "colorschemes/"
Colorschemes can be placed here.
.IP "plugins/" 10
.IX Item "plugins/"
Plugins can be placed here.
.SS "\s-1STORAGE\s0"
.IX Subsection "STORAGE"
.IP "bookmarks" 10
.IX Item "bookmarks"
This file contains a list of bookmarks.  The syntax is /^(.):(.*)$/. The first
character is the bookmark key and the rest after the colon is the path to the
file.  In ranger, bookmarks can be set by typing m<key>, accessed by typing
\&'<key> and deleted by typing um<key>.
.IP "copy_buffer" 10
.IX Item "copy_buffer"
When running the command :save_copy_buffer, the paths of all currently copied
files are saved in this file.  You can later run :load_copy_buffer to copy the
same files again, pass them to another ranger instance or process them in a
script.
.IP "history" 10
.IX Item "history"
Contains a list of commands that have been previously typed in.
.IP "tagged" 10
.IX Item "tagged"
Contains a list of tagged files. The syntax is /^(.:)?(.*)$/ where the first
letter is the optional name of the tag and the rest after the optional colon is
the path to the file.  In ranger, tags can be set by pressing t and removed
with T.  To assign a named tag, type "<tagname>.
.SH "ENVIRONMENT"
.IX Header "ENVIRONMENT"
These environment variables have an effect on ranger:
.IP "\s-1RANGER_LEVEL\s0" 8
.IX Item "RANGER_LEVEL"
ranger sets this environment variable to \*(L"1\*(R" or increments it if it already
exists.  External programs can determine whether they were spawned from ranger
by checking for this variable.
.IP "\s-1RANGER_LOAD_DEFAULT_RC\s0" 8
.IX Item "RANGER_LOAD_DEFAULT_RC"
If this variable is set to \s-1FALSE,\s0 ranger will not load the default rc.conf.
This can save time if you copied the whole rc.conf to ~/.config/ranger/ and
don't need the default one at all.
.IP "\s-1EDITOR\s0" 8
.IX Item "EDITOR"
Defines the editor to be used for the \*(L"E\*(R" key.  Defaults to \*(L"nano\*(R".
.IP "\s-1SHELL\s0" 8
.IX Item "SHELL"
Defines the shell that ranger is going to use with the :shell command and
the \*(L"S\*(R" key.  Defaults to \*(L"/bin/sh\*(R".
.IP "\s-1TERMCMD\s0" 8
.IX Item "TERMCMD"
Defines the terminal emulator command that ranger is going to use with the
:terminal command and the \*(L"t\*(R" run flag.  Defaults to \*(L"xterm\*(R".
.IP "\s-1XDG_CONFIG_HOME\s0" 8
.IX Item "XDG_CONFIG_HOME"
Specifies the directory for configuration files. Defaults to \fI\f(CI$HOME\fI/.config\fR.
.IP "\s-1PYTHONOPTIMIZE\s0" 8
.IX Item "PYTHONOPTIMIZE"
This variable determines the optimize level of python.
.Sp
Using PYTHONOPTIMIZE=1 (like python \-O) will make python discard assertion
statements.  You will gain efficiency at the cost of losing some debug info.
.Sp
Using PYTHONOPTIMIZE=2 (like python \-OO) will additionally discard any
docstrings.  Using this will disable the <F1> key on commands.
.IP "W3MIMGDISPLAY_PATH" 8
.IX Item "W3MIMGDISPLAY_PATH"
By changing this variable, you can change the path of the executable file for
image previews.  By default, it is set to \fI/usr/lib/w3m/w3mimgdisplay\fR.
.SH "EXAMPLES"
.IX Header "EXAMPLES"
There are various examples on how to extend ranger with plugins or combine
ranger with other programs.  These can be found in the
\&\fI/usr/share/doc/ranger/examples/\fR directory, or the \fIdoc/ranger/\fR that is
provided along with the source code.
.SH "LICENSE"
.IX Header "LICENSE"
\&\s-1GNU\s0 General Public License 3 or (at your option) any later version.
.SH "LINKS"
.IX Header "LINKS"
.IP "Download: <http://ranger.nongnu.org/ranger\-stable.tar.gz>" 4
.IX Item "Download: <http://ranger.nongnu.org/ranger-stable.tar.gz>"
.PD 0
.IP "The project page: <http://ranger.nongnu.org/>" 4
.IX Item "The project page: <http://ranger.nongnu.org/>"
.IP "The mailing list: <http://savannah.nongnu.org/mail/?group=ranger>" 4
.IX Item "The mailing list: <http://savannah.nongnu.org/mail/?group=ranger>"
.IP "\s-1IRC\s0 channel: #ranger on freenode.net" 4
.IX Item "IRC channel: #ranger on freenode.net"
.PD
.PP
ranger is maintained with the git version control system.  To fetch a fresh
copy, run:
.PP
.Vb 1
\& git clone git://git.savannah.nongnu.org/ranger.git
.Ve
.SH "SEE ALSO"
.IX Header "SEE ALSO"
\&\fIrifle\fR\|(1)
.SH "BUGS"
.IX Header "BUGS"
Report bugs here: <https://github.com/ranger/ranger/issues>
.PP
Please include as much relevant information as possible.  For the most
diagnostic output, run ranger like this: \f(CW\*(C`PYTHONOPTIMIZE= ranger \-\-debug\*(C'\fR