File: elinks.conf.5

package info (click to toggle)
elinks 0.13~20190125-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 17,244 kB
  • sloc: ansic: 102,743; sh: 5,265; python: 3,940; perl: 2,175; makefile: 970; pascal: 930; yacc: 295; lisp: 125; ruby: 70; awk: 65
file content (2953 lines) | stat: -rw-r--r-- 92,629 bytes parent folder | download | duplicates (2)
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
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
.\"     Title: elinks.conf
.\"    Author: 
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\"      Date: 07/11/2009
.\"    Manual: ELinks configuration file
.\"    Source: ELinks 0.13.GIT
.\"
.TH "ELINKS\&.CONF" "5" "07/11/2009" "ELinks 0\&.13\&.GIT" "ELinks configuration file"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
elinks.conf \- ELinks configuration file
.SH "SYNOPSIS"
.sp
.RS 4
.nf
set        <option> = <value>
set_domain <domain> <option> = <value>
unset      <option>
bind       "<keymap>" "<key>" = "<action>"
include    "<file>"
.fi
.RE
.SH "DESCRIPTION"
The elinks\&.conf file contains configuration information for ELinks\&. It can be used to configure the behaviour of ELinks in a wide variety of ways: protocol behaviour, keybindings, colors used for rendering and for the user interface\&.
.sp
It is read at startup and saved only when requested\&. All options described in this document can be fully configured from within ELinks so no editing of elinks\&.conf is needed\&.
.sp
Note that MIME\-related options used for specifying handlers of various MIME types are NOT described in this document\&. Documentation for these options can be found at the ELinks homepage\&. Keybindings can also be specified in elinks\&.conf\&. This is described in \fBelinkskeys\fR(5)\&.
.sp
.SH "SYNTAX"
The syntax of the configuration file is very simple\&. The elinks\&.conf file is a free\-form ASCII text file\&. The file may contain extra tabs and newlines for formatting purposes\&. Keywords in the file are case\-sensitive\&. Comments may be placed anywhere within the file (except within quotes)\&. Comments begin with the # character and end at the end of the line\&.
.sp
.SH "EXAMPLES"
Some sample settings:
.sp
.sp
.RS 4
.nf
# Use asynchronous DNS resolver?
set connection\&.async_dns = 1
# horizontal text margin\&.
set document\&.browse\&.margin_width = 3
# Default document codepage\&.
set document\&.codepage\&.assume = "ISO\-8859\-1"
# User defined protocol handlers
set protocol\&.user\&.mailto\&.unix = "mutt %h \-s \e"%s\e""
.fi
.RE
.SH "OPTIONS"
Generated using output from ELinks version 0\&.13\&.GIT\&.
.sp
.SS "bookmarks (Bookmarks)"
Bookmark options\&.
.PP
bookmarks\&.file_format \fB<num>\fR (default: 0)
.RS 4
File format for bookmarks (affects both reading and saving):
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is the default native
ELinks
format
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is XBEL universal XML bookmarks format
.RE
.RE
.PP
bookmarks\&.folder_state \fB[0|1]\fR (default: 1)
.RS 4
When saving bookmarks also store whether folders are expanded or not, so the look of the bookmark dialog is kept across
ELinks
sessions\&. If disabled all folders will appear unexpanded next time
ELinks
is run\&.
.RE
.SS "config (Configuration system)"
Configuration handling options\&.
.PP
config\&.comments \fB<num>\fR (default: 3)
.RS 4
Amount of comments automatically written to the config file:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is no comments are written
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is only the "blurb" (name+type) is written
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is only the description is written
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is full comments are written
.RE
.RE
.PP
config\&.indentation \fB<num>\fR (default: 2)
.RS 4
Shift width of one indentation level in the configuration file\&. Zero means that no indentation is performed at all when saving the configuration\&.
.RE
.PP
config\&.saving_style \fB<num>\fR (default: 3)
.RS 4
Determines what happens when you tell
ELinks
to save options:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is only values of current options are altered
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is values of current options are altered and missing options are added at the end of the file
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is the configuration file is rewritten from scratch
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is values of current options are altered and missing options CHANGED during this
ELinks
session are added at the end of the file
.RE
.RE
.PP
config\&.i18n \fB[0|1]\fR (default: 0)
.RS 4
If set to 1, comments in the configuration file will be translated to the language used by UI\&. Note that if you have different language set in different terminals, the language used in the configuration file MAY be the same as on the terminal where you saved the file, but it should be generally considered unpredictable\&.
.RE
.PP
config\&.saving_style_w \fB[0|1]\fR (default: 0)
.RS 4
This is internal option used when displaying a warning about obsolete config\&.saving_style\&. You shouldn\'t touch it\&.
.RE
.PP
config\&.show_template \fB[0|1]\fR (default: 0)
.RS 4
Show template options in autocreated trees in the options manager and save them to the configuration file\&.
.RE
.SS "connection (Connections)"
Connection options\&.
.PP
connection\&.async_dns \fB[0|1]\fR (default: 1)
.RS 4
Whether to use asynchronous DNS resolving\&.
.RE
.PP
connection\&.max_connections \fB<num>\fR (default: 10)
.RS 4
Maximum number of concurrent connections\&.
.RE
.PP
connection\&.max_connections_to_host \fB<num>\fR (default: 2)
.RS 4
Maximum number of concurrent connections to a given host\&.
.RE
.PP
connection\&.receive_timeout \fB<num>\fR (default: 120)
.RS 4
Receive timeout (in seconds)\&.
.RE
.PP
connection\&.retries \fB<num>\fR (default: 3)
.RS 4
Number of tries to establish a connection\&. Zero means try forever\&.
.RE
.PP
connection\&.try_ipv4 \fB[0|1]\fR (default: 1)
.RS 4
Whether to try to connect to a host over IPv4\&. Note that if
connection\&.try_ipv6
is enabled too, it takes precedence\&. And better do not touch this at all unless you are sure what are you doing\&.
.sp
Note that you can also force a given protocol to be used on a per\-connection basis by using a URL in the style of e\&.g\&.
\fIhttp4://elinks\&.cz/\fR\&.
.RE
.PP
connection\&.try_ipv6 \fB[0|1]\fR (default: 1)
.RS 4
Whether to try to connect to a host over IPv6\&.
.sp
Note that you can also force a given protocol to be used on a per\-connection basis by using a URL in the style of e\&.g\&.
\fIhttp6://elinks\&.cz/\fR\&.
.RE
.PP
connection\&.unrestartable_receive_timeout \fB<num>\fR (default: 600)
.RS 4
Timeout for non\-restartable connections (in seconds)\&.
.RE
.SS "connection\&.ssl (SSL)"
SSL options\&.
.PP
connection\&.ssl\&.cert_verify \fB[0|1]\fR (default: 0)
.RS 4
Verify the peer\'s SSL certificate\&. Note that this needs extensive configuration of OpenSSL by the user\&.
.RE
.SS "connection\&.ssl\&.client_cert (Client Certificates)"
X509 client certificate options\&.
.PP
connection\&.ssl\&.client_cert\&.enable \fB[0|1]\fR (default: 0)
.RS 4
Enable or not the sending of X509 client certificates to servers which request them\&.
.RE
.PP
connection\&.ssl\&.client_cert\&.file \fB<str>\fR (default: "")
.RS 4
The location of a file containing the client certificate and unencrypted private key in PEM format\&. If unset, the file pointed to by the
\fBX509_CLIENT_CERT\fR
variable is used instead\&.
.RE
.SS "cookies (Cookies)"
Cookies options\&.
.PP
cookies\&.accept_policy \fB<num>\fR (default: 2)
.RS 4
Cookies accepting policy:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is accept no cookies
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is ask for confirmation before accepting cookie
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is accept all cookies
.RE
.RE
.PP
cookies\&.max_age \fB<num>\fR (default: \-1)
.RS 4
Cookie maximum age (in days):
.sp
.RS 4
\h'-04'\(bu\h'+03'\-1 is use cookie\'s expiration date if any
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is force expiration at the end of session, ignoring cookie\'s expiration date
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1+ is use cookie\'s expiration date, but limit age to the given number of days
.RE
.RE
.PP
cookies\&.paranoid_security \fB[0|1]\fR (default: 0)
.RS 4
When enabled, we\'ll require three dots in cookies domain for all non\-international domains (instead of just two dots)\&. Some countries have generic second level domains (eg\&. \&.com\&.pl, \&.co\&.uk) and allowing sites to set cookies for these generic domains could potentially be very bad\&. Note, it is off by default as it breaks a lot of sites\&.
.RE
.PP
cookies\&.save \fB[0|1]\fR (default: 1)
.RS 4
Whether cookies should be loaded from and saved to disk\&.
.RE
.PP
cookies\&.resave \fB[0|1]\fR (default: 1)
.RS 4
Save cookies after each change in cookies list? No effect when cookie saving (cookies\&.save) is off\&.
.RE
.SS "document (Document)"
Document options\&.
.sp
.SS "document\&.browse (Browsing)"
Document browsing options (mainly interactivity)\&.
.PP
document\&.browse\&.margin_width \fB<num>\fR (default: 3)
.RS 4
Horizontal text margin\&.
.RE
.PP
document\&.browse\&.refresh \fB[0|1]\fR (default: 1)
.RS 4
Automatically follow document\-specified refresh directives (\'<meta> refresh\' tags)\&. Web\-page authors use these to instruct the browser to reload a document at a given interval or to load another page\&. Regardless of the value the refresh URI is accessible as a link\&.
.sp
Use the
document\&.browse\&.minimum_refresh_time
to control the minimum number of seconds a refresh will wait\&.
.RE
.PP
document\&.browse\&.minimum_refresh_time \fB<num>\fR (default: 1000)
.RS 4
The minimum number of milliseconds that should pass before refreshing\&. If set to zero the document refresh time is used unchanged\&. It can fix going back in history for some sites that use refreshing with zero values\&.
.RE
.PP
document\&.browse\&.table_move_order \fB[0|1]\fR (default: 0)
.RS 4
Move by columns in table, instead of rows\&.
.RE
.SS "document\&.browse\&.accesskey (Access keys)"
Options for handling of link access keys\&. An HTML document can use the ACCESSKEY attribute to assign an access key to an element\&. When an access key is pressed, the corresponding element will be given focus\&.
.PP
document\&.browse\&.accesskey\&.auto_follow \fB[0|1]\fR (default: 0)
.RS 4
Automatically follow a link or submit a form if appropriate accesskey is pressed \(en this is the standard behaviour, but it\'s considered dangerous\&.
.RE
.PP
document\&.browse\&.accesskey\&.display \fB[0|1]\fR (default: 0)
.RS 4
Display access key in link info\&.
.RE
.PP
document\&.browse\&.accesskey\&.priority \fB<num>\fR (default: 0)
.RS 4
Priority of \'accesskey\' HTML attribute:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is first try all normal bindings; if it fails, check accesskey
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is first try only frame bindings; if it fails, check accesskey
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is first check accesskey (this can be dangerous)
.RE
.RE
.SS "document\&.browse\&.forms (Forms)"
Options for handling of the forms interaction\&.
.PP
document\&.browse\&.forms\&.auto_submit \fB[0|1]\fR (default: 1)
.RS 4
Automagically submit a form when enter is pressed with a text field selected\&.
.RE
.PP
document\&.browse\&.forms\&.confirm_submit \fB[0|1]\fR (default: 1)
.RS 4
Ask for confirmation when submitting a form\&.
.RE
.PP
document\&.browse\&.forms\&.input_size \fB<num>\fR (default: 20)
.RS 4
Default form input size if none is specified\&.
.RE
.PP
document\&.browse\&.forms\&.insert_mode \fB[0|1]\fR (default: 1)
.RS 4
The setting for this option affects how key presses are handled when one selects a text\-input form\-field\&. When enabled, one must explicitly \'enter\' a selected text\-field to edit it; this prevents text fields from capturing key presses, such as presses of a scroll key, when it is inadvertently selected\&. When disabled, key presses are always inserted into a selected text field\&.
.RE
.PP
document\&.browse\&.forms\&.editor \fB<str>\fR (default: "")
.RS 4
Path to the executable that
ELinks
should launch when the user requests to edit a textarea with an external editor\&.
.sp
If this is blank,
ELinks
will use the value of the environmental variable
\fB$EDITOR\fR\&. If
\fB$EDITOR\fR
is empty or not set,
ELinks
will then default to
\fBvi\fR\&.
.RE
.PP
document\&.browse\&.forms\&.show_formhist \fB[0|1]\fR (default: 0)
.RS 4
Ask if a login form should be saved to file or not\&. This option only disables the dialog, already saved login forms are unaffected\&.
.RE
.SS "document\&.browse\&.images (Images)"
Options for handling of images\&.
.PP
document\&.browse\&.images\&.display_style \fB<num>\fR (default: 2)
.RS 4
Display style for image tags when displayed:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means always display
IMG
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means always display filename
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means display
alt/title
attribute if possible,
IMG
if not
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 means display
alt/title
attribute if possible, filename if not
.RE
.RE
.PP
document\&.browse\&.images\&.filename_maxlen \fB<num>\fR (default: 0)
.RS 4
Maximum length of image filename when displayed:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means always display full filename
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1\-500 means display filename with this maximal length; if it is longer, the middle is substituted by an asterisk
.RE
.RE
.PP
document\&.browse\&.images\&.image_link_tagging \fB<num>\fR (default: 1)
.RS 4
When to enclose image links:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means never
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means never if alt or title are provided (old behavior)
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means always
.RE
.RE
.PP
document\&.browse\&.images\&.image_link_prefix \fB<str>\fR (default: "[")
.RS 4
Prefix string to use to mark image links\&.
.RE
.PP
document\&.browse\&.images\&.image_link_suffix \fB<str>\fR (default: "]")
.RS 4
Suffix string to use to mark image links\&.
.RE
.PP
document\&.browse\&.images\&.label_maxlen \fB<num>\fR (default: 0)
.RS 4
Maximum length of image label (alt/title):
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means always display full label
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1\-500 means display label with this maximal length; if it is longer, the middle is substituted by an asterisk
.RE
.RE
.PP
document\&.browse\&.images\&.show_as_links \fB[0|1]\fR (default: 0)
.RS 4
Display links to images without an
alt
attribute\&. If this option is off, these images are completely invisible\&.
.RE
.PP
document\&.browse\&.images\&.show_any_as_links \fB[0|1]\fR (default: 1)
.RS 4
Display links to any images in the document, regardless of them having an
alt
attribute or not\&. If this option is off, the alt attribute contents is shown, but as normal text, not selectable as a link\&.
.RE
.SS "document\&.browse\&.links (Links)"
Options for handling of links to other documents\&.
.PP
document\&.browse\&.links\&.color_dirs \fB[0|1]\fR (default: 1)
.RS 4
Highlight links to directories in FTP and local directory listing\&.
.RE
.PP
document\&.browse\&.links\&.numbering \fB[0|1]\fR (default: 0)
.RS 4
Display numbers next to the links\&.
.RE
.PP
document\&.browse\&.links\&.target_blank \fB<num>\fR (default: 0)
.RS 4
Define how to handle links having target=_blank set:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means open link in current tab
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means open link in new tab in foreground
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means open link in new tab in background
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 means open link in new window
.RE
.RE
.PP
document\&.browse\&.links\&.use_tabindex \fB[0|1]\fR (default: 1)
.RS 4
Whether to navigate links using tabindex specified ordering\&. The
TABINDEX
attribute in HTML elements specifies the order in which links should receive focus when using the keyboard to navigate the document\&.
.RE
.PP
document\&.browse\&.links\&.missing_fragment \fB[0|1]\fR (default: 1)
.RS 4
Open a message box when document has no tag with given id\&.
.RE
.PP
document\&.browse\&.links\&.number_keys_select_link \fB<num>\fR (default: 1)
.RS 4
Number keys select links rather than specify command prefixes\&. This is a tristate:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means never
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means if document\&.browse\&.links\&.numbering = 1
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means always
.RE
.RE
.PP
document\&.browse\&.links\&.warn_malicious \fB[0|1]\fR (default: 1)
.RS 4
When following a link the user ID part of the URI is checked and if a maliciously crafted URI is detected a warning dialog will ask before following the link\&.
.RE
.PP
document\&.browse\&.links\&.wraparound \fB[0|1]\fR (default: 0)
.RS 4
When pressing \'down\' on the last link, jump to the first one, and vice versa\&.
.RE
.SS "document\&.browse\&.links\&.active_link (Active link)"
Options for the active link\&.
.PP
document\&.browse\&.links\&.active_link\&.enable_color \fB[0|1]\fR (default: 0)
.RS 4
Enable use of the active link background and text color settings instead of the link colors from the document\&.
.RE
.PP
document\&.browse\&.links\&.active_link\&.bold \fB[0|1]\fR (default: 0)
.RS 4
Make the active link text bold\&.
.RE
.PP
document\&.browse\&.links\&.active_link\&.invert \fB[0|1]\fR (default: 1)
.RS 4
Invert the fore\- and background color so the link stands out\&.
.RE
.PP
document\&.browse\&.links\&.active_link\&.underline \fB[0|1]\fR (default: 0)
.RS 4
Underline the active link\&.
.RE
.SS "document\&.browse\&.links\&.active_link\&.colors (Colors)"
Active link colors\&.
.PP
document\&.browse\&.links\&.active_link\&.colors\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.PP
document\&.browse\&.links\&.active_link\&.colors\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.SS "document\&.browse\&.scrolling (Scrolling)"
Scrolling options\&.
.PP
document\&.browse\&.scrolling\&.horizontal_extended \fB[0|1]\fR (default: 1)
.RS 4
Whether to allow horizontal scrolling when the document does not extend off the screen\&. Useful for copy/paste operations\&.
.RE
.PP
document\&.browse\&.scrolling\&.horizontal_step \fB<num>\fR (default: 8)
.RS 4
Number of columns to scroll when a key bound to scroll\-left or scroll\-right is pressed and no prefix was given\&.
.RE
.PP
document\&.browse\&.scrolling\&.margin \fB<num>\fR (default: 3)
.RS 4
Size of the virtual margin \(en when you click inside of that margin, document scrolls in that direction\&.
.RE
.PP
document\&.browse\&.scrolling\&.vertical_overlap \fB<num>\fR (default: 0)
.RS 4
Number of overlapping lines between the new page displayed and the previous one when scrolling one page up or down\&.
.RE
.PP
document\&.browse\&.scrolling\&.vertical_step \fB<num>\fR (default: 2)
.RS 4
Number of lines to scroll when a key bound to scroll\-up or scroll\-down is pressed and no prefix was given\&.
.RE
.SS "document\&.browse\&.search (Searching)"
Options for searching\&.
.PP
document\&.browse\&.search\&.case \fB[0|1]\fR (default: 0)
.RS 4
Whether the search should match the document text while maintaining case sensitivity\&.
.RE
.PP
document\&.browse\&.search\&.regex \fB<num>\fR (default: 0)
.RS 4
Enable searching with regular expressions:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 for plain text searching
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 for basic regular expression searches
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 for extended regular expression searches
.RE
.RE
.PP
document\&.browse\&.search\&.show_hit_top_bottom \fB[0|1]\fR (default: 1)
.RS 4
Whether to show a dialog when the search hits the top or bottom of the document\&.
.RE
.PP
document\&.browse\&.search\&.wraparound \fB[0|1]\fR (default: 1)
.RS 4
Wrap around when searching\&. Currently only used for typeahead\&.
.RE
.PP
document\&.browse\&.search\&.show_not_found \fB<num>\fR (default: 2)
.RS 4
How to inform the user when nothing is matched:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means do nothing
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means beep the terminal
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means pop up message box
.RE
.RE
.PP
document\&.browse\&.search\&.typeahead \fB<num>\fR (default: 0)
.RS 4
Start typeahead searching when an unbound key is pressed without any modifiers\&. Note that most keys have default bindings, so this feature will not be useful unless you unbind them\&.
.sp
.RS 4
\h'-04'\(bu\h'+03'0 disables this feature; typeahead searching will only be used when you press a key bound to search\-typeahead or similar
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 automatically starts typeahead searching thru link text
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 automatically starts typeahead searching thru all document text
.RE
.RE
.SS "document\&.cache (Cache)"
Cache options\&.
.PP
document\&.cache\&.cache_redirects \fB[0|1]\fR (default: 0)
.RS 4
Cache even redirects sent by server (usually thru HTTP by a 302 HTTP code and a Location header)\&. This was the original behaviour for quite some time, but it causes problems in a situation very common to various web login systems \(en frequently, when accessing a certain location, they will redirect you to a login page if they don\'t receive an auth cookie, the login page then gives you the cookie and redirects you back to the original page, but there you have already cached redirect back to the login page! If this option has value of 0, this malfunction is fixed, but occasionally you may get superfluous (depends on how you take it ;\-) requests to the server\&. If this option has value of 1, experienced users can still workaround it by clever combination of usage of reload, jumping around in session history and hitting ctrl+enter\&.
.sp
Note that this option is checked when retrieving the information from cache, not when saving it to cache \(en thus if you enable it, even previous redirects will be taken from cache instead of asking the server\&.
.RE
.PP
document\&.cache\&.ignore_cache_control \fB[0|1]\fR (default: 1)
.RS 4
Ignore Cache\-Control and Pragma server headers\&. When set, the document is cached even with \'Cache\-Control: no\-cache\'\&.
.RE
.PP
document\&.cache\&.revalidation_interval \fB<num>\fR (default: \-1)
.RS 4
Period in seconds that a cache entry is considered to be up\-to\-date\&. When a document is loaded and this interval has elapsed since the document was initially loaded or most recently revalidated with the server, the server will be checked in case there is a more up\-to\-date version of the document\&.
.sp
A value of \-1 disables automatic revalidation\&.
.RE
.SS "document\&.cache\&.format (Formatted documents)"
Format cache options\&.
.PP
document\&.cache\&.format\&.size \fB<num>\fR (default: 5)
.RS 4
Number of cached formatted pages\&. Do not get too generous here, \'formatted\' means that all the accompanying structures are kept in memory so that you get the cached document immediately, but these structures may take a lot \(en 2x the size of the HTML source is probably not unusual, but it can be even more if the document consists of a lot of short lines (padded right, if possible) and links and not much other markup\&. So if you set this to 256 and then you don\'t like your
ELinks
eating 90M, don\'t come complaining to us\&. ;\-)
.sp
Also note that the format cache itself is not counted to the memory cache size, but the HTML source of the formatted documents is always cached, even if it is over the memory cache size threshold\&. (Then of course no other documents can be cached\&.)
.RE
.SS "document\&.cache\&.memory (Memory cache)"
Memory cache options\&.
.PP
document\&.cache\&.memory\&.size \fB<num>\fR (default: 1048576)
.RS 4
Memory cache size (in bytes)\&.
.RE
.SS "document\&.codepage (Charset)"
Charset options\&.
.PP
document\&.codepage\&.assume \fB<codepage>\fR (default: System)
.RS 4
Default document codepage\&. \'System\' stands for a codepage determined by a selected locale\&.
.RE
.PP
document\&.codepage\&.force_assumed \fB[0|1]\fR (default: 0)
.RS 4
Ignore charset info sent by server\&.
.RE
.SS "document\&.colors (Default color settings)"
Default document color settings\&.
.PP
document\&.colors\&.text \fB<color|#rrggbb>\fR (default: gray75)
.RS 4
Default text color\&.
.RE
.PP
document\&.colors\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.PP
document\&.colors\&.link \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default link color\&.
.RE
.PP
document\&.colors\&.vlink \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default visited link color\&.
.RE
.PP
document\&.colors\&.image \fB<color|#rrggbb>\fR (default: darkolivegreen)
.RS 4
Default image link color\&.
.RE
.PP
document\&.colors\&.bookmark \fB<color|#rrggbb>\fR (default: hotpink)
.RS 4
Default bookmarked link color\&.
.RE
.PP
document\&.colors\&.dirs \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default directory color\&.
.sp
See
document\&.browse\&.links\&.color_dirs
option\&.
.RE
.PP
document\&.colors\&.increase_contrast \fB[0|1]\fR (default: 1)
.RS 4
Increase the contrast between the foreground and background colors to ensure readability\&. For example it disallows dark colors on a black background\&. Note, this is different from ensuring the contrast with the ensure_contrast option\&.
.RE
.PP
document\&.colors\&.ensure_contrast \fB[0|1]\fR (default: 1)
.RS 4
Makes sure that the back\- and foreground colors are never equal\&.
.RE
.PP
document\&.colors\&.use_document_colors \fB<num>\fR (default: 2)
.RS 4
Use colors specified in document:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is use always the default settings
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is use document colors if available, except background
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is use document colors, including background\&. This can mostly look very impressive, but some sites will appear really ugly\&. Note, that obviously if the background is not black, it will break the behaviour of transparency\&.
.RE
.RE
.SS "document\&.css (Cascading Style Sheets)"
Options concerning how to use CSS for styling documents\&.
.PP
document\&.css\&.enable \fB[0|1]\fR (default: 1)
.RS 4
Enable adding of CSS style info to documents\&.
.RE
.PP
document\&.css\&.ignore_display_none \fB[0|1]\fR (default: 1)
.RS 4
When enabled, elements are rendered, even when their display property has the value "none"\&. Because
ELinks\'s CSS support is still very incomplete, this setting can improve the way that some documents are rendered\&.
.RE
.PP
document\&.css\&.import \fB[0|1]\fR (default: 1)
.RS 4
When enabled any external style sheets that are imported from either CSS itself using the @import keyword or from the HTML using <link> tags in the document header will also be downloaded\&.
.RE
.PP
document\&.css\&.media \fB<str>\fR (default: "tty")
.RS 4
CSS media types that
ELinks
claims to support, separated with commas\&. The "all" type is implied\&. Currently, only ASCII characters work reliably here\&. See CSS2 section 7:
\fIhttp://www\&.w3\&.org/TR/1998/REC\-CSS2\-19980512/media\&.html\fR
.RE
.PP
document\&.css\&.stylesheet \fB<str>\fR (default: "")
.RS 4
The path to the file containing the default user defined Cascading Style Sheet\&. It can be used to control the basic layout of HTML documents\&. The path is assumed to be relative to
ELinks\' home directory\&.
.sp
Leave as "" to use built\-in document styling\&.
.RE
.SS "document\&.download (Downloading)"
Options regarding files downloading and handling\&.
.PP
document\&.download\&.directory \fB<str>\fR (default: "\&./")
.RS 4
Default download directory\&.
.RE
.PP
document\&.download\&.set_original_time \fB[0|1]\fR (default: 0)
.RS 4
Set the timestamp of each downloaded file to the timestamp stored on the server\&.
.RE
.PP
document\&.download\&.overwrite \fB<num>\fR (default: 2)
.RS 4
Prevent overwriting the local files:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is files will silently be overwritten
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is add a suffix \&.{number} (for example \'\&.1\') to the name
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is ask the user
.RE
.RE
.PP
document\&.download\&.notify_bell \fB<num>\fR (default: 0)
.RS 4
Audio notification when download is completed:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is never
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is when background notification is active
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is always
.RE
.RE
.SS "document\&.dump (Dump output)"
Dump output options\&.
.PP
document\&.dump\&.codepage \fB<codepage>\fR (default: System)
.RS 4
Codepage used in dump output\&. \'System\' stands for a codepage determined by a selected locale\&.
.RE
.PP
document\&.dump\&.color_mode \fB<num>\fR (default: \-1)
.RS 4
Color mode for dumps\&.
.sp
Some modes may have been disabled at compile time\&. The Setup \-> Terminal options dialog lists the modes supported by this executable\&. If you select an unsupported mode,
ELinks
uses 16 colors\&.
.sp
The color modes are:
.sp
.RS 4
\h'-04'\(bu\h'+03'\-1 is standard dump mode
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is mono mode
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is 16 color mode
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is 88 color mode
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is 256 color mode
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'4 is true color mode
.RE
.RE
.PP
document\&.dump\&.footer \fB<str>\fR (default: "")
.RS 4
Footer string used in dumps\&. %u is substituted by URL\&.
.RE
.PP
document\&.dump\&.header \fB<str>\fR (default: "")
.RS 4
Header string used in dumps\&. %u is substituted by URL\&.
.RE
.PP
document\&.dump\&.numbering \fB[0|1]\fR (default: 1)
.RS 4
Whether to print link numbers in dump output\&.
.RE
.PP
document\&.dump\&.references \fB[0|1]\fR (default: 1)
.RS 4
Whether to print references (URIs) of document links in dump output\&.
.RE
.PP
document\&.dump\&.separator \fB<str>\fR (default: " ")
.RS 4
String which separates two dumps\&.
.RE
.PP
document\&.dump\&.width \fB<num>\fR (default: 80)
.RS 4
Width of screen in characters when dumping documents\&.
.RE
.SS "document\&.history (History)"
History options\&.
.PP
document\&.history\&.keep_unhistory \fB[0|1]\fR (default: 1)
.RS 4
Keep unhistory ("forward history")\&.
.RE
.SS "document\&.history\&.global (Global history)"
Global history options\&.
.PP
document\&.history\&.global\&.enable \fB[0|1]\fR (default: 1)
.RS 4
Enable global history ("history of all pages visited")\&.
.RE
.PP
document\&.history\&.global\&.max_items \fB<num>\fR (default: 1024)
.RS 4
Maximum number of entries in the global history\&.
.RE
.PP
document\&.history\&.global\&.display_type \fB<num>\fR (default: 0)
.RS 4
What to display in global history dialog:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is URLs
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is page titles
.RE
.RE
.SS "document\&.html (HTML rendering)"
Options concerning the display of HTML pages\&.
.PP
document\&.html\&.display_frames \fB[0|1]\fR (default: 1)
.RS 4
Display frames\&.
.RE
.PP
document\&.html\&.display_tables \fB[0|1]\fR (default: 1)
.RS 4
Display tables\&.
.RE
.PP
document\&.html\&.display_subs \fB[0|1]\fR (default: 1)
.RS 4
Display subscripts (as [thing])\&.
.RE
.PP
document\&.html\&.display_sups \fB[0|1]\fR (default: 1)
.RS 4
Display superscripts (as ^thing)\&.
.RE
.PP
document\&.html\&.link_display \fB<num>\fR (default: 2)
.RS 4
How to render <link> tags from the HTML header:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is nothing
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is title
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is name in addition
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is hreflang in addition
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'4 is type in addition
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'5 is everything
.RE
.RE
.PP
document\&.html\&.underline_links \fB[0|1]\fR (default: 0)
.RS 4
Underline links\&.
.RE
.PP
document\&.html\&.wrap_nbsp \fB[0|1]\fR (default: 0)
.RS 4
If set do not honour non breaking space (the nbsp entity) but allows one to wrap the text\&. This can help keeping the width of documents down so no horizontal scrolling is needed\&.
.RE
.SS "document\&.plain (Plain rendering)"
Options concerning the display of plain text pages\&.
.PP
document\&.plain\&.display_links \fB[0|1]\fR (default: 0)
.RS 4
Display URIs in the document as links\&.
.RE
.PP
document\&.plain\&.compress_empty_lines \fB[0|1]\fR (default: 0)
.RS 4
Compress successive empty lines to only one in displayed text\&.
.RE
.SS "document\&.uri_passing (URI passing)"
Rules for passing URIs to external commands\&. When one rule is defined the link and tab menu will have a menu item that makes it possible to pass the the link, frame or tab URI to an external command\&. If several rules are defined the link and tab menu will have a submenu of items for each rule\&.
.sp
Note, this is mostly useful for launching graphical viewers, since there is no support for releasing the terminal while the command runs\&. The action and submenus are also available by binding keys to the frame\-external\-command, the link\-external\-command, and the tab\-external\-command actions\&.
.PP
document\&.uri_passing\&._template_ \fB<str>\fR (default: "")
.RS 4
A rule for passing URI to an external command\&. The format is:
.sp
.RS 4
\h'-04'\(bu\h'+03'%c in the string means the current URL
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%% in the string means \'%\'
.RE
.IP "" 4
Do
\fBnot\fR
put single\- or double\-quotes around %c\&.
.RE
.SS "ecmascript (ECMAScript)"
ECMAScript options\&.
.PP
ecmascript\&.enable \fB[0|1]\fR (default: 0)
.RS 4
Whether to run those scripts inside of documents\&.
.RE
.PP
ecmascript\&.error_reporting \fB[0|1]\fR (default: 0)
.RS 4
Open a message box when a script reports an error\&.
.RE
.PP
ecmascript\&.ignore_noscript \fB[0|1]\fR (default: 0)
.RS 4
Whether to ignore content enclosed by the <noscript> tag when ECMAScript is enabled\&.
.RE
.PP
ecmascript\&.max_exec_time \fB<num>\fR (default: 5)
.RS 4
Maximum execution time in seconds for a script\&.
.RE
.PP
ecmascript\&.block_window_opening \fB[0|1]\fR (default: 0)
.RS 4
Whether to disallow scripts to open new windows or tabs\&.
.RE
.SS "infofiles (Information files)"
Options for information files in \fI~/\&.elinks\fR\&.
.PP
infofiles\&.save_interval \fB<num>\fR (default: 300)
.RS 4
Interval at which to trigger information files in
\fI~/\&.elinks\fR
to be saved to disk if they have changed (seconds; 0 to disable)
.RE
.PP
infofiles\&.secure_save \fB[0|1]\fR (default: 1)
.RS 4
First write data to unique temporary file, then rename this file upon successfully finishing this\&. Note that this relates only to config files, not downloaded files\&. You may want to disable it if you are using some exotic permissions for concerned files\&. Secure file saving is automagically disabled if file is symlink\&.
.sp
Warning: some systems (ie\&. OS/2, Win32) require that destination file doesn\'t exist when
\fBrename\fR(3)
is called, breaking atomicity, and reducing reliability of this feature\&.
.RE
.PP
infofiles\&.secure_save_fsync \fB[0|1]\fR (default: 1)
.RS 4
When using secure file saving, call
\fBfsync\fR(3), if the OS supports it, to force the OS immediately to write the data to permanent storage\&. This is optional for those who wish to avoid excessive disk I/O\&.
.RE
.SS "mime (MIME)"
MIME\-related options (handlers of various MIME types)\&.
.PP
mime\&.default_type \fB<str>\fR (default: "application/octet\-stream")
.RS 4
Document MIME\-type to assume by default (when we are unable to guess it properly from known information about the document)\&.
.RE
.SS "mime\&.extension (File extension associations)"
Extension \(<> MIME type association\&.
.PP
mime\&.extension\&._template_ \fB<str>\fR (default: "")
.RS 4
MIME\-type matching this file extension (\'*\' is used here in place of \'\&.\')\&.
.RE
.SS "mime\&.handler (File type handlers)"
A file type handler is a set of information about how to use an external program to view a file\&. It is possible to refer to it for several MIME types \(em e\&.g\&., you can define an \'image\' handler to which mime\&.type\&.image\&.png, mime\&.type\&.image\&.jpeg, and so on will refer; or one might define a handler for a more specific type of file \(em e\&.g\&., PDF files\&. Note you must define both a MIME handler and a MIME type association for it to work\&.
.sp
.SS "mime\&.handler\&._template_ (Template option folder)"
Description of this handler\&.
.sp
.SS "mime\&.handler\&._template_\&._template_ (Template option folder)"
System\-specific handler description (ie\&. unix, unix\-xwin, \&.\&.\&.)\&.
.PP
mime\&.handler\&._template_\&._template_\&.ask \fB[0|1]\fR (default: 1)
.RS 4
Ask before opening\&.
.RE
.PP
mime\&.handler\&._template_\&._template_\&.block \fB[0|1]\fR (default: 1)
.RS 4
Block the terminal when the handler is running\&.
.RE
.PP
mime\&.handler\&._template_\&._template_\&.program \fB<str>\fR (default: "")
.RS 4
External viewer for this file type\&. \'%\' in this string will be substituted by a file name\&. Do
\fBnot\fR
put single\- or double\-quotes around the % sign\&.
.RE
.SS "mime\&.mailcap (Mailcap)"
Options for mailcap support\&.
.PP
mime\&.mailcap\&.enable \fB[0|1]\fR (default: 1)
.RS 4
Enable mailcap support\&.
.RE
.PP
mime\&.mailcap\&.path \fB<str>\fR (default: "~/\&.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap:/usr/share/mailcap:/usr/share/misc/mailcap")
.RS 4
Mailcap search path\&. Colon\-separated list of files\&. Leave as "" to use
\fBMAILCAP\fR
environment variable instead\&.
.RE
.PP
mime\&.mailcap\&.ask \fB[0|1]\fR (default: 1)
.RS 4
Ask before using the handlers defined by mailcap\&.
.RE
.PP
mime\&.mailcap\&.description \fB<num>\fR (default: 0)
.RS 4
Type of description to show in "what to do with this file" query dialog:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is show "mailcap"
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is show program to be run
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is show mailcap description field if any; "mailcap" otherwise
.RE
.RE
.PP
mime\&.mailcap\&.prioritize \fB[0|1]\fR (default: 1)
.RS 4
Prioritize entries by the order of the files in the mailcap path\&. This means that wildcard entries (like: image/*) will also be checked before deciding the handler\&.
.RE
.SS "mime\&.mimetypes (Mimetypes files)"
Options for the support of \fImime\&.types\fR files\&. These files can be used to find the content type of a URL by looking at the extension of the file name\&.
.PP
mime\&.mimetypes\&.enable \fB[0|1]\fR (default: 1)
.RS 4
Enable
\fImime\&.types\fR
support\&.
.RE
.PP
mime\&.mimetypes\&.path \fB<str>\fR (default: "~/\&.mime\&.types:/etc/mime\&.types:/usr/etc/mime\&.types:/usr/local/etc/mime\&.types:/usr/share/mime\&.types:/usr/share/misc/mime\&.types")
.RS 4
The search path for
\fImime\&.types\fR
files\&. Colon\-separated list of files\&.
.RE
.SS "mime\&.type (MIME type associations)"
Handler \(<> MIME type association\&. The first sub\-tree is the MIME class while the second sub\-tree is the MIME type (ie\&. image/gif handler will reside at mime\&.type\&.image\&.gif)\&. Each MIME type option should contain (case\-sensitive) name of the MIME handler (its properties are stored at mime\&.handler\&.<name>)\&.
.sp
.SS "mime\&.type\&._template_ (Template option folder)"
Handler matching this MIME\-type class (\'*\' is used here in place of \'\&.\')\&.
.PP
mime\&.type\&._template_\&._template_ \fB<str>\fR (default: "")
.RS 4
Handler matching this MIME\-type name (\'*\' is used here in place of \'\&.\')\&.
.RE
.SS "protocol (Protocols)"
Protocol specific options\&.
.PP
protocol\&.no_proxy \fB<str>\fR (default: "")
.RS 4
Comma separated list of domains for which the proxy (HTTP/FTP) should be disabled\&. Optionally, a port can be specified for some domains as well\&. If it\'s blank,
\fBNO_PROXY\fR
environment variable is checked as well\&.
.RE
.SS "protocol\&.bittorrent (BitTorrent)"
BitTorrent specific options\&.
.PP
protocol\&.bittorrent\&.piece_cache_size \fB<num>\fR (default: 1048576)
.RS 4
The maximum amount of memory used to hold recently downloaded pieces\&.
.sp
Set to 0 to have unlimited size\&.
.RE
.PP
protocol\&.bittorrent\&.max_uploads \fB<num>\fR (default: 7)
.RS 4
The maximum number of uploads to allow at once\&.
.RE
.PP
protocol\&.bittorrent\&.min_uploads \fB<num>\fR (default: 2)
.RS 4
The minimum number of uploads which should at least be used for new connections\&.
.RE
.PP
protocol\&.bittorrent\&.request_queue_size \fB<num>\fR (default: 5)
.RS 4
How many piece requests to continuously keep in queue\&. Pipelining of requests is essential to saturate connections and get a good connection performance and thus a faster download\&. However, a very big queue size can lead to wasting bandwidth near the end of the connection since remaining piece blocks will be requested from multiple peers\&.
.RE
.PP
protocol\&.bittorrent\&.choke_interval \fB<num>\fR (default: 10)
.RS 4
The number of seconds between updating the connection state and most importantly choke and unchoke peer connections\&. The choke period should be big enough for newly unchoked connections to get started but small enough to not allow freeriders too much room for stealing bandwidth\&.
.RE
.PP
protocol\&.bittorrent\&.rarest_first_cutoff \fB<num>\fR (default: 4)
.RS 4
The number of pieces to obtain before switching piece selection strategy from random to rarest first\&.
.RE
.PP
protocol\&.bittorrent\&.allow_blacklist \fB[0|1]\fR (default: 1)
.RS 4
Allow blacklisting of buggy peers\&.
.RE
.SS "protocol\&.bittorrent\&.ports (Port range)"
Port range allowed to be used for listening on\&.
.PP
protocol\&.bittorrent\&.ports\&.min \fB<num>\fR (default: 6881)
.RS 4
The minimum port to try and listen on\&.
.RE
.PP
protocol\&.bittorrent\&.ports\&.max \fB<num>\fR (default: 6999)
.RS 4
The maximum port to try and listen on\&.
.RE
.SS "protocol\&.bittorrent\&.tracker (Tracker)"
Tracker options\&.
.PP
protocol\&.bittorrent\&.tracker\&.compact \fB[0|1]\fR (default: 0)
.RS 4
Whether to request that the tracker returns peer info in compact format\&. Note, the compact format only supports IPv4 addresses\&.
.RE
.PP
protocol\&.bittorrent\&.tracker\&.interval \fB<num>\fR (default: 0)
.RS 4
The number of seconds to wait between periodically contacting the tracker for announcing progress and requesting more peers\&. Set to zero to use the interval requested by the tracker\&.
.RE
.PP
protocol\&.bittorrent\&.tracker\&.ip_address \fB<str>\fR (default: "")
.RS 4
What IP address to report to the tracker\&. If set to "" no IP address will be sent and the tracker will automatically determine an appropriate IP address\&.
.RE
.PP
protocol\&.bittorrent\&.tracker\&.key \fB<str>\fR (default: "")
.RS 4
An additional identification that is not shared with any users\&. It is intended to allow a client to prove their identity should their IP address change\&. It is an optional parameter, but some trackers require this parameter\&. If set to "" no user key will be sent to the tracker\&.
.RE
.PP
protocol\&.bittorrent\&.tracker\&.numwant \fB<num>\fR (default: 50)
.RS 4
The maximum number of peers to request from the tracker\&. Set to 0 to use the server default\&.
.RE
.PP
protocol\&.bittorrent\&.tracker\&.min_skip_size \fB<num>\fR (default: 20)
.RS 4
The minimum number of peers to have in the current peer info pool before skipping requesting of more peers\&. I\&.e\&. setting numwant to zero\&. Set to 0 to not have any limit\&.
.RE
.SS "protocol\&.bittorrent\&.peerwire (Peer\-wire)"
Lowlevel peer\-wire options\&.
.PP
protocol\&.bittorrent\&.peerwire\&.connections \fB<num>\fR (default: 55)
.RS 4
The maximum number of allowed connections to both active and non\-active peers\&. By increasing the number of allowed connections, the chance of finding good peers to download from is increased\&. However, too many connections can lead to TCP congestion\&. If the maximum is reached all new incoming connections will be closed\&.
.RE
.PP
protocol\&.bittorrent\&.peerwire\&.max_message_length \fB<num>\fR (default: 8388608)
.RS 4
The maximum length of messages to accept over the wire\&. Larger values will cause the connection to be dropped\&.
.RE
.PP
protocol\&.bittorrent\&.peerwire\&.max_request_length \fB<num>\fR (default: 8388608)
.RS 4
The maximum length to allow for incoming requests\&. Larger requests will cause the connection to be dropped\&.
.RE
.PP
protocol\&.bittorrent\&.peerwire\&.request_length \fB<num>\fR (default: 16384)
.RS 4
How many bytes to query for per request\&. This is complementary to the max_request_length option\&. If the configured length is bigger than the piece length it will be truncated\&.
.RE
.PP
protocol\&.bittorrent\&.peerwire\&.timeout \fB<num>\fR (default: 300)
.RS 4
The number of seconds to wait before closing a socket on which nothing has been received or sent\&.
.RE
.PP
protocol\&.bittorrent\&.peerwire\&.pool_size \fB<num>\fR (default: 55)
.RS 4
Maximum number of items in the peer pool\&. The peer pool contains information used for establishing connections to new peers\&.
.sp
Set to 0 to have unlimited size\&.
.RE
.SS "protocol\&.file (Local files)"
Options specific to local browsing\&.
.PP
protocol\&.file\&.allow_special_files \fB[0|1]\fR (default: 0)
.RS 4
Whether to allow reading from non\-regular files\&. Note this can be dangerous; reading
\fI/dev/urandom\fR
or
\fI/dev/zero\fR
can ruin your day!
.RE
.PP
protocol\&.file\&.show_hidden_files \fB[0|1]\fR (default: 1)
.RS 4
When set to false, files with name starting with a dot will be hidden in local directory listings\&.
.RE
.PP
protocol\&.file\&.try_encoding_extensions \fB[0|1]\fR (default: 1)
.RS 4
When set, if we can\'t open a file named \'filename\', we\'ll try to open \'filename\' with some encoding extension appended (ie\&. \'filename\&.gz\'); it depends on the supported encodings\&.
.RE
.SS "protocol\&.file\&.cgi (Local CGI)"
Local CGI specific options\&.
.PP
protocol\&.file\&.cgi\&.path \fB<str>\fR (default: "")
.RS 4
Colon separated list of directories, where CGI scripts are stored\&.
.RE
.PP
protocol\&.file\&.cgi\&.policy \fB[0|1]\fR (default: 0)
.RS 4
Whether to execute local CGI scripts\&.
.RE
.SS "protocol\&.ftp (FTP)"
FTP specific options\&.
.PP
protocol\&.ftp\&.anon_passwd \fB<str>\fR (default: "some@host\&.domain")
.RS 4
FTP anonymous password to be sent\&.
.RE
.PP
protocol\&.ftp\&.use_pasv \fB[0|1]\fR (default: 1)
.RS 4
Use PASV instead of PORT (passive vs active mode, IPv4 only)\&.
.RE
.PP
protocol\&.ftp\&.use_epsv \fB[0|1]\fR (default: 0)
.RS 4
Use EPSV instead of EPRT (passive vs active mode, IPv6 only)\&.
.RE
.SS "protocol\&.ftp\&.proxy (Proxy configuration)"
FTP proxy configuration\&.
.PP
protocol\&.ftp\&.proxy\&.host \fB<str>\fR (default: "")
.RS 4
Host and port\-number (host:port) of the FTP proxy, or blank\&. If it\'s blank,
\fBFTP_PROXY\fR
environment variable is checked as well\&.
.RE
.SS "protocol\&.http (HTTP)"
HTTP\-specific options\&.
.PP
protocol\&.http\&.accept_language \fB<str>\fR (default: "")
.RS 4
Send Accept\-Language header\&.
.RE
.PP
protocol\&.http\&.accept_ui_language \fB[0|1]\fR (default: 1)
.RS 4
Request localised versions of documents from web\-servers (using the Accept\-Language header) using the language you have configured for
ELinks\' user\-interface (this also affects navigator\&.language ECMAScript value available to scripts)\&. Note that some see this as a potential security risk because it tells web\-masters and the FBI sniffers about your language preference\&.
.RE
.PP
protocol\&.http\&.compression \fB[0|1]\fR (default: 0)
.RS 4
If enabled, the capability to receive compressed content (gzip and/or bzip2) is announced to the server, which usually sends the reply compressed, thus saving some bandwidth at slight CPU expense\&.
.sp
If
ELinks
displays a incomplete page or garbage, try disabling this option\&. If that helps, there may be a bug in the decompression part of
ELinks\&. Please report such bugs\&.
.sp
If
ELinks
has been compiled without compression support, this option has no effect\&. To check the supported features, see Help \-> About\&.
.RE
.PP
protocol\&.http\&.trace \fB[0|1]\fR (default: 0)
.RS 4
If active, all HTTP requests are sent with TRACE as their method rather than GET or POST\&. This is useful for debugging of both
ELinks
and various server\-side scripts \(em the server only returns the client\'s request back to the client verbatim\&. Note that this type of request may not be enabled on all servers\&.
.RE
.PP
protocol\&.http\&.user_agent \fB<str>\fR (default: "ELinks/%v (textmode; %s; %t\-%b)")
.RS 4
Change the User Agent ID\&. That means identification string, which is sent to HTTP server when a document is requested\&. The \'textmode\' token in the first field is our silent attempt to establish this as a standard for new textmode user agents, so that the webmasters can have just a single uniform test for these if they are e\&.g\&. pushing some lite version to them automagically\&.
.sp
Use " " if you don\'t want any User\-Agent header to be sent at all\&.
.sp
.RS 4
\h'-04'\(bu\h'+03'%v in the string means
ELinks
version,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%s in the string means system identification,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%t in the string means size of the terminal,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%b in the string means number of bars displayed by
ELinks\&.
.RE
.RE
.SS "protocol\&.http\&.bugs (Server bug workarounds)"
Server\-side HTTP bugs workarounds\&.
.PP
protocol\&.http\&.bugs\&.accept_charset \fB[0|1]\fR (default: 1)
.RS 4
The Accept\-Charset header is quite long and sending it can trigger bugs in some rarely found servers\&.
.RE
.PP
protocol\&.http\&.bugs\&.allow_blacklist \fB[0|1]\fR (default: 1)
.RS 4
Allow blacklisting of buggy servers\&.
.RE
.PP
protocol\&.http\&.bugs\&.broken_302_redirect \fB[0|1]\fR (default: 1)
.RS 4
Broken 302 redirect (violates RFC but compatible with Netscape)\&. This is a problem for a lot of web discussion boards and the like\&. If they will do strange things to you, try to play with this\&.
.RE
.PP
protocol\&.http\&.bugs\&.post_no_keepalive \fB[0|1]\fR (default: 0)
.RS 4
Disable keepalive connection after POST request\&.
.RE
.PP
protocol\&.http\&.bugs\&.http10 \fB[0|1]\fR (default: 0)
.RS 4
Use HTTP/1\&.0 protocol instead of HTTP/1\&.1\&.
.RE
.SS "protocol\&.http\&.proxy (Proxy configuration)"
HTTP proxy configuration\&.
.PP
protocol\&.http\&.proxy\&.host \fB<str>\fR (default: "")
.RS 4
Host and port\-number (host:port) of the HTTP proxy, or blank\&. If it\'s blank,
\fBHTTP_PROXY\fR
environment variable is checked as well\&.
.RE
.PP
protocol\&.http\&.proxy\&.user \fB<str>\fR (default: "")
.RS 4
Proxy authentication username\&.
.RE
.PP
protocol\&.http\&.proxy\&.passwd \fB<str>\fR (default: "")
.RS 4
Proxy authentication password\&.
.RE
.SS "protocol\&.http\&.referer (Referer sending)"
HTTP referer sending options\&. HTTP referer is a special header sent in the HTTP requests, which is supposed to contain the previous page visited by the browser\&.This way, the server can know what link did you follow when accessing that page\&. However, this behaviour can unfortunately considerably affect privacy and can lead even to a security problem on some badly designed web pages\&.
.PP
protocol\&.http\&.referer\&.policy \fB<num>\fR (default: 3)
.RS 4
Mode of sending HTTP referer:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is send no referer
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is send current URL as referer
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is send fixed fake referer
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is send previous URL as referer (correct, but insecure)
.RE
.RE
.PP
protocol\&.http\&.referer\&.fake \fB<str>\fR (default: "")
.RS 4
Fake referer to be sent when policy is 2\&.
.RE
.SS "protocol\&.https (HTTPS)"
HTTPS\-specific options\&.
.sp
.SS "protocol\&.https\&.proxy (Proxy configuration)"
HTTPS proxy configuration\&.
.PP
protocol\&.https\&.proxy\&.host \fB<str>\fR (default: "")
.RS 4
Host and port\-number (host:port) of the HTTPS CONNECT proxy, or blank\&. If it\'s blank,
\fBHTTPS_PROXY\fR
environment variable is checked as well\&.
.RE
.SS "protocol\&.nntp (NNTP)"
NNTP and news specific options\&.
.PP
protocol\&.nntp\&.server \fB<str>\fR (default: "")
.RS 4
Used when resolving news: URIs\&. If set to the empty string the value of the
\fBNNTPSERVER\fR
environment variable will be used\&.
.RE
.PP
protocol\&.nntp\&.header_entries \fB<str>\fR (default: "Subject,From,Date,Message\-ID,Newsgroups")
.RS 4
Comma separated list of which entries in the article header to show\&. E\&.g\&. \'Subject\' and \'From\'\&. All header entries can be read in the header info dialog\&.
.RE
.SS "protocol\&.rewrite (URI rewriting)"
Rules for rewriting URIs entered in the goto dialog\&. It makes it possible to define a set of prefixes that will be expanded if they match a string entered in the goto dialog\&. The prefixes can be dumb, meaning that they work only like URI abbreviations, or smart ones, making it possible to pass arguments to them like search engine keywords\&.
.PP
protocol\&.rewrite\&.default_template \fB<str>\fR (default: "")
.RS 4
Default URI template used when the string entered in the goto dialog does not appear to be a URI or a filename (i\&.e\&. contains no \'\&.\', \':\' or \'/\' characters), and does not match any defined prefixes\&. Set the value to "" to disable use of the default template rewrite rule\&.
.sp
.RS 4
\h'-04'\(bu\h'+03'%c in the template means the current URL,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%s in the template means the whole string from the goto dialog,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%0,%1,\&.\&.\&.,%9 mean the 1st,2nd,\&.\&.\&.,10th space\-delimited part of %s,
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%% in the template means \'%\'\&.
.RE
.RE
.PP
protocol\&.rewrite\&.enable\-dumb \fB[0|1]\fR (default: 1)
.RS 4
Enable dumb prefixes \(en simple URI abbreviations which can be written to the
Goto URL
dialog instead of actual URIs \(en i\&.e\&. if you write \'elinks\' there, you are directed to
\fIhttp://elinks\&.cz/\fR\&.
.RE
.PP
protocol\&.rewrite\&.enable\-smart \fB[0|1]\fR (default: 1)
.RS 4
Enable smart prefixes \(en URI templates triggered by writing given abbreviation to the
Goto URL
dialog followed by a list of arguments from which the actual URI is composed \(en i\&.e\&. \'gg:search keywords\' or \'gn search keywords for news\'\&.
.RE
.SS "protocol\&.rewrite\&.dumb (Dumb Prefixes)"
Dumb prefixes, see enable\-dumb description for details\&.
.PP
protocol\&.rewrite\&.dumb\&._template_ \fB<str>\fR (default: "")
.RS 4
Replacement URI for this dumbprefix:
.sp
.RS 4
\h'-04'\(bu\h'+03'%c in the string means the current URL
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%% in the string means \'%\'
.RE
.RE
.SS "protocol\&.rewrite\&.smart (Smart Prefixes)"
Smart prefixes, see enable\-smart description for details\&.
.PP
protocol\&.rewrite\&.smart\&._template_ \fB<str>\fR (default: "")
.RS 4
Replacement URI for this smartprefix:
.sp
.RS 4
\h'-04'\(bu\h'+03'%c in the string means the current URL
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%s in the string means the whole argument to smartprefix
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%0,%1,\&.\&.\&.,%9 means argument 0, 1, \&.\&.\&., 9
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%% in the string means \'%\'
.RE
.RE
.SS "protocol\&.user (User protocols)"
User protocols\&. Options in this tree specify external handlers for the appropriate protocols\&. Ie\&. protocol\&.user\&.mailto\&.unix\&.
.sp
.SS "protocol\&.user\&._template_ (Template option folder)"
Handler (external program) for this protocol\&. Name the options in this tree after your system (ie\&. unix, unix\-xwin)\&.
.PP
protocol\&.user\&._template_\&._template_ \fB<str>\fR (default: "")
.RS 4
Handler (external program) for this protocol and system\&.
.sp
.RS 4
\h'-04'\(bu\h'+03'%f in the string means file name to include form data from
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%h in the string means hostname (or email address)
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%p in the string means port
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%d in the string means path (everything after the port)
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%s in the string means subject (?subject=<this>)
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'%u in the string means the whole URL
.RE
.RE
.SS "terminal (Terminals)"
Terminal options\&.
.sp
.SS "terminal\&._template_ (Template option folder)"
Options specific to this terminal type (according to \fB$TERM\fR value)\&.
.PP
terminal\&._template_\&.type \fB<num>\fR (default: 0)
.RS 4
Terminal type; matters mostly only when drawing frames and dialog box borders:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is dumb terminal type, ASCII art
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is VT100, simple but portable
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is Linux, you get double frames and other goodies
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is KOI\-8
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'4 is FreeBSD
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'5 is fbterm
.RE
.RE
.PP
terminal\&._template_\&.latin1_title \fB[0|1]\fR (default: 1)
.RS 4
When updating the window title of
\fBxterm\fR
or a similar terminal emulator, encode the title in ISO\-8859\-1 (Latin\-1), rather than in the charset used for other text in the window\&. Cyrillic and other characters get replaced with Latin ones\&. Xterm requires this unless you explicitly enable UTF\-8 titles in it\&.
.sp
If this option does not take effect immediately, try switching to a different page so that
ELinks
notices it needs to update the title\&.
.RE
.PP
terminal\&._template_\&.m11_hack \fB[0|1]\fR (default: 0)
.RS 4
Switch fonts when drawing lines, enabling both local characters and lines working at the same time\&.
ELinks
uses this option only if UTF\-8 I/O is disabled and the terminal type is Linux or FreeBSD\&.
.RE
.PP
terminal\&._template_\&.utf_8_io \fB[0|1]\fR (default: 0)
.RS 4
Enable I/O in UTF\-8 for Unicode terminals\&. Note that currently, only the subset of UTF\-8 according to terminal codepage is used\&.
ELinks
ignores this option if the terminal codepage is UTF\-8\&.
.RE
.PP
terminal\&._template_\&.combine \fB[0|1]\fR (default: 0)
.RS 4
Enable combining characters\&. It works only with the
\fBxterm\fR
in UTF\-8 mode\&.
.RE
.PP
terminal\&._template_\&.restrict_852 \fB[0|1]\fR (default: 0)
.RS 4
Restrict the characters used when drawing lines\&. Makes sense only with linux terminals using the cp850/852 character sets\&.
.RE
.PP
terminal\&._template_\&.block_cursor \fB[0|1]\fR (default: 0)
.RS 4
Move cursor to bottom right corner when done drawing\&. This is particularly useful when we have a block cursor, so that inversed text is displayed correctly\&.
.RE
.PP
terminal\&._template_\&.colors \fB<num>\fR (default: 0)
.RS 4
The color mode controls what colors are used and how they are output to the terminal\&.
.sp
Some modes may have been disabled at compile time\&. The Setup \-> Terminal options dialog lists the modes supported by this executable\&. If you select an unsupported mode,
ELinks
uses 16 colors\&.
.sp
The color modes are:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is mono mode, only 2 colors are used
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is 16 color mode, uses the common ANSI colors
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is 88 color mode, uses XTerm RGB codes
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'3 is 256 color mode, uses XTerm RGB codes
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'4 is true color mode, uses konsole RGB codes
.RE
.RE
.PP
terminal\&._template_\&.transparency \fB[0|1]\fR (default: 0)
.RS 4
If we should not set the background to black\&. This is particularly useful when we have a terminal (typically in some windowing environment) with a background image or a transparent background \(en it will be visible in
ELinks
as well (but
ELinks
document color handling will still assume the background is black so if you have a bright background you might experience contrast problems)\&. Note that this option makes sense only when colors are enabled\&.
.RE
.PP
terminal\&._template_\&.italic \fB[0|1]\fR (default: 0)
.RS 4
If we should use italics\&.
.RE
.PP
terminal\&._template_\&.underline \fB[0|1]\fR (default: 0)
.RS 4
If we should use underline or enhance the color instead\&.
.RE
.PP
terminal\&._template_\&.charset \fB<codepage>\fR (default: System)
.RS 4
Codepage of charset used for displaying content on terminal\&. \'System\' stands for a codepage determined by a selected locale\&.
.RE
.SS "ui (User interface)"
User interface options\&.
.PP
ui\&.date_format \fB<str>\fR (default: "%b %e %H:%M")
.RS 4
Date format to use in dialogs\&. See
\fBstrftime\fR(3)\&.
.RE
.PP
ui\&.language \fB<language>\fR (default: "System")
.RS 4
Language of user interface\&. \'System\' means that the language will be extracted from the environment dynamically\&.
.RE
.PP
ui\&.show_menu_bar_always \fB[0|1]\fR (default: 0)
.RS 4
Always show menu bar on the screen\&.
.RE
.PP
ui\&.show_status_bar \fB[0|1]\fR (default: 1)
.RS 4
Show status bar on the screen\&.
.RE
.PP
ui\&.show_title_bar \fB[0|1]\fR (default: 1)
.RS 4
Show title bar on the screen\&.
.RE
.PP
ui\&.startup_goto_dialog \fB[0|1]\fR (default: 1)
.RS 4
Pop up goto dialog in newly created tabs when there\'s no homepage set\&. This means also showing goto dialog on startup\&.
.RE
.PP
ui\&.success_msgbox \fB[0|1]\fR (default: 1)
.RS 4
When you pressed a
Save
button in some manager, this option will make sure that a box confirming success of the operation will pop up\&.
.RE
.PP
ui\&.window_title \fB[0|1]\fR (default: 1)
.RS 4
Set the window title when running in a windowing environment in an
\fBxterm\fR\-like terminal\&. This way the document\'s title is shown on the window titlebar\&.
.RE
.SS "ui\&.clock (Clock)"
Digital clock in the status bar\&.
.PP
ui\&.clock\&.enable \fB[0|1]\fR (default: 0)
.RS 4
Whether to display a digital clock in the status bar\&.
.RE
.PP
ui\&.clock\&.format \fB<str>\fR (default: "[%H:%M]")
.RS 4
Format string for the digital clock\&. See the
\fBstrftime\fR(3)
manpage for details\&.
.RE
.SS "ui\&.colors (Color settings)"
Default user interface color settings\&.
.sp
.SS "ui\&.colors\&.color (Color terminals)"
Color settings for color terminal\&.
.sp
.SS "ui\&.colors\&.color\&.mainmenu (Main menu bar)"
Main menu bar colors\&.
.sp
.SS "ui\&.colors\&.color\&.mainmenu\&.normal (Unselected main menu bar item)"
Unselected main menu bar item colors\&.
.PP
ui\&.colors\&.color\&.mainmenu\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.mainmenu\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.mainmenu\&.selected (Selected main menu bar item)"
Selected main menu bar item colors\&.
.PP
ui\&.colors\&.color\&.mainmenu\&.selected\&.text \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.mainmenu\&.selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.mainmenu\&.hotkey (Hotkey)"
Main menu hotkey colors\&.
.sp
.SS "ui\&.colors\&.color\&.mainmenu\&.hotkey\&.normal (Unselected hotkey)"
Main menu unselected hotkey colors\&.
.PP
ui\&.colors\&.color\&.mainmenu\&.hotkey\&.normal\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.mainmenu\&.hotkey\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.mainmenu\&.hotkey\&.selected (Selected hotkey)"
Main menu selected hotkey colors\&.
.PP
ui\&.colors\&.color\&.mainmenu\&.hotkey\&.selected\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.mainmenu\&.hotkey\&.selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu (Menu bar)"
Menu bar colors\&.
.sp
.SS "ui\&.colors\&.color\&.menu\&.normal (Unselected menu item)"
Unselected menu item colors\&.
.PP
ui\&.colors\&.color\&.menu\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu\&.selected (Selected menu item)"
Selected menu item colors\&.
.PP
ui\&.colors\&.color\&.menu\&.selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu\&.marked (Marked menu item)"
Marked menu item colors\&.
.PP
ui\&.colors\&.color\&.menu\&.marked\&.text \fB<color|#rrggbb>\fR (default: red)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.marked\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu\&.hotkey (Hotkey)"
Menu item hotkey colors\&.
.sp
.SS "ui\&.colors\&.color\&.menu\&.hotkey\&.normal (Unselected hotkey)"
Menu item unselected hotkey colors\&.
.PP
ui\&.colors\&.color\&.menu\&.hotkey\&.normal\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.hotkey\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu\&.hotkey\&.selected (Selected hotkey)"
Menu item selected hotkey colors\&.
.PP
ui\&.colors\&.color\&.menu\&.hotkey\&.selected\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.hotkey\&.selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.menu\&.frame (Menu frame)"
Menu frame colors\&.
.PP
ui\&.colors\&.color\&.menu\&.frame\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.menu\&.frame\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog (Dialog)"
Dialog colors\&.
.sp
.SS "ui\&.colors\&.color\&.dialog\&.generic (Generic)"
Generic dialog colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.generic\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.generic\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.frame (Frame)"
Dialog frame colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.frame\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.frame\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.scrollbar (Scrollbar)"
Scrollbar colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.scrollbar\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.scrollbar\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.scrollbar\-selected (Selected scrollbar)"
Scrollbar selected colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.scrollbar\-selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.scrollbar\-selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.title (Title)"
Dialog title colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.title\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.title\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.text (Text)"
Dialog text colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.text\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.text\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.checkbox (Checkbox)"
Dialog checkbox colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.checkbox\-selected (Selected checkbox)"
Dialog selected checkbox colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\-selected\&.text \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\-selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.checkbox\-label (Checkbox label)"
Dialog checkbox label colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\-label\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.checkbox\-label\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.button (Button)"
Dialog button colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.button\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.button\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.button\-selected (Selected button)"
Dialog selected button colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.button\-selected\&.text \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.button\-selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.button\-shortcut (Button shortcut)"
Dialog button colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.button\-shortcut\&.text \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.button\-shortcut\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.button\-shortcut\-selected (Selected button shortcut)"
Dialog selected button colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.button\-shortcut\-selected\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.button\-shortcut\-selected\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.field (Text field)"
Dialog text field colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.field\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.field\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.field\-text (Text field text)"
Dialog field text colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.field\-text\&.text \fB<color|#rrggbb>\fR (default: yellow)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.field\-text\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.meter (Meter)"
Dialog meter colors\&.
.PP
ui\&.colors\&.color\&.dialog\&.meter\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.meter\&.background \fB<color|#rrggbb>\fR (default: blue)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.dialog\&.shadow (Shadow)"
Dialog shadow colors (see ui\&.shadows option)\&.
.PP
ui\&.colors\&.color\&.dialog\&.shadow\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.dialog\&.shadow\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.title (Title bar)"
Title bar colors\&.
.sp
.SS "ui\&.colors\&.color\&.title\&.title\-bar (Generic title bar)"
Generic title bar colors\&.
.PP
ui\&.colors\&.color\&.title\&.title\-bar\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.title\&.title\-bar\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.title\&.title\-text (Title bar text)"
Title bar text colors\&.
.PP
ui\&.colors\&.color\&.title\&.title\-text\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.title\&.title\-text\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.status (Status bar)"
Status bar colors\&.
.sp
.SS "ui\&.colors\&.color\&.status\&.status\-bar (Generic status bar)"
Generic status bar colors\&.
.PP
ui\&.colors\&.color\&.status\&.status\-bar\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.status\&.status\-bar\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.status\&.status\-text (Status bar text)"
Status bar text colors\&.
.PP
ui\&.colors\&.color\&.status\&.status\-text\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.status\&.status\-text\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.tabs (Tabs bar)"
Tabs bar colors\&.
.sp
.SS "ui\&.colors\&.color\&.tabs\&.unvisited (Unvisited tab)"
Tab colors for tabs that have not been selected since they completed loading\&.
.PP
ui\&.colors\&.color\&.tabs\&.unvisited\&.text \fB<color|#rrggbb>\fR (default: darkblue)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.tabs\&.unvisited\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.tabs\&.normal (Unselected tab)"
Unselected tab colors\&.
.PP
ui\&.colors\&.color\&.tabs\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.tabs\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.tabs\&.loading (Loading tab)"
Tab colors for tabs that are loading in the background\&.
.PP
ui\&.colors\&.color\&.tabs\&.loading\&.text \fB<color|#rrggbb>\fR (default: darkred)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.tabs\&.loading\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.tabs\&.selected (Selected tab)"
Selected tab colors\&.
.PP
ui\&.colors\&.color\&.tabs\&.selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.tabs\&.selected\&.background \fB<color|#rrggbb>\fR (default: green)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.tabs\&.separator (Tab separator)"
Tab separator colors\&.
.PP
ui\&.colors\&.color\&.tabs\&.separator\&.text \fB<color|#rrggbb>\fR (default: brown)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.tabs\&.separator\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.color\&.searched (Searched strings)"
Searched string highlight colors\&.
.PP
ui\&.colors\&.color\&.searched\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.color\&.searched\&.background \fB<color|#rrggbb>\fR (default: lime)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono (Non\-color terminals)"
Color settings for non\-color terminal\&.
.sp
.SS "ui\&.colors\&.mono\&.mainmenu (Main menu bar)"
Main menu bar colors\&.
.sp
.SS "ui\&.colors\&.mono\&.mainmenu\&.normal (Unselected main menu bar item)"
Unselected main menu bar item colors\&.
.PP
ui\&.colors\&.mono\&.mainmenu\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.mainmenu\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.mainmenu\&.selected (Selected main menu bar item)"
Selected main menu bar item colors\&.
.PP
ui\&.colors\&.mono\&.mainmenu\&.selected\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.mainmenu\&.selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.mainmenu\&.hotkey (Hotkey)"
Main menu hotkey colors\&.
.sp
.SS "ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.normal (Unselected hotkey)"
Main menu unselected hotkey colors\&.
.PP
ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.selected (Selected hotkey)"
Main menu selected hotkey colors\&.
.PP
ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.mainmenu\&.hotkey\&.selected\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu (Menu bar)"
Menu bar colors\&.
.sp
.SS "ui\&.colors\&.mono\&.menu\&.normal (Unselected menu item)"
Unselected menu item colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu\&.selected (Selected menu item)"
Selected menu item colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.selected\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu\&.marked (Marked menu item)"
Marked menu item colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.marked\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.marked\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu\&.hotkey (Hotkey)"
Menu item hotkey colors\&.
.sp
.SS "ui\&.colors\&.mono\&.menu\&.hotkey\&.normal (Unselected hotkey)"
Menu item unselected hotkey colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.hotkey\&.normal\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.hotkey\&.normal\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu\&.hotkey\&.selected (Selected hotkey)"
Menu item selected hotkey colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.hotkey\&.selected\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.hotkey\&.selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.menu\&.frame (Menu frame)"
Menu frame colors\&.
.PP
ui\&.colors\&.mono\&.menu\&.frame\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.menu\&.frame\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog (Dialog)"
Dialog colors\&.
.sp
.SS "ui\&.colors\&.mono\&.dialog\&.generic (Generic)"
Generic dialog colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.generic\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.generic\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.frame (Frame)"
Dialog frame colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.frame\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.frame\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.scrollbar (Scrollbar)"
Scrollbar colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.scrollbar\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.scrollbar\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.scrollbar\-selected (Selected scrollbar)"
Scrollbar selected colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.scrollbar\-selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.scrollbar\-selected\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.title (Title)"
Dialog title colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.title\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.title\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.text (Text)"
Dialog text colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.text\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.text\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.checkbox (Checkbox)"
Dialog checkbox colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.checkbox\-selected (Selected checkbox)"
Dialog selected checkbox colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\-selected\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\-selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.checkbox\-label (Checkbox label)"
Dialog checkbox label colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\-label\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.checkbox\-label\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.button (Button)"
Dialog button colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.button\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.button\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.button\-selected (Selected button)"
Dialog selected button colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.button\-selected\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.button\-selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.button\-shortcut (Button shortcut)"
Dialog button colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.button\-shortcut\&.text \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.button\-shortcut\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.button\-shortcut\-selected (Selected button shortcut)"
Dialog selected button colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.button\-shortcut\-selected\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.button\-shortcut\-selected\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.field (Text field)"
Dialog text field colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.field\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.field\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.field\-text (Text field text)"
Dialog field text colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.field\-text\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.field\-text\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.meter (Meter)"
Dialog meter colors\&.
.PP
ui\&.colors\&.mono\&.dialog\&.meter\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.meter\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.dialog\&.shadow (Shadow)"
Dialog shadow colors (see ui\&.shadows option)\&.
.PP
ui\&.colors\&.mono\&.dialog\&.shadow\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.dialog\&.shadow\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.title (Title bar)"
Title bar colors\&.
.sp
.SS "ui\&.colors\&.mono\&.title\&.title\-bar (Generic title bar)"
Generic title bar colors\&.
.PP
ui\&.colors\&.mono\&.title\&.title\-bar\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.title\&.title\-bar\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.title\&.title\-text (Title bar text)"
Title bar text colors\&.
.PP
ui\&.colors\&.mono\&.title\&.title\-text\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.title\&.title\-text\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.status (Status bar)"
Status bar colors\&.
.sp
.SS "ui\&.colors\&.mono\&.status\&.status\-bar (Generic status bar)"
Generic status bar colors\&.
.PP
ui\&.colors\&.mono\&.status\&.status\-bar\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.status\&.status\-bar\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.status\&.status\-text (Status bar text)"
Status bar text colors\&.
.PP
ui\&.colors\&.mono\&.status\&.status\-text\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.status\&.status\-text\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.tabs (Tabs bar)"
Tabs bar colors\&.
.sp
.SS "ui\&.colors\&.mono\&.tabs\&.unvisited (Unvisited tab)"
Tab colors for tabs that have not been selected since they completed loading\&.
.PP
ui\&.colors\&.mono\&.tabs\&.unvisited\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.tabs\&.unvisited\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.tabs\&.normal (Unselected tab)"
Unselected tab colors\&.
.PP
ui\&.colors\&.mono\&.tabs\&.normal\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.tabs\&.normal\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.tabs\&.loading (Loading tab)"
Tab colors for tabs that are loading in the background\&.
.PP
ui\&.colors\&.mono\&.tabs\&.loading\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.tabs\&.loading\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.tabs\&.selected (Selected tab)"
Selected tab colors\&.
.PP
ui\&.colors\&.mono\&.tabs\&.selected\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.tabs\&.selected\&.background \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.tabs\&.separator (Tab separator)"
Tab separator colors\&.
.PP
ui\&.colors\&.mono\&.tabs\&.separator\&.text \fB<color|#rrggbb>\fR (default: gray)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.tabs\&.separator\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.colors\&.mono\&.searched (Searched strings)"
Searched string highlight colors\&.
.PP
ui\&.colors\&.mono\&.searched\&.text \fB<color|#rrggbb>\fR (default: black)
.RS 4
Default text color\&.
.RE
.PP
ui\&.colors\&.mono\&.searched\&.background \fB<color|#rrggbb>\fR (default: white)
.RS 4
Default background color\&.
.RE
.SS "ui\&.dialogs (Dialog settings)"
Dialogs\-specific appearance and behaviour settings\&.
.PP
ui\&.dialogs\&.listbox_min_height \fB<num>\fR (default: 10)
.RS 4
Minimal height of the listbox widget (used e\&.g\&. for bookmarks or global history)\&.
.RE
.PP
ui\&.dialogs\&.shadows \fB[0|1]\fR (default: 0)
.RS 4
Make dialogs drop shadows (the shadows are solid, you can adjust their color by ui\&.colors\&.*\&.dialog\&.shadow)\&. You may also want to eliminate the wide borders by adjusting
\fIsetup\&.h\fR\&.
.RE
.PP
ui\&.dialogs\&.underline_hotkeys \fB[0|1]\fR (default: 0)
.RS 4
Whether to underline hotkeys in menus to make them more visible\&. Requires that underlining is enabled for the terminal\&.
.RE
.PP
ui\&.dialogs\&.underline_button_shortcuts \fB[0|1]\fR (default: 0)
.RS 4
Whether to underline button shortcuts to make them more visible\&. Requires that underlining is enabled for the terminal\&.
.RE
.SS "ui\&.leds (LEDs)"
LEDs (visual indicators) options\&.
.PP
ui\&.leds\&.enable \fB[0|1]\fR (default: 0)
.RS 4
Enable LEDs\&. These visual indicators will inform you about various states\&.
.RE
.SS "ui\&.sessions (Sessions)"
Sessions settings\&.
.PP
ui\&.sessions\&.auto_restore \fB[0|1]\fR (default: 0)
.RS 4
Automatically restore the session at start\&.
.sp
This feature requires bookmark support\&.
.RE
.PP
ui\&.sessions\&.auto_save \fB[0|1]\fR (default: 0)
.RS 4
Automatically save the session when quitting\&.
.sp
This feature requires bookmark support\&.
.RE
.PP
ui\&.sessions\&.auto_save_foldername \fB<str>\fR (default: "Auto saved session")
.RS 4
Name of the bookmarks folder used for auto saving and restoring session\&. The name has to be unique\&. Any folders with the same name will be deleted\&.
.sp
This only makes sense with bookmark support\&.
.RE
.PP
ui\&.sessions\&.homepage \fB<str>\fR (default: "")
.RS 4
The URI to load either at startup time when no URI was given on the command line or when requested by the goto\-url\-home action\&. Set to "" if the environment variable
\fBWWW_HOME\fR
should be used as homepage URI instead\&.
.RE
.PP
ui\&.sessions\&.keep_session_active \fB[0|1]\fR (default: 0)
.RS 4
Keep the session active even if the last terminal exits\&.
.RE
.PP
ui\&.sessions\&.snapshot \fB[0|1]\fR (default: 0)
.RS 4
Automatically save a snapshot of all tabs periodically\&. This will periodically bookmark the tabs of each terminal in a separate folder for recovery after a crash\&.
.sp
This feature requires bookmark support\&.
.RE
.SS "ui\&.tabs (Window tabs)"
Window tabs settings\&.
.PP
ui\&.tabs\&.show_bar \fB<num>\fR (default: 1)
.RS 4
Show tabs bar on the screen:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 means never
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 means only if two or more tabs are open
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 means always
.RE
.RE
.PP
ui\&.tabs\&.top \fB[0|1]\fR (default: 0)
.RS 4
Whether display tab bar at top like other browsers do\&.
.RE
.PP
ui\&.tabs\&.wraparound \fB[0|1]\fR (default: 1)
.RS 4
When moving right from the last tab, jump to the first one, and vice versa\&.
.RE
.PP
ui\&.tabs\&.confirm_close \fB[0|1]\fR (default: 0)
.RS 4
When closing a tab show confirmation dialog\&.
.RE
.SS "ui\&.timer (Timer options)"
Timed action after certain interval of user inactivity\&. Someone can even find this useful, although you may not believe that\&.
.PP
ui\&.timer\&.enable \fB<num>\fR (default: 0)
.RS 4
Whether to enable the timer or not:
.sp
.RS 4
\h'-04'\(bu\h'+03'0 is don\'t count down anything
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'1 is count down, but don\'t show the timer
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'2 is count down and show the timer near LEDs
.RE
.RE
.PP
ui\&.timer\&.duration \fB<num>\fR (default: 86400)
.RS 4
Inactivity timeout in seconds\&. The maximum of one day should be enough for just everyone (TM)\&.
.RE
.PP
ui\&.timer\&.action \fB<str>\fR (default: "")
.RS 4
Keybinding action to be triggered when timer reaches zero\&.
.RE
.SH "SEE ALSO"
\fBelinks\fR(1), \fBelinkskeys\fR(5)
.sp