File: doc.go

package info (click to toggle)
lf 28-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 640 kB
  • sloc: sh: 129; makefile: 22; csh: 4
file content (1588 lines) | stat: -rw-r--r-- 59,775 bytes parent folder | download
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
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
//go:generate gen/docstring.sh
//go:generate gen/man.sh

/*
lf is a terminal file manager.

Source code can be found in the repository at https://github.com/gokcehan/lf

This documentation can either be read from terminal using 'lf -doc' or online at https://pkg.go.dev/github.com/gokcehan/lf
You can also use 'doc' command (default '<f-1>') inside lf to view the documentation in a pager.
A man page with the same content is also available in the repository at https://github.com/gokcehan/lf/blob/master/lf.1

You can run 'lf -help' to see descriptions of command line options.

# Quick Reference

The following commands are provided by lf:

	quit                     (default 'q')
	up                       (default 'k' and '<up>')
	half-up                  (default '<c-u>')
	page-up                  (default '<c-b>' and '<pgup>')
	scroll-up                (default '<c-y>')
	down                     (default 'j' and '<down>')
	half-down                (default '<c-d>')
	page-down                (default '<c-f>' and '<pgdn>')
	scroll-down              (default '<c-e>')
	updir                    (default 'h' and '<left>')
	open                     (default 'l' and '<right>')
	jump-next                (default ']')
	jump-prev                (default '[')
	top                      (default 'gg' and '<home>')
	bottom                   (default 'G' and '<end>')
	high                     (default 'H')
	middle                   (default 'M')
	low                      (default 'L')
	toggle
	invert                   (default 'v')
	unselect                 (default 'u')
	glob-select
	glob-unselect
	calcdirsize
	copy                     (default 'y')
	cut                      (default 'd')
	paste                    (default 'p')
	clear                    (default 'c')
	sync
	draw
	redraw                   (default '<c-l>')
	load
	reload                   (default '<c-r>')
	echo
	echomsg
	echoerr
	cd
	select
	delete         (modal)
	rename         (modal)   (default 'r')
	source
	push
	read           (modal)   (default ':')
	shell          (modal)   (default '$')
	shell-pipe     (modal)   (default '%')
	shell-wait     (modal)   (default '!')
	shell-async    (modal)   (default '&')
	find           (modal)   (default 'f')
	find-back      (modal)   (default 'F')
	find-next                (default ';')
	find-prev                (default ',')
	search         (modal)   (default '/')
	search-back    (modal)   (default '?')
	search-next              (default 'n')
	search-prev              (default 'N')
	filter         (modal)
	setfilter
	mark-save      (modal)   (default 'm')
	mark-load      (modal)   (default "'")
	mark-remove    (modal)   (default '"')
	tag
	tag-toggle               (default 't')

The following command line commands are provided by lf:

	cmd-escape               (default '<esc>')
	cmd-complete             (default '<tab>')
	cmd-menu-complete
	cmd-menu-complete-back
	cmd-menu-accept
	cmd-enter                (default '<c-j>' and '<enter>')
	cmd-interrupt            (default '<c-c>')
	cmd-history-next         (default '<c-n>')
	cmd-history-prev         (default '<c-p>')
	cmd-left                 (default '<c-b>' and '<left>')
	cmd-right                (default '<c-f>' and '<right>')
	cmd-home                 (default '<c-a>' and '<home>')
	cmd-end                  (default '<c-e>' and '<end>')
	cmd-delete               (default '<c-d>' and '<delete>')
	cmd-delete-back          (default '<backspace>' and '<backspace2>')
	cmd-delete-home          (default '<c-u>')
	cmd-delete-end           (default '<c-k>')
	cmd-delete-unix-word     (default '<c-w>')
	cmd-yank                 (default '<c-y>')
	cmd-transpose            (default '<c-t>')
	cmd-transpose-word       (default '<a-t>')
	cmd-word                 (default '<a-f>')
	cmd-word-back            (default '<a-b>')
	cmd-delete-word          (default '<a-d>')
	cmd-capitalize-word      (default '<a-c>')
	cmd-uppercase-word       (default '<a-u>')
	cmd-lowercase-word       (default '<a-l>')

The following options can be used to customize the behavior of lf:

	anchorfind     bool      (default on)
	autoquit       bool      (default off)
	cleaner        string    (default '')
	dircache       bool      (default on)
	dircounts      bool      (default off)
	dirfirst       bool      (default on)
	dironly        bool      (default off)
	dirpreviews    bool      (default off)
	drawbox        bool      (default off)
	errorfmt       string    (default "\033[7;31;47m%s\033[0m")
	filesep        string    (default "\n")
	findlen        int       (default 1)
	globsearch     bool      (default off)
	hidden         bool      (default off)
	hiddenfiles    []string  (default '.*')
	history        bool      (default on)
	icons          bool      (default off)
	ifs            string    (default '')
	ignorecase     bool      (default on)
	ignoredia      bool      (default on)
	incfilter      bool      (default off)
	incsearch      bool      (default off)
	info           []string  (default '')
	infotimefmtnew string    (default 'Jan _2 15:04')
	infotimefmtold string    (default 'Jan _2  2006')
	mouse          bool      (default off)
	number         bool      (default off)
	period         int       (default 0)
	preview        bool      (default on)
	previewer      string    (default '')
	promptfmt      string    (default "\033[32;1m%u@%h\033[0m:\033[34;1m%d\033[0m\033[1m%f\033[0m")
	ratios         []int     (default '1:2:3')
	relativenumber bool      (default off)
	reverse        bool      (default off)
	scrolloff      int       (default 0)
	selmode        string    (default 'all')
	shell          string    (default 'sh' for Unix and 'cmd' for Windows)
	shellflag      string    (default '-c' for Unix and '/c' for Windows)
	shellopts      []string  (default '')
	smartcase      bool      (default on)
	smartdia       bool      (default off)
	sortby         string    (default 'natural')
	tabstop        int       (default 8)
	tagfmt         string    (default "\033[31m%s\033[0m")
	tempmarks      string    (default '')
	timefmt        string    (default 'Mon Jan _2 15:04:05 2006')
	truncatechar   string    (default '~')
	waitmsg        string    (default 'Press any key to continue')
	wrapscan       bool      (default on)
	wrapscroll     bool      (default off)
	user_{option}  string    (default none)

The following environment variables are exported for shell commands:

	f
	fs
	fx
	id
	PWD
	OLDPWD
	LF_LEVEL
	OPENER
	EDITOR
	PAGER
	SHELL
	lf_{option}
	lf_user_{option}
	lf_width
	lf_height

The following special shell commands are used to customize the behavior of lf when defined:

	open
	paste
	rename
	delete
	pre-cd
	on-cd
	on-select
	on-quit

The following commands/keybindings are provided by default:

	Unix                     Windows
	cmd open &$OPENER "$f"   cmd open &%OPENER% %f%
	map e $$EDITOR "$f"      map e $%EDITOR% %f%
	map i $$PAGER "$f"       map i !%PAGER% %f%
	map w $$SHELL            map w $%SHELL%

The following additional keybindings are provided by default:

	map zh set hidden!
	map zr set reverse!
	map zn set info
	map zs set info size
	map zt set info time
	map za set info size:time
	map sn :set sortby natural; set info
	map ss :set sortby size; set info size
	map st :set sortby time; set info time
	map sa :set sortby atime; set info atime
	map sc :set sortby ctime; set info ctime
	map se :set sortby ext; set info
	map gh cd ~
	map <space> :toggle; down

If the 'mouse' option is enabled, mouse buttons have the following default effects:

	Left mouse button
	    Click on a file or directory to select it.

	Right mouse button
	    Enter a directory or open a file. Also works on the preview window.

	Scroll wheel
	    Scroll up or down.

# Configuration

Configuration files should be located at:

	OS       system-wide               user-specific
	Unix     /etc/lf/lfrc              ~/.config/lf/lfrc
	Windows  C:\ProgramData\lf\lfrc    C:\Users\<user>\AppData\Local\lf\lfrc

Colors file should be located at:

	OS       system-wide               user-specific
	Unix     /etc/lf/colors            ~/.config/lf/colors
	Windows  C:\ProgramData\lf\colors  C:\Users\<user>\AppData\Local\lf\colors

Icons file should be located at:

	OS       system-wide               user-specific
	Unix     /etc/lf/icons             ~/.config/lf/icons
	Windows  C:\ProgramData\lf\icons   C:\Users\<user>\AppData\Local\lf\icons

Selection file should be located at:

	Unix     ~/.local/share/lf/files
	Windows  C:\Users\<user>\AppData\Local\lf\files

Marks file should be located at:

	Unix     ~/.local/share/lf/marks
	Windows  C:\Users\<user>\AppData\Local\lf\marks

Tags file should be located at:

	Unix     ~/.local/share/lf/tags
	Windows  C:\Users\<user>\AppData\Local\lf\tags

History file should be located at:

	Unix     ~/.local/share/lf/history
	Windows  C:\Users\<user>\AppData\Local\lf\history

You can configure the default values of following variables to change these locations:

	$XDG_CONFIG_HOME  ~/.config
	$XDG_DATA_HOME    ~/.local/share
	%ProgramData%     C:\ProgramData
	%LOCALAPPDATA%    C:\Users\<user>\AppData\Local

A sample configuration file can be found at
https://github.com/gokcehan/lf/blob/master/etc/lfrc.example

# Commands

This section shows information about builtin commands.
Modal commands do not take any arguments, but instead change the operation mode to read their input conveniently, and so they are meant to be assigned to keybindings.

	quit                     (default 'q')

Quit lf and return to the shell.

	up                       (default 'k' and '<up>')
	half-up                  (default '<c-u>')
	page-up                  (default '<c-b>' and '<pgup>')
	scroll-up                (default '<c-y>')
	down                     (default 'j' and '<down>')
	half-down                (default '<c-d>')
	page-down                (default '<c-f>' and '<pgdn>')
	scroll-down              (default '<c-e>')

Move/scroll the current file selection upwards/downwards by one/half a page/full page.

	updir                    (default 'h' and '<left>')

Change the current working directory to the parent directory.

	open                     (default 'l' and '<right>')

If the current file is a directory, then change the current directory to it, otherwise, execute the 'open' command.
A default 'open' command is provided to call the default system opener asynchronously with the current file as the argument.
A custom 'open' command can be defined to override this default.

	jump-next                (default ']')
	jump-prev                (default '[')

Change the current working directory to the next/previous jumplist item.

	top                      (default 'gg' and '<home>')
	bottom                   (default 'G' and '<end>')

Move the current file selection to the top/bottom of the directory.

	high                     (default 'H')
	middle                   (default 'M')
	low                      (default 'L')

Move the current file selection to the high/middle/low of the screen.

	toggle

Toggle the selection of the current file or files given as arguments.

	invert                   (default 'v')

Reverse the selection of all files in the current directory (i.e. 'toggle' all files).
Selections in other directories are not effected by this command.
You can define a new command to select all files in the directory by combining 'invert' with 'unselect' (i.e. 'cmd select-all :unselect; invert'), though this will also remove selections in other directories.

	unselect                 (default 'u')

Remove the selection of all files in all directories.

	glob-select
	glob-unselect

Select/unselect files that match the given glob.

	calcdirsize

Calculate the total size for each of the selected directories.
Option 'info' should include 'size' and option 'dircounts' should be disabled to show this size.
If the total size of a directory is not calculated, it will be shown as '-'.

	copy                     (default 'y')

If there are no selections, save the path of the current file to the copy buffer, otherwise, copy the paths of selected files.

	cut                      (default 'd')

If there are no selections, save the path of the current file to the cut buffer, otherwise, copy the paths of selected files.

	paste                    (default 'p')

Copy/Move files in copy/cut buffer to the current working directory.
A custom 'paste' command can be defined to override this default.

	clear                    (default 'c')

Clear file paths in copy/cut buffer.

	sync

Synchronize copied/cut files with server.
This command is automatically called when required.

	draw

Draw the screen.
This command is automatically called when required.

	redraw                   (default '<c-l>')

Synchronize the terminal and redraw the screen.

	load

Load modified files and directories.
This command is automatically called when required.

	reload                   (default '<c-r>')

Flush the cache and reload all files and directories.

	echo

Print given arguments to the message line at the bottom.

	echomsg

Print given arguments to the message line at the bottom and also to the log file.

	echoerr

Print given arguments to the message line at the bottom as 'errorfmt' and also to the log file.

	cd

Change the working directory to the given argument.

	select

Change the current file selection to the given argument.

	delete         (modal)

Remove the current file or selected file(s).
A custom 'delete' command can be defined to override this default.

	rename         (modal)   (default 'r')

Rename the current file using the builtin method.
A custom 'rename' command can be defined to override this default.

	source

Read the configuration file given in the argument.

	push

Simulate key pushes given in the argument.

	read           (modal)   (default ':')

Read a command to evaluate.

	shell          (modal)   (default '$')

Read a shell command to execute.

	shell-pipe     (modal)   (default '%')

Read a shell command to execute piping its standard I/O to the bottom statline.

	shell-wait     (modal)   (default '!')

Read a shell command to execute and wait for a key press in the end.

	shell-async    (modal)   (default '&')

Read a shell command to execute asynchronously without standard I/O.

	find           (modal)   (default 'f')
	find-back      (modal)   (default 'F')
	find-next                (default ';')
	find-prev                (default ',')

Read key(s) to find the appropriate file name match in the forward/backward direction and jump to the next/previous match.

	search                   (default '/')
	search-back              (default '?')
	search-next              (default 'n')
	search-prev              (default 'N')

Read a pattern to search for a file name match in the forward/backward direction and jump to the next/previous match.

	filter         (modal)
	setfilter

Command 'filter' reads a pattern to filter out and only view files matching the pattern.
Command 'setfilter' does the same but uses an argument to set the filter immediately.
You can supply an argument to 'filter', in order to use that as the starting prompt.

	mark-save      (modal)   (default 'm')

Save the current directory as a bookmark assigned to the given key.

	mark-load      (modal)   (default "'")

Change the current directory to the bookmark assigned to the given key.
A special bookmark "'" holds the previous directory after a 'mark-load', 'cd', or 'select' command.

	mark-remove    (modal)   (default '"')

Remove a bookmark assigned to the given key.

	tag

Tag a file with '*' or a single width character given in the argument.
You can define a new tag clearing command by combining 'tag' with 'tag-toggle' (i.e. 'cmd tag-clear :tag; tag-toggle').

	tag-toggle               (default 't')

Tag a file with '*' or a single width character given in the argument if the file is untagged, otherwise remove the tag.

# Command Line Commands

The prompt character specifies which of the several command-line modes you are in.
For example, the 'read' command takes you to the ':' mode.

When the cursor is at the first character in ':' mode, pressing one of the keys '!', '$', '%', or '&' takes you to the corresponding mode.
You can go back with 'cmd-delete-back' ('<backspace>' by default).

The command line commands should be mostly compatible with readline keybindings.
A character refers to a unicode code point, a word consists of letters and digits, and a unix word consists of any non-blank characters.

	cmd-escape               (default '<esc>')

Quit command line mode and return to normal mode.

	cmd-complete             (default '<tab>')

Autocomplete the current word.

	cmd-menu-complete
	cmd-menu-complete-back

Autocomplete the current word with menu selection.
You need to assign keys to these commands (e.g. 'cmap <tab> cmd-menu-complete; cmap <backtab> cmd-menu-complete-back').
You can use the assigned keys assigned to display the menu and then cycle through completion options.

	cmd-menu-accept

Accept the currently selected match in menu completion and close the menu.

	cmd-enter                (default '<c-j>' and '<enter>')

Execute the current line.

	cmd-interrupt            (default '<c-c>')

Interrupt the current shell-pipe command and return to the normal mode.

	cmd-history-next         (default '<c-n>')
	cmd-history-prev         (default '<c-p>')

Go to next/previous item in the history.

	cmd-left                 (default '<c-b>' and '<left>')
	cmd-right                (default '<c-f>' and '<right>')

Move the cursor to the left/right.

	cmd-home                 (default '<c-a>' and '<home>')
	cmd-end                  (default '<c-e>' and '<end>')

Move the cursor to the beginning/end of line.

	cmd-delete               (default '<c-d>' and '<delete>')

Delete the next character.

	cmd-delete-back          (default '<backspace>' and '<backspace2>')

Delete the previous character.
When at the beginning of a prompt, returns either to normal mode or to ':' mode.

	cmd-delete-home          (default '<c-u>')
	cmd-delete-end           (default '<c-k>')

Delete everything up to the beginning/end of line.

	cmd-delete-unix-word     (default '<c-w>')

Delete the previous unix word.

	cmd-yank                 (default '<c-y>')

Paste the buffer content containing the last deleted item.

	cmd-transpose            (default '<c-t>')
	cmd-transpose-word       (default '<a-t>')

Transpose the positions of last two characters/words.

	cmd-word                 (default '<a-f>')
	cmd-word-back            (default '<a-b>')

Move the cursor by one word in forward/backward direction.

	cmd-delete-word          (default '<a-d>')

Delete the next word in forward direction.

	cmd-capitalize-word      (default '<a-c>')
	cmd-uppercase-word       (default '<a-u>')
	cmd-lowercase-word       (default '<a-l>')

Capitalize/uppercase/lowercase the current word and jump to the next word.

# Options

This section shows information about options to customize the behavior.
Character ':' is used as the separator for list options '[]int' and '[]string'.

	anchorfind     bool      (default on)

When this option is enabled, find command starts matching patterns from the beginning of file names, otherwise, it can match at an arbitrary position.

	autoquit       bool      (default off)

Automatically quit server when there are no clients left connected.

	cleaner        string    (default '') (not called if empty)

Set the path of a cleaner file.
The file should be executable.
This file is called if previewing is enabled, the previewer is set, and the previously selected file had its preview cache disabled.
Five arguments are passed to the file, (1) current file name, (2) width, (3) height, (4) horizontal position, and (5) vertical position of preview pane respectively.
Preview clearing is disabled when the value of this option is left empty.

	dircache       bool      (default on)

Cache directory contents.

	dircounts      bool      (default off)

When this option is enabled, directory sizes show the number of items inside instead of the total size of the directory, which needs to be calculated for each directory using 'calcdirsize'.
This information needs to be calculated by reading the directory and counting the items inside.
Therefore, this option is disabled by default for performance reasons.
This option only has an effect when 'info' has a 'size' field and the pane is wide enough to show the information.
999 items are counted per directory at most, and bigger directories are shown as '999+'.

	dirfirst       bool      (default on)

Show directories first above regular files.

	dironly        bool      (default off)

If enabled, directories will also be passed to the previewer script. This allows custom previews for directories.

	dirpreviews    bool      (default off)

Show only directories.

	drawbox        bool      (default off)

Draw boxes around panes with box drawing characters.

	errorfmt       string    (default "\033[7;31;47m%s\033[0m")

Format string of error messages shown in the bottom message line.

	filesep        string    (default "\n")

File separator used in environment variables 'fs' and 'fx'.

	findlen        int       (default 1)

Number of characters prompted for the find command.
When this value is set to 0, find command prompts until there is only a single match left.

	globsearch     bool      (default off)

When this option is enabled, search command patterns are considered as globs, otherwise they are literals.
With globbing, '*' matches any sequence, '?' matches any character, and '[...]' or '[^...] matches character sets or ranges.
Otherwise, these characters are interpreted as they are.

	hidden         bool      (default off)

Show hidden files.
On Unix systems, hidden files are determined by the value of 'hiddenfiles'.
On Windows, only files with hidden attributes are considered hidden files.

	hiddenfiles    []string  (default '.*')

List of hidden file glob patterns.
Patterns can be given as relative or absolute paths.
Globbing supports the usual special characters, '*' to match any sequence, '?' to match any character, and '[...]' or '[^...] to match character sets or ranges.
In addition, if a pattern starts with '!', then its matches are excluded from hidden files.

	history        bool      (default on)

Save command history.

	icons          bool      (default off)

Show icons before each item in the list.

	ifs            string    (default '')

Sets 'IFS' variable in shell commands.
It works by adding the assignment to the beginning of the command string as "IFS='...'; ...".
The reason is that 'IFS' variable is not inherited by the shell for security reasons.
This method assumes a POSIX shell syntax and so it can fail for non-POSIX shells.
This option has no effect when the value is left empty.
This option does not have any effect on Windows.

	ignorecase     bool      (default on)

Ignore case in sorting and search patterns.

	ignoredia      bool      (default on)

Ignore diacritics in sorting and search patterns.

	incsearch      bool      (default off)

Jump to the first match after each keystroke during searching.

	incfilter      bool      (default off)

Apply filter pattern after each keystroke during filtering.

	info           []string  (default '')

List of information shown for directory items at the right side of pane.
Currently supported information types are 'size', 'time', 'atime', and 'ctime'.
Information is only shown when the pane width is more than twice the width of information.

	infotimefmtnew string    (default 'Jan _2 15:04')

Format string of the file time shown in the info column when it matches this year.

	infotimefmtold string    (default 'Jan _2  2006')

Format string of the file time shown in the info column when it doesn't match this year.

	mouse          bool      (default off)

Send mouse events as input.

	number         bool      (default off)

Show the position number for directory items at the left side of pane.
When 'relativenumber' option is enabled, only the current line shows the absolute position and relative positions are shown for the rest.

	period         int       (default 0)

Set the interval in seconds for periodic checks of directory updates.
This works by periodically calling the 'load' command.
Note that directories are already updated automatically in many cases.
This option can be useful when there is an external process changing the displayed directory and you are not doing anything in lf.
Periodic checks are disabled when the value of this option is set to zero.

	preview        bool      (default on)

Show previews of files and directories at the right most pane.
If the file has more lines than the preview pane, rest of the lines are not read.
Files containing the null character (U+0000) in the read portion are considered binary files and displayed as 'binary'.

	previewer      string    (default '') (not filtered if empty)

Set the path of a previewer file to filter the content of regular files for previewing.
The file should be executable.
Five arguments are passed to the file, (1) current file name, (2) width, (3) height, (4) horizontal position, and (5) vertical position of preview pane respectively.
SIGPIPE signal is sent when enough lines are read.
If the previewer returns a non-zero exit code, then the preview cache for the given file is disabled.
This means that if the file is selected in the future, the previewer is called once again.
Preview filtering is disabled and files are displayed as they are when the value of this option is left empty.

	promptfmt      string    (default "\033[32;1m%u@%h\033[0m:\033[34;1m%d\033[0m\033[1m%f\033[0m")

Format string of the prompt shown in the top line.
Special expansions are provided, '%u' as the user name, '%h' as the host name, '%w' as the working directory, '%d' as the working directory with a trailing path separator, '%f' as the file name, and '%F' as the current filter. '%S' may be used once and will provide a spacer so that the following parts are right aligned on the screen.
Home folder is shown as '~' in the working directory expansion.
Directory names are automatically shortened to a single character starting from the left most parent when the prompt does not fit to the screen.

	ratios         []int     (default '1:2:3')

List of ratios of pane widths.
Number of items in the list determines the number of panes in the ui.
When 'preview' option is enabled, the right most number is used for the width of preview pane.

	relativenumber bool      (default off)

Show the position number relative to the current line.
When 'number' is enabled, current line shows the absolute position, otherwise nothing is shown.

	reverse        bool      (default off)

Reverse the direction of sort.

	selmode        string    (default 'all')

Selection mode for commands.
When set to 'all' it will use the selected files from all directories.
When set to 'dir' it will only use the selected files in the current directory.

	scrolloff      int       (default 0)

Minimum number of offset lines shown at all times in the top and the bottom of the screen when scrolling.
The current line is kept in the middle when this option is set to a large value that is bigger than the half of number of lines.
A smaller offset can be used when the current file is close to the beginning or end of the list to show the maximum number of items.

	shell          string    (default 'sh' for Unix and 'cmd' for Windows)

Shell executable to use for shell commands.
Shell commands are executed as 'shell shellopts shellflag command -- arguments'.

	shellflag      string    (default '-c' for Unix and '/c' for Windows)

Command line flag used to pass shell commands.

	shellopts      []string  (default '')

List of shell options to pass to the shell executable.

	smartcase      bool      (default on)

Override 'ignorecase' option when the pattern contains an uppercase character.
This option has no effect when 'ignorecase' is disabled.

	smartdia       bool      (default off)

Override 'ignoredia' option when the pattern contains a character with diacritic.
This option has no effect when 'ignoredia' is disabled.

	sortby         string    (default 'natural')

Sort type for directories.
Currently supported sort types are 'natural', 'name', 'size', 'time', 'ctime', 'atime', and 'ext'.

	tabstop        int       (default 8)

Number of space characters to show for horizontal tabulation (U+0009) character.

	tagfmt         string    (default "\033[31m%s\033[0m")

Format string of the tags.

	tempmarks      string    (default '')

Marks to be considered temporary (e.g. 'abc' refers to marks 'a', 'b', and 'c').
These marks are not synced to other clients and they are not saved in the bookmarks file.
Note that the special bookmark "'" is always treated as temporary and it does not need to be specified.

	timefmt        string    (default 'Mon Jan _2 15:04:05 2006')

Format string of the file modification time shown in the bottom line.

	truncatechar   string    (default '~')

Truncate character shown at the end when the file name does not fit to the pane.

	waitmsg        string    (default 'Press any key to continue')

String shown after commands of shell-wait type.

	wrapscan       bool      (default on)

Searching can wrap around the file list.

	wrapscroll     bool      (default off)

Scrolling can wrap around the file list.

	user_{option}  string    (default none)

Any option that is prefixed with 'user_' is a user defined option and can be set to any string.
Inside a user defined command the value will be provided in the `lf_user_{option}` environment variable.
These options are not used by lf and are not persisted.

# Environment Variables

The following variables are exported for shell commands:
These are referred with a '$' prefix on POSIX shells (e.g. '$f'), between '%' characters on Windows cmd (e.g. '%f%'), and with a '$env:' prefix on Windows powershell (e.g. '$env:f').

	f

Current file selection as a full path.

	fs

Selected file(s) separated with the value of 'filesep' option as full path(s).

	fx

Selected file(s) (i.e. 'fs') if there are any selected files, otherwise current file selection (i.e. 'f').

	id

Id of the running client.

	PWD

Present working directory.

	OLDPWD

Initial working directory.

	LF_LEVEL

The value of this variable is set to the current nesting level when you run lf from a shell spawned inside lf.
You can add the value of this variable to your shell prompt to make it clear that your shell runs inside lf.
For example, with POSIX shells, you can use '[ -n "$LF_LEVEL" ] && PS1="$PS1""(lf level: $LF_LEVEL) "' in your shell configuration file (e.g. '~/.bashrc').

	OPENER

If this variable is set in the environment, use the same value, otherwise set the value to 'start' in Windows, 'open' in MacOS, 'xdg-open' in others.

	EDITOR

If this variable is set in the environment, use the same value, otherwise set the value to 'vi' on Unix, 'notepad' in Windows.

	PAGER

If this variable is set in the environment, use the same value, otherwise set the value to 'less' on Unix, 'more' in Windows.

	SHELL

If this variable is set in the environment, use the same value, otherwise set the value to 'sh' on Unix, 'cmd' in Windows.

	lf_{option}

Value of the {option}.

	lf_user_{option}

Value of the user_{option}.

	lf_width
	lf_height

Width/Height of the terminal.

# Special Commands

This section shows information about special shell commands.

	open

This shell command can be defined to override the default 'open' command when the current file is not a directory.

	paste

This shell command can be defined to override the default 'paste' command.

	rename

This shell command can be defined to override the default 'rename' command.

	delete

This shell command can be defined to override the default 'delete' command.

	pre-cd

This shell command can be defined to be executed before changing a directory.

	on-cd

This shell command can be defined to be executed after changing a directory.

	on-select

This shell command can be defined to be executed after the selection changes.

	on-quit

This shell command can be defined to be executed before quit.

# Prefixes

The following command prefixes are used by lf:

	:  read (default)  builtin/custom command
	$  shell           shell command
	%  shell-pipe      shell command running with the ui
	!  shell-wait      shell command waiting for key press
	&  shell-async     shell command running asynchronously

The same evaluator is used for the command line and the configuration file for read and shell commands.
The difference is that prefixes are not necessary in the command line.
Instead, different modes are provided to read corresponding commands.
These modes are mapped to the prefix keys above by default.

# Syntax

Characters from '#' to newline are comments and ignored:

	# comments start with '#'

There are four special commands ('set', 'map', 'cmap', and 'cmd') for configuration.

Command 'set' is used to set an option which can be boolean, integer, or string:

	set hidden         # boolean on
	set nohidden       # boolean off
	set hidden!        # boolean toggle
	set scrolloff 10   # integer value
	set sortby time    # string value w/o quotes
	set sortby 'time'  # string value with single quotes (whitespaces)
	set sortby "time"  # string value with double quotes (backslash escapes)

Command 'map' is used to bind a key to a command which can be builtin command, custom command, or shell command:

	map gh cd ~        # builtin command
	map D trash        # custom command
	map i $less $f     # shell command
	map U !du -csh *   # waiting shell command

Command 'cmap' is used to bind a key on the command line to a command line command or any other command:

	cmap <c-g> cmd-escape
	cmap <a-i> set incsearch!

You can delete an existing binding by leaving the expression empty:

	map gh             # deletes 'gh' mapping
	cmap <c-g>         # deletes '<c-g>' mapping

Command 'cmd' is used to define a custom command:

	cmd usage $du -h -d1 | less

You can delete an existing command by leaving the expression empty:

	cmd trash          # deletes 'trash' command

If there is no prefix then ':' is assumed:

	map zt set info time

An explicit ':' can be provided to group statements until a newline which is especially useful for 'map' and 'cmd' commands:

	map st :set sortby time; set info time

If you need multiline you can wrap statements in '{{' and '}}' after the proper prefix.

	map st :{{
	    set sortby time
	    set info time
	}}

# Key Mappings

Regular keys are assigned to a command with the usual syntax:

	map a down

Keys combined with the shift key simply use the uppercase letter:

	map A down

Special keys are written in between '<' and '>' characters and always use lowercase letters:

	map <enter> down

Angle brackets can be assigned with their special names:

	map <lt> down
	map <gt> down

Function keys are prefixed with 'f' character:

	map <f-1> down

Keys combined with the control key are prefixed with 'c' character:

	map <c-a> down

Keys combined with the alt key are assigned in two different ways depending on the behavior of your terminal.
Older terminals (e.g. xterm) may set the 8th bit of a character when the alt key is pressed.
On these terminals, you can use the corresponding byte for the mapping:

	map รก down

Newer terminals (e.g. gnome-terminal) may prefix the key with an escape key when the alt key is pressed.
lf uses the escape delaying mechanism to recognize alt keys in these terminals (delay is 100ms).
On these terminals, keys combined with the alt key are prefixed with 'a' character:

	map <a-a> down

Please note that, some key combinations are not possible due to the way terminals work (e.g. control and h combination sends a backspace key instead).
The easiest way to find the name of a key combination is to press the key while lf is running and read the name of the key from the unknown mapping error.

Mouse buttons are prefixed with 'm' character:

	map <m-1> down  # primary
	map <m-2> down  # secondary
	map <m-3> down  # middle
	map <m-4> down
	map <m-5> down
	map <m-6> down
	map <m-7> down
	map <m-8> down

Mouse wheel events are also prefixed with 'm' character:

	map <m-up>    down
	map <m-down>  down
	map <m-left>  down
	map <m-right> down

# Push Mappings

The usual way to map a key sequence is to assign it to a named or unnamed command.
While this provides a clean way to remap builtin keys as well as other commands, it can be limiting at times.
For this reason 'push' command is provided by lf.
This command is used to simulate key pushes given as its arguments.
You can 'map' a key to a 'push' command with an argument to create various keybindings.

This is mainly useful for two purposes.
First, it can be used to map a command with a command count:

	map <c-j> push 10j

Second, it can be used to avoid typing the name when a command takes arguments:

	map r push :rename<space>

One thing to be careful is that since 'push' command works with keys instead of commands it is possible to accidentally create recursive bindings:

	map j push 2j

These types of bindings create a deadlock when executed.

# Shell Commands

Regular shell commands are the most basic command type that is useful for many purposes.
For example, we can write a shell command to move selected file(s) to trash.
A first attempt to write such a command may look like this:

	cmd trash ${{
	    mkdir -p ~/.trash
	    if [ -z "$fs" ]; then
	        mv "$f" ~/.trash
	    else
	        IFS="$(printf '\n\t')"; mv $fs ~/.trash
	    fi
	}}

We check '$fs' to see if there are any selected files.
Otherwise we just delete the current file.
Since this is such a common pattern, a separate '$fx' variable is provided.
We can use this variable to get rid of the conditional:

	cmd trash ${{
	    mkdir -p ~/.trash
	    IFS="$(printf '\n\t')"; mv $fx ~/.trash
	}}

The trash directory is checked each time the command is executed.
We can move it outside of the command so it would only run once at startup:

	${{ mkdir -p ~/.trash }}

	cmd trash ${{ IFS="$(printf '\n\t')"; mv $fx ~/.trash }}

Since these are one liners, we can drop '{{' and '}}':

	$mkdir -p ~/.trash

	cmd trash $IFS="$(printf '\n\t')"; mv $fx ~/.trash

Finally note that we set 'IFS' variable manually in these commands.
Instead we could use the 'ifs' option to set it for all shell commands (i.e. 'set ifs "\n"').
This can be especially useful for interactive use (e.g. '$rm $f' or '$rm $fs' would simply work).
This option is not set by default as it can behave unexpectedly for new users.
However, use of this option is highly recommended and it is assumed in the rest of the documentation.

# Piping Shell Commands

Regular shell commands have some limitations in some cases.
When an output or error message is given and the command exits afterwards, the ui is immediately resumed and there is no way to see the message without dropping to shell again.
Also, even when there is no output or error, the ui still needs to be paused while the command is running.
This can cause flickering on the screen for short commands and similar distractions for longer commands.

Instead of pausing the ui, piping shell commands connects stdin, stdout, and stderr of the command to the statline in the bottom of the ui.
This can be useful for programs following the Unix philosophy to give no output in the success case, and brief error messages or prompts in other cases.

For example, following rename command prompts for overwrite in the statline if there is an existing file with the given name:

	cmd rename %mv -i $f $1

You can also output error messages in the command and it will show up in the statline.
For example, an alternative rename command may look like this:

	cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1

Note that input is line buffered and output and error are byte buffered.

# Waiting Shell Commands

Waiting shell commands are similar to regular shell commands except that they wait for a key press when the command is finished.
These can be useful to see the output of a program before the ui is resumed.
Waiting shell commands are more appropriate than piping shell commands when the command is verbose and the output is best displayed as multiline.

# Asynchronous Shell Commands

Asynchronous shell commands are used to start a command in the background and then resume operation without waiting for the command to finish.
Stdin, stdout, and stderr of the command is neither connected to the terminal nor to the ui.

# Remote Commands

One of the more advanced features in lf is remote commands.
All clients connect to a server on startup.
It is possible to send commands to all or any of the connected clients over the common server.
This is used internally to notify file selection changes to other clients.

To use this feature, you need to use a client which supports communicating with a Unix domain socket.
OpenBSD implementation of netcat (nc) is one such example.
You can use it to send a command to the socket file:

	echo 'send echo hello world' | nc -U ${XDG_RUNTIME_DIR:-/tmp}/lf.${USER}.sock

Since such a client may not be available everywhere, lf comes bundled with a command line flag to be used as such.
When using lf, you do not need to specify the address of the socket file.
This is the recommended way of using remote commands since it is shorter and immune to socket file address changes:

	lf -remote 'send echo hello world'

In this command 'send' is used to send the rest of the string as a command to all connected clients.
You can optionally give it an id number to send a command to a single client:

	lf -remote 'send 1234 echo hello world'

All clients have a unique id number but you may not be aware of the id number when you are writing a command.
For this purpose, an '$id' variable is exported to the environment for shell commands.
The value of this variable is set to the process id of the client.
You can use it to send a remote command from a client to the server which in return sends a command back to itself.
So now you can display a message in the current client by calling the following in a shell command:

	lf -remote "send $id echo hello world"

Since lf does not have control flow syntax, remote commands are used for such needs.
For example, you can configure the number of columns in the ui with respect to the terminal width as follows:

	cmd recol %{{
	    if [ $lf_width -le 80 ]; then
	        lf -remote "send $id set ratios 1:2"
	    elif [ $lf_width -le 160 ]; then
	        lf -remote "send $id set ratios 1:2:3"
	    else
	        lf -remote "send $id set ratios 1:2:3:5"
	    fi
	}}

Besides 'send' command, there is a 'quit' command to quit the server when there are no connected clients left, and a 'quit!' command to force quit the server by closing client connections first:

	lf -remote 'quit'
	lf -remote 'quit!'

Lastly, there is a 'conn' command to connect the server as a client.
This should not be needed for users.

# File Operations

lf uses its own builtin copy and move operations by default.
These are implemented as asynchronous operations and progress is shown in the bottom ruler.
These commands do not overwrite existing files or directories with the same name.
Instead, a suffix that is compatible with '--backup=numbered' option in GNU cp is added to the new files or directories.
Only file modes are preserved and all other attributes are ignored including ownership, timestamps, context, and xattr.
Special files such as character and block devices, named pipes, and sockets are skipped and links are not followed.
Moving is performed using the rename operation of the underlying OS.
For cross-device moving, lf falls back to copying and then deletes the original files if there are no errors.
Operation errors are shown in the message line as well as the log file and they do not preemptively finish the corresponding file operation.

File operations can be performed on the current selected file or alternatively on multiple files by selecting them first.
When you 'copy' a file, lf doesn't actually copy the file on the disk, but only records its name to a file.
The actual file copying takes place when you 'paste'.
Similarly 'paste' after a 'cut' operation moves the file.

You can customize copy and move operations by defining a 'paste' command.
This is a special command that is called when it is defined instead of the builtin implementation.
You can use the following example as a starting point:

	cmd paste %{{
	    load=$(cat ~/.local/share/lf/files)
	    mode=$(echo "$load" | sed -n '1p')
	    list=$(echo "$load" | sed '1d')
	    if [ $mode = 'copy' ]; then
	        cp -R $list .
	    elif [ $mode = 'move' ]; then
	        mv $list .
	        rm ~/.local/share/lf/files
	        lf -remote 'send clear'
	    fi
	}}

Some useful things to be considered are to use the backup ('--backup') and/or preserve attributes ('-a') options with 'cp' and 'mv' commands if they support it (i.e. GNU implementation), change the command type to asynchronous, or use 'rsync' command with progress bar option for copying and feed the progress to the client periodically with remote 'echo' calls.

By default, lf does not assign 'delete' command to a key to protect new users.
You can customize file deletion by defining a 'delete' command.
You can also assign a key to this command if you like.
An example command to move selected files to a trash folder and remove files completely after a prompt are provided in the example configuration file.

# Searching Files

There are two mechanisms implemented in lf to search a file in the current directory.
Searching is the traditional method to move the selection to a file matching a given pattern.
Finding is an alternative way to search for a pattern possibly using fewer keystrokes.

Searching mechanism is implemented with commands 'search' (default '/'), 'search-back' (default '?'), 'search-next' (default 'n'), and 'search-prev' (default 'N').
You can enable 'globsearch' option to match with a glob pattern.
Globbing supports '*' to match any sequence, '?' to match any character, and '[...]' or '[^...] to match character sets or ranges.
You can enable 'incsearch' option to jump to the current match at each keystroke while typing.
In this mode, you can either use 'cmd-enter' to accept the search or use 'cmd-escape' to cancel the search.
You can also map some other commands with 'cmap' to accept the search and execute the command immediately afterwards.
For example, you can use the right arrow key to finish the search and open the selected file with the following mapping:

	cmap <right> :cmd-enter; open

Finding mechanism is implemented with commands 'find' (default 'f'), 'find-back' (default 'F'), 'find-next' (default ';'), 'find-prev' (default ',').
You can disable 'anchorfind' option to match a pattern at an arbitrary position in the filename instead of the beginning.
You can set the number of keys to match using 'findlen' option.
If you set this value to zero, then the the keys are read until there is only a single match.
Default values of these two options are set to jump to the first file with the given initial.

Some options effect both searching and finding.
You can disable 'wrapscan' option to prevent searches to wrap around at the end of the file list.
You can disable 'ignorecase' option to match cases in the pattern and the filename.
This option is already automatically overridden if the pattern contains upper case characters.
You can disable 'smartcase' option to disable this behavior.
Two similar options 'ignoredia' and 'smartdia' are provided to control matching diacritics in latin letters.

# Opening Files

You can define a an 'open' command (default 'l' and '<right>') to configure file opening.
This command is only called when the current file is not a directory, otherwise the directory is entered instead.
You can define it just as you would define any other command:

	cmd open $vi $fx

It is possible to use different command types:

	cmd open &xdg-open $f

You may want to use either file extensions or mime types from 'file' command:

	cmd open ${{
	    case $(file --mime-type -Lb $f) in
	        text/*) vi $fx;;
	        *) for f in $fx; do xdg-open $f > /dev/null 2> /dev/null & done;;
	    esac
	}}

You may want to use 'setsid' before your opener command to have persistent processes that continue to run after lf quits.

Regular shell commands (i.e. '$') drop to terminal which results in a flicker for commands that finishes immediately (e.g. 'xdg-open' in the above example).
If you want to use asynchronous shell commands (i.e. '&') but also want to use the terminal when necessary (e.g. 'vi' in the above exxample), you can use a remote command:

	cmd open &{{
	    case $(file --mime-type -Lb $f) in
	        text/*) lf -remote "send $id \$vi \$fx";;
	        *) for f in $fx; do xdg-open $f > /dev/null 2> /dev/null & done;;
	    esac
	}}

Note, asynchronous shell commands run in their own process group by default so they do not require the manual use of 'setsid'.

Following command is provided by default:

	cmd open &$OPENER $f

You may also use any other existing file openers as you like.
Possible options are 'libfile-mimeinfo-perl' (executable name is 'mimeopen'), 'rifle' (ranger's default file opener), or 'mimeo' to name a few.

# Previewing Files

lf previews files on the preview pane by printing the file until the end or the preview pane is filled.
This output can be enhanced by providing a custom preview script for filtering.
This can be used to highlight source codes, list contents of archive files or view pdf or image files to name a few.
For coloring lf recognizes ansi escape codes.

In order to use this feature you need to set the value of 'previewer' option to the path of an executable file.
Five arguments are passed to the file, (1) current file name, (2) width, (3) height, (4) horizontal position, and (5) vertical position of preview pane respectively.
Output of the execution is printed in the preview pane.
You may also want to use the same script in your pager mapping as well:

	set previewer ~/.config/lf/pv.sh
	map i $~/.config/lf/pv.sh $f | less -R

For 'less' pager, you may instead utilize 'LESSOPEN' mechanism so that useful information about the file such as the full path of the file can still be displayed in the statusline below:

	set previewer ~/.config/lf/pv.sh
	map i $LESSOPEN='| ~/.config/lf/pv.sh %s' less -R $f

Since this script is called for each file selection change it needs to be as efficient as possible and this responsibility is left to the user.
You may use file extensions to determine the type of file more efficiently compared to obtaining mime types from 'file' command.
Extensions can then be used to match cleanly within a conditional:

	#!/bin/sh

	case "$1" in
	    *.tar*) tar tf "$1";;
	    *.zip) unzip -l "$1";;
	    *.rar) unrar l "$1";;
	    *.7z) 7z l "$1";;
	    *.pdf) pdftotext "$1" -;;
	    *) highlight -O ansi "$1";;
	esac

Another important consideration for efficiency is the use of programs with short startup times for preview.
For this reason, 'highlight' is recommended over 'pygmentize' for syntax highlighting.
Besides, it is also important that the application is processing the file on the fly rather than first reading it to the memory and then do the processing afterwards.
This is especially relevant for big files.
lf automatically closes the previewer script output pipe with a SIGPIPE when enough lines are read.
When everything else fails, you can make use of the height argument to only feed the first portion of the file to a program for preview.
Note that some programs may not respond well to SIGPIPE to exit with a non-zero return code and avoid caching.
You may add a trailing '|| true' command to avoid such errors:

	highlight -O ansi "$1" || true

You may also use an existing preview filter as you like.
Your system may already come with a preview filter named 'lesspipe'.
These filters may have a mechanism to add user customizations as well.
See the related documentations for more information.

# Changing Directory

lf changes the working directory of the process to the current directory so that shell commands always work in the displayed directory.
After quitting, it returns to the original directory where it is first launched like all shell programs.
If you want to stay in the current directory after quitting, you can use one of the example lfcd wrapper shell scripts provided in the repository at
https://github.com/gokcehan/lf/tree/master/etc

There is a special command 'on-cd' that runs a shell command when it is defined and the directory is changed.
You can define it just as you would define any other command:

	cmd on-cd &{{
	    # display git repository status in your prompt
	    source /usr/share/git/completion/git-prompt.sh
	    GIT_PS1_SHOWDIRTYSTATE=auto
	    GIT_PS1_SHOWSTASHSTATE=auto
	    GIT_PS1_SHOWUNTRACKEDFILES=auto
	    GIT_PS1_SHOWUPSTREAM=auto
	    git=$(__git_ps1 " (%s)") || true
	    fmt="\033[32;1m%u@%h\033[0m:\033[34;1m%d\033[0m\033[1m%f$git\033[0m"
	    lf -remote "send $id set promptfmt \"$fmt\""
	}}

If you want to print escape sequences, you may redirect 'printf' output to '/dev/tty'.
The following xterm specific escape sequence sets the terminal title to the working directory:

	cmd on-cd &{{
	    printf "\033]0; $PWD\007" > /dev/tty
	}}

This command runs whenever you change directory but not on startup.
You can add an extra call to make it run on startup as well:

	cmd on-cd &{{ ... }}
	on-cd

Note that all shell commands are possible but '%' and '&' are usually more appropriate as '$' and '!' causes flickers and pauses respectively.

There is also a 'pre-cd' command, that works like 'on-cd', but is run before the directory is actually changed.

# Colors

lf tries to automatically adapt its colors to the environment.
It starts with a default colorscheme and updates colors using values of existing environment variables possibly by overwriting its previous values.
Colors are set in the following order:

 1. default
 2. LSCOLORS (Mac/BSD ls)
 3. LS_COLORS (GNU ls)
 4. LF_COLORS (lf specific)
 5. colors file (lf specific)

Please refer to the corresponding man pages for more information about 'LSCOLORS' and 'LS_COLORS'.
'LF_COLORS' is provided with the same syntax as 'LS_COLORS' in case you want to configure colors only for lf but not ls.
This can be useful since there are some differences between ls and lf, though one should expect the same behavior for common cases.
Colors file is provided for easier configuration without environment variables.
This file should consist of whitespace separated pairs with '#' character to start comments until the end of line.

You can configure lf colors in two different ways.
First, you can only configure 8 basic colors used by your terminal and lf should pick up those colors automatically.
Depending on your terminal, you should be able to select your colors from a 24-bit palette.
This is the recommended approach as colors used by other programs will also match each other.

Second, you can set the values of environment variables or colors file mentioned above for fine grained customization.
Note that 'LS_COLORS/LF_COLORS' are more powerful than 'LSCOLORS' and they can be used even when GNU programs are not installed on the system.
You can combine this second method with the first method for best results.

Lastly, you may also want to configure the colors of the prompt line to match the rest of the colors.
Colors of the prompt line can be configured using the 'promptfmt' option which can include hardcoded colors as ansi escapes.
See the default value of this option to have an idea about how to color this line.

It is worth noting that lf uses as many colors advertised by your terminal's entry in terminfo or infocmp databases on your system.
If an entry is not present, it falls back to an internal database.
If your terminal supports 24-bit colors but either does not have a database entry or does not advertise all capabilities, you can enable support by setting the '$COLORTERM' variable to 'truecolor' or ensuring '$TERM' is set to a value that ends with '-truecolor'.

Default lf colors are mostly taken from GNU dircolors defaults.
These defaults use 8 basic colors and bold attribute.
Default dircolors entries with background colors are simplified to avoid confusion with current file selection in lf.
Similarly, there are only file type matchings and extension matchings are left out for simplicity.
Default values are as follows given with their matching order in lf:

	ln  01;36
	or  31;01
	tw  01;34
	ow  01;34
	st  01;34
	di  01;34
	pi  33
	so  01;35
	bd  33;01
	cd  33;01
	su  01;32
	sg  01;32
	ex  01;32
	fi  00

Note that lf first tries matching file names and then falls back to file types.
The full order of matchings from most specific to least are as follows:

 1. Full Path (e.g. '~/.config/lf/lfrc')
 2. Dir Name  (e.g. '.git/') (only matches dirs with a trailing slash at the end)
 3. File Type (e.g. 'ln') (except 'fi')
 4. File Name (e.g. 'README*')
 5. File Name (e.g. '*README')
 6. Base Name (e.g. 'README.*')
 7. Extension (e.g. '*.txt')
 8. Default   (i.e. 'fi')

For example, given a regular text file '/path/to/README.txt', the following entries are checked in the configuration and the first one to match is used:

 1. '/path/to/README.txt'
 2. (skipped since the file is not a directory)
 3. (skipped since the file is of type 'fi')
 4. 'README.txt*'
 5. '*README.txt'
 6. 'README.*'
 7. '*.txt'
 8. 'fi'

Given a regular directory '/path/to/example.d', the following entries are checked in the configuration and the first one to match is used:

 1. '/path/to/example.d'
 2. 'example.d/'
 3. 'di'
 4. 'example.d*'
 5. '*example.d'
 6. 'example.*'
 7. '*.d'
 8. 'fi'

Note that glob-like patterns do not actually perform glob matching due to performance reasons.

For example, you can set a variable as follows:

	export LF_COLORS="~/Documents=01;31:~/Downloads=01;31:~/.local/share=01;31:~/.config/lf/lfrc=31:.git/=01;32:.git*=32:*.gitignore=32:*Makefile=32:README.*=33:*.txt=34:*.md=34:ln=01;36:di=01;34:ex=01;32:"

Having all entries on a single line can make it hard to read.
You may instead divide it to multiple lines in between double quotes by escaping newlines with backslashes as follows:

	export LF_COLORS="\
	~/Documents=01;31:\
	~/Downloads=01;31:\
	~/.local/share=01;31:\
	~/.config/lf/lfrc=31:\
	.git/=01;32:\
	.git*=32:\
	*.gitignore=32:\
	*Makefile=32:\
	README.*=33:\
	*.txt=34:\
	*.md=34:\
	ln=01;36:\
	di=01;34:\
	ex=01;32:\
	"

Having such a long variable definition in a shell configuration file might be undesirable.
You may instead use the colors file for configuration.
A sample colors file can be found at
https://github.com/gokcehan/lf/blob/master/etc/colors.example
You may also see the wiki page for ansi escape codes
https://en.wikipedia.org/wiki/ANSI_escape_code

# Icons

Icons are configured using 'LF_ICONS' environment variable or an icons file.
The variable uses the same syntax as 'LS_COLORS/LF_COLORS'.
Instead of colors, you should put a single characters as values of entries.
Icons file should consist of whitespace separated pairs with '#' character to start comments until the end of line.
Do not forget to enable 'icons' option to see the icons.
Default values are as follows given with their matching order in lf:

	ln  l
	or  l
	tw  t
	ow  d
	st  t
	di  d
	pi  p
	so  s
	bd  b
	cd  c
	su  u
	sg  g
	ex  x
	fi  -

A sample icons file can be found at
https://github.com/gokcehan/lf/blob/master/etc/icons.example
*/
package main