File: cmds.html

package info (click to toggle)
doublecmd-help 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,724 kB
  • sloc: makefile: 8
file content (3031 lines) | stat: -rw-r--r-- 192,292 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
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
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
  <head>
    <title>DC - Internal Commands</title>
    <link rel="STYLESHEET" type="text/css" href="doublecmd.css">
    <link rel="shortcut icon" href="../../pixmaps/common/favicon.ico">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>

  <body>
    <a name="topofpage"></a>
    <div class="header"><a href="index.html"><img src="../../pixmaps/common/dclogo2017.png" alt="Double Commander" height="48" width="374"></a>
      <div id="global-nav" class="nav"><a title="Double Commander" href="http://doublecmd.sourceforge.net/" target="_blank">Homepage</a></div>
    </div>
    <div class="footer"><div class="nav"><a title="Index" href="index.html">Index</a> | <a title="Previous page" href="variables.html">Previous</a> | <a title="Next page" href="regexp.html">Next</a></div></div>

    <div class="dchelpage">
      <div>
        <h1>2.8. Internal Commands</h1>
      </div>

      <div>
        <h2>Content</h2>
        <dl>
          <dt class="bold"><a name="TOC">Content</a></dt>
          <dt>1. <a href="#commandcategory">Table of Command Categories</a></dt>
          <dt>2. <a href="#commanddescription">Description of all commands by category</a></dt>
          <dd>
            <dl>
              <dt>2.1. <a href="#catactivepanel">Active Panel</a></dt>
              <dt>2.2. <a href="#catleftpanel">Left Panel</a></dt>
              <dt>2.3. <a href="#catrightpanel">Right Panel</a></dt>
              <dt>2.4. <a href="#catfileoperations">File Operations</a></dt>
              <dt>2.5. <a href="#catconfiguration">Configuration</a></dt>
              <dt>2.6. <a href="#catnetwork">Network</a></dt>
              <dt>2.7. <a href="#catmiscellaneous">Miscellaneous</a></dt>
              <dt>2.8. <a href="#catmark">Mark</a></dt>
              <dt>2.9. <a href="#catclipboard">Clipboard</a></dt>
              <dt>2.10. <a href="#catnavigation">Navigation</a></dt>
              <dt>2.11. <a href="#cathelp">Help</a></dt>
              <dt>2.12. <a href="#catwindow">Window</a></dt>
              <dt>2.13. <a href="#catcommandline">Command Line</a></dt>
              <dt>2.14. <a href="#cattools">Tools</a></dt>
              <dt>2.15. <a href="#catview">View</a></dt>
              <dt>2.16. <a href="#cattabs">Tabs</a></dt>
              <dt>2.17. <a href="#catlogs">Logs</a></dt>
            </dl>
          </dd>
        </dl>
      </div>

      <div>
        <h2><a name="commandcategory">1. Table of Command Categories</a></h2>
      </div>

      <div>
        <p>Internal commands may be groups by categories so here they are:</p>
        <table>
          <tr class="rowcategorytable"><th colspan="2">Table of Command Categories</th></tr>
          <tr class="rowcategorysubtitle"><th class="categorynamecolumn">Category</th><th class="categorydesccolumn">Description</th></tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catactivepanel">Active Panel</a></div></td>
            <td class="categorydesc">These commands apply to the <B>current selected panel</b>, left or right.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catleftpanel">Left Panel</a></div></td>
            <td class="categorydesc">These commands apply to the <B>left panel</b>, no matter which one is currently selected.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catrightpanel">Right Panel</a></div></td>
            <td class="categorydesc">These commands apply to the <B>right panel</b>, no matter which one is currently selected.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catfileoperations">File Operations</a></div></td>
            <td class="categorydesc">These commands apply to current selected item in current selected panel.<br>It includes operations like view/copy/move/rename/delete/pack/unpack/split, etc.<br>These are the commands that can have a <B>direct impact on your files</b>.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catconfiguration">Configuration</a></div></td>
            <td class="categorydesc">Access options and configurations of Double Commander.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catnetwork">Network</a></div></td>
            <td class="categorydesc">Related directly with computer network.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catmiscellaneous">Miscellaneous</a></div></td>
            <td class="categorydesc">Inevitable category with those commands which we did not know in which category to place them!<br>Effort has been made to try not to place too many commands in this category.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catmark">Mark</a></div></td>
            <td class="categorydesc">Select the items on which file operations will take place.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catclipboard">Clipboard</a></div></td>
            <td class="categorydesc">Interaction between the system clipboard and selected items.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catnavigation">Navigation</a></div></td>
            <td class="categorydesc">To move from one folder to another to access different items according to their location.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#cathelp">Help</a></div></td>
            <td class="categorydesc">Access the integrated help files of Double Commander.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catwindow">Window</a></div></td>
            <td class="categorydesc">Commands related to the Double Commander window, its look and behaviour like any other computer application.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catcommandline">Command line</a></div></td>
            <td class="categorydesc">Interact with command line to view past commands and help to invoke new ones.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#cattools">Tools</a></div></td>
            <td class="categorydesc">For action requiring more than a click. These action will generally show another window to have Double Commander do some more complex jobs.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catview">View</a></div></td>
            <td class="categorydesc">Commands related with the visibility and appearance of data files, system files, etc.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#cattabs">Tabs</a></div></td>
            <td class="categorydesc">Interact with tabs by creating new ones, navigate from directory to directory, etc.</td>
          </tr>
          <tr>
            <td class="categorycell"><div class="categoryname"><a href="#catlogs">Logs</a></div></td>
            <td class="categorydesc">Actions related with DC log files.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="commanddescription">2. Description of all commands per category</a></h2>
        <p>Here is a quick description of all the internal command.</p>
        <p>For each of them we will:</p>
        <ul>
          <li>list the command name</li>
          <li>display its icon</li>
          <li>when applicable, its default keyboard shortcut</li>
          <li>a quick description of it</li>
          <li>when applicable, quick description of possible parameters of it</li>
        </ul>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catactivepanel">2.1. Active Panel</a></h2>
        <p>These commands apply to the <B>current selected panel</b>, left or right.</p>
        <table>
          <tr class="rowcategorytitle"><th colspan="2">Category "Active Panel"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_BriefView" alt="cm_BriefView" src="../../pixmaps/dctheme/32x32/actions/cm_briefview.png">
              <div class="cmdname"><a name="cm_BriefView">cm_BriefView</a></div>
              <div class="shrtctkey">Ctrl+F1</div></td>
            <td class="cmdhintcell">Just the name of the items.<BR>If possible, more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ColumnsView" alt="cm_ColumnsView" src="../../pixmaps/dctheme/32x32/actions/cm_columnsview.png">
              <div class="cmdname"><a name="cm_ColumnsView">cm_ColumnsView</a></div>
              <div class="shrtctkey">Ctrl+F2</div></td>
            <td class="cmdhintcell">One item per line, with default or user defined columns.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">columnset</td>
                  <td class="innerdescvaluecell"><I>column set name</i></td>
                  <td class="innerdescdesccell">show user defined column set<sup><acronym title="Requires Double Commander 0.9">[*]</acronym></sup></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">show default column set</td>
                </tr>
              </table>
            See <a href="help.html#5_1_15_colonki">column section</a> in main help file.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ThumbnailsView" alt="cm_ThumbnailsView" src="../../pixmaps/dctheme/32x32/actions/cm_thumbnailsview.png">
              <div class="cmdname"><a name="cm_ThumbnailsView">cm_ThumbnailsView</a></div>
              <div class="shrtctkey">Ctrl+Shift+F1</div></td>
            <td class="cmdhintcell">Items shown as small images.<BR>If possible, in more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FlatView" alt="cm_FlatView" src="../../pixmaps/dctheme/32x32/actions/cm_flatview.png">
              <div class="cmdname"><a name="cm_FlatView">cm_FlatView</a></div>
              <div class="shrtctkey">Ctrl+B</div></td>
            <td class="cmdhintcell">Will scan all the directories of active panel to show all content in one single panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_QuickView" alt="cm_QuickView" src="../../pixmaps/dctheme/32x32/actions/cm_quickview.png">
              <div class="cmdname"><a name="cm_QuickView">cm_QuickView</a></div>
              <div class="shrtctkey">Ctrl+Q</div></td>
            <td class="cmdhintcell">Content of selected item shown in opposite panel.<BR>As we navigate to next items, displayed content is updated.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SortByName" alt="cm_SortByName" src="../../pixmaps/dctheme/32x32/actions/cm_sortbyname.png">
              <div class="cmdname"><a name="cm_SortByName">cm_SortByName</a></div>
              <div class="shrtctkey">Ctrl+F3</div></td>
            <td class="cmdhintcell">Sort items in active panel by <a href="help.html#cm_SortByName">name</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SortByExt" alt="cm_SortByExt" src="../../pixmaps/dctheme/32x32/actions/cm_sortbyext.png">
              <div class="cmdname"><a name="cm_SortByExt">cm_SortByExt</a></div>
              <div class="shrtctkey">Ctrl+F4</div></td>
            <td class="cmdhintcell">Sort items in active panel by <a href="help.html#cm_SortByExt">extension</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SortBySize" alt="cm_SortBySize" src="../../pixmaps/dctheme/32x32/actions/cm_sortbysize.png">
              <div class="cmdname"><a name="cm_SortBySize">cm_SortBySize</a></div>
              <div class="shrtctkey">Ctrl+F6</div></td>
            <td class="cmdhintcell">Sort items in active panel by <a href="help.html#cm_SortBySize">file size</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SortByDate" alt="cm_SortByDate" src="../../pixmaps/dctheme/32x32/actions/cm_sortbydate.png">
              <div class="cmdname"><a name="cm_SortByDate">cm_SortByDate</a></div>
              <div class="shrtctkey">Ctrl+F5</div></td>
            <td class="cmdhintcell">Sort items in active panel by <a href="help.html#cm_SortByDate">date</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SortByAttr" alt="cm_SortByAttr" src="../../pixmaps/dctheme/32x32/actions/cm_sortbyattr.png">
              <div class="cmdname"><a name="cm_SortByAttr">cm_SortByAttr</a></div>
            <td class="cmdhintcell">Sort items in active panel by <a href="help.html#cm_SortByAttr">attributes</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ReverseOrder" alt="cm_ReverseOrder" src="../../pixmaps/dctheme/32x32/actions/cm_reverseorder.png">
              <div class="cmdname"><a name="cm_ReverseOrder">cm_ReverseOrder</a></div>
            <td class="cmdhintcell"><a href="help.html#cm_ReverseOrder">Invert sorting</a> items displayed in the active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SrcOpenDrives" alt="cm_SrcOpenDrives" src="../../pixmaps/dctheme/32x32/actions/cm_srcopendrives.png">
              <div class="cmdname"><a name="cm_SrcOpenDrives">cm_SrcOpenDrives</a></div>
            <td class="cmdhintcell">Open drives list for active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_UniversalSingleDirectSort" alt="cm_UniversalSingleDirectSort" src="../../pixmaps/dctheme/32x32/actions/cm_universalsingledirectsort.png">
              <div class="cmdname"><a name="cm_UniversalSingleDirectSort">cm_UniversalSingleDirectSort</a></div></td>
            <td class="cmdhintcell">Will sort specified column in specified order of the specified panel.<br>See the following table for the possible parameter values.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">panel</td>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">will operate on active panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">will operate on inactive panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">will operate on left panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">will operate on right panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">will operate on active panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">column</td>
                  <td class="innerdescvaluecell">name</td>
                  <td class="innerdescdesccell">sorted columns will be the "name-ext"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">ext</td>
                  <td class="innerdescdesccell">sorted column will be the "ext"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">size</td>
                  <td class="innerdescdesccell">sorted column will be the "size"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">datetime</td>
                  <td class="innerdescdesccell">sorted column will be the "datetime"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">sorted column will be the "name"</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">order</td>
                  <td class="innerdescvaluecell">ascending</td>
                  <td class="innerdescdesccell">will sort with ascending order</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">descending</td>
                  <td class="innerdescdesccell">will sort with descending order</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">will sort with descending order</td>
                </tr>
                <tr>
                  <td colspan="3">Note: If any of these three parameters are not defined or are defined incorrectly; the default values for these parameters will be: panel=active, column=name and order=ascending.</td>
                </tr>
              </table>
              Example:<br>"cm_UniversalSingleDirectSort: panel=active, column=size, order=descending"<br>This will sort the item in active by column according to size&nbsp;&mdash; larger files first.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CountDirContent" alt="cm_CountDirContent" src="../../pixmaps/dctheme/32x32/actions/cm_countdircontent.png">
              <div class="cmdname"><a name="cm_CountDirContent">cm_CountDirContent</a></div>
              <div class="shrtctkey">Alt+Shift+Enter</div></td>
            <td class="cmdhintcell">Compute overall size of the contents of each of the directories present in current selected panel.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catleftpanel">2.2. Left Panel</a></h2>
        <P>These commands apply to the <B>left panel</b>, no matter which one is currently selected.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Left Panel"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftBriefView" alt="cm_LeftBriefView" src="../../pixmaps/dctheme/32x32/actions/cm_leftbriefview.png">
              <div class="cmdname"><a name="cm_LeftBriefView">cm_LeftBriefView</a></div>
            <td class="cmdhintcell">In left panel, just the name of the items.<BR>If possible, more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftColumnsView" alt="cm_LeftColumnsView" src="../../pixmaps/dctheme/32x32/actions/cm_leftcolumnsview.png">
              <div class="cmdname"><a name="cm_LeftColumnsView">cm_LeftColumnsView</a></div>
            <td class="cmdhintcell">In left panel, one item per line, with default or user defined columns.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">columnset</td>
                  <td class="innerdescvaluecell"><I>column set name</i></td>
                  <td class="innerdescdesccell">show user defined column set<sup><acronym title="Requires Double Commander 0.9">[*]</acronym></sup></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">show default column set</td>
                </tr>
              </table>
              See <a href="help.html#5_1_15_colonki">column section</a> in main help file.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftThumbView" alt="cm_LeftThumbView" src="../../pixmaps/dctheme/32x32/actions/cm_leftthumbview.png">
              <div class="cmdname"><a name="cm_LeftThumbView">cm_LeftThumbView</a></div>
            <td class="cmdhintcell">In left panel, items shown as thumbnails.<BR>If possible, more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftFlatView" alt="cm_LeftFlatView" src="../../pixmaps/dctheme/32x32/actions/cm_leftflatview.png">
              <div class="cmdname"><a name="cm_LeftFlatView">cm_LeftFlatView</a></div>
            <td class="cmdhintcell">Will scan all the directories of left panel to show all content in this single panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftSortByName" alt="cm_LeftSortByName" src="../../pixmaps/dctheme/32x32/actions/cm_leftsortbyname.png">
              <div class="cmdname"><a name="cm_LeftSortByName">cm_LeftSortByName</a></div>
            <td class="cmdhintcell">Sort items in left panel by <a href="help.html#cm_SortByName">name</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftSortByExt" alt="cm_LeftSortByExt" src="../../pixmaps/dctheme/32x32/actions/cm_leftsortbyext.png">
              <div class="cmdname"><a name="cm_LeftSortByExt">cm_LeftSortByExt</a></div>
            <td class="cmdhintcell">Sort items in left panel by <a href="help.html#cm_SortByExt">extension</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftSortBySize" alt="cm_LeftSortBySize" src="../../pixmaps/dctheme/32x32/actions/cm_leftsortbysize.png">
              <div class="cmdname"><a name="cm_LeftSortBySize">cm_LeftSortBySize</a></div>
            <td class="cmdhintcell">Sort items in left panel by <a href="help.html#cm_SortBySize">size</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftSortByDate" alt="cm_LeftSortByDate" src="../../pixmaps/dctheme/32x32/actions/cm_leftsortbydate.png">
              <div class="cmdname"><a name="cm_LeftSortByDate">cm_LeftSortByDate</a></div>
            <td class="cmdhintcell">Sort items in left panel by <a href="help.html#cm_SortByDate">date</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftSortByAttr" alt="cm_LeftSortByAttr" src="../../pixmaps/dctheme/32x32/actions/cm_leftsortbyattr.png">
              <div class="cmdname"><a name="cm_LeftSortByAttr">cm_LeftSortByAttr</a></div>
            <td class="cmdhintcell">Sort items in left panel by <a href="help.html#cm_SortByAttr">attributes</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftReverseOrder" alt="cm_LeftReverseOrder" src="../../pixmaps/dctheme/32x32/actions/cm_leftreverseorder.png">
              <div class="cmdname"><a name="cm_LeftReverseOrder">cm_LeftReverseOrder</a></div>
            <td class="cmdhintcell"><a href="help.html#cm_ReverseOrder">Invert sorting</a> items in the left panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftOpenDrives" alt="cm_LeftOpenDrives" src="../../pixmaps/dctheme/32x32/actions/cm_leftopendrives.png">
              <div class="cmdname"><a name="cm_LeftOpenDrives">cm_LeftOpenDrives</a></div>
              <div class="shrtctkey">Alt+F1</div></td>
            <td class="cmdhintcell">Open <a href="help.html#cm_LeftOpenDrives">drives list</a> for left panel.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catrightpanel">2.3. Right Panel</a></h2>
        <P>These commands apply to the <B>right panel</b>, no matter which one is currently selected.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Right Panel"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightBriefView" alt="cm_RightBriefView" src="../../pixmaps/dctheme/32x32/actions/cm_rightbriefview.png">
              <div class="cmdname"><a name="cm_RightBriefView">cm_RightBriefView</a></div>
            <td class="cmdhintcell">In right panel, just the name of the items.<BR>If possible, more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightColumnsView" alt="cm_RightColumnsView" src="../../pixmaps/dctheme/32x32/actions/cm_rightcolumnsview.png">
              <div class="cmdname"><a name="cm_RightColumnsView">cm_RightColumnsView</a></div>
            <td class="cmdhintcell">In right panel, one item per line, with default or user defined columns.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">columnset</td>
                  <td class="innerdescvaluecell"><I>column set name</i></td>
                  <td class="innerdescdesccell">show user defined column set<sup><acronym title="Requires Double Commander 0.9">[*]</acronym></sup></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">show default column set</td>
                </tr>
              </table>
              See <a href="help.html#5_1_15_colonki">column section</a> in main help file.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightThumbView" alt="cm_RightThumbView" src="../../pixmaps/dctheme/32x32/actions/cm_rightthumbview.png">
              <div class="cmdname"><a name="cm_RightThumbView">cm_RightThumbView</a></div>
            <td class="cmdhintcell">In right panel, items shown as thumbnails.<BR>If possible, more than one column.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightFlatView" alt="cm_RightFlatView" src="../../pixmaps/dctheme/32x32/actions/cm_rightflatview.png">
              <div class="cmdname"><a name="cm_RightFlatView">cm_RightFlatView</a></div>
            <td class="cmdhintcell">Will scan all the directories of right panel to show all this content in this single panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightSortByName" alt="cm_RightSortByName" src="../../pixmaps/dctheme/32x32/actions/cm_rightsortbyname.png">
              <div class="cmdname"><a name="cm_RightSortByName">cm_RightSortByName</a></div>
            <td class="cmdhintcell">Sort items in right panel by <a href="help.html#cm_SortByName">name</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightSortByExt" alt="cm_RightSortByExt" src="../../pixmaps/dctheme/32x32/actions/cm_rightsortbyext.png">
              <div class="cmdname"><a name="cm_RightSortByExt">cm_RightSortByExt</a></div>
            <td class="cmdhintcell">Sort items in right panel by <a href="help.html#cm_SortByExt">extension</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightSortBySize" alt="cm_RightSortBySize" src="../../pixmaps/dctheme/32x32/actions/cm_rightsortbysize.png">
              <div class="cmdname"><a name="cm_RightSortBySize">cm_RightSortBySize</a></div>
            <td class="cmdhintcell">Sort items in right panel by <a href="help.html#cm_SortBySize">size</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightSortByDate" alt="cm_RightSortByDate" src="../../pixmaps/dctheme/32x32/actions/cm_rightsortbydate.png">
              <div class="cmdname"><a name="cm_RightSortByDate">cm_RightSortByDate</a></div>
            <td class="cmdhintcell">Sort items in right panel by <a href="help.html#cm_SortByDate">date</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightSortByAttr" alt="cm_RightSortByAttr" src="../../pixmaps/dctheme/32x32/actions/cm_rightsortbyattr.png">
              <div class="cmdname"><a name="cm_RightSortByAttr">cm_RightSortByAttr</a></div>
            <td class="cmdhintcell">Sort items in right panel by <a href="help.html#cm_SortByAttr">attributes</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightReverseOrder" alt="cm_RightReverseOrder" src="../../pixmaps/dctheme/32x32/actions/cm_rightreverseorder.png">
              <div class="cmdname"><a name="cm_RightReverseOrder">cm_RightReverseOrder</a></div>
            <td class="cmdhintcell"><a href="help.html#cm_ReverseOrder">Invert sorting</a> items in the right panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightOpenDrives" alt="cm_RightOpenDrives" src="../../pixmaps/dctheme/32x32/actions/cm_rightopendrives.png">
              <div class="cmdname"><a name="cm_RightOpenDrives">cm_RightOpenDrives</a></div>
              <div class="shrtctkey">Alt+F2</div></td>
            <td class="cmdhintcell">Open <a href="help.html#cm_RightOpenDrives">drives list</a> for right panel.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catfileoperations">2.4. File Operations</a></h2>
        <P>These commands apply to current selected item in current selected panel.<br>It includes operations like view/copy/move/rename/delete/pack/unpack/split etc.<br>These are probably the commands that have a <B>direct impact with your files</b>.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "File Operations"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_View" alt="cm_View" src="../../pixmaps/dctheme/32x32/actions/cm_view.png">
              <div class="cmdname"><a name="cm_View">cm_View</a></div>
              <div class="shrtctkey">F3</div></td>
            <td class="cmdhintcell">Open file in <a href="help.html#5_1_3_instruments">viewer</a> program.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Edit" alt="cm_Edit" src="../../pixmaps/dctheme/32x32/actions/cm_edit.png">
              <div class="cmdname"><a name="cm_Edit">cm_Edit</a></div>
              <div class="shrtctkey">F4</div></td>
            <td class="cmdhintcell">Open file in internal editor.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_EditNew" alt="cm_EditNew" src="../../pixmaps/dctheme/32x32/actions/cm_editnew.png">
              <div class="cmdname"><a name="cm_EditNew">cm_EditNew</a></div>
              <div class="shrtctkey">Shift+F4</div></td>
            <td class="cmdhintcell">Create a new file, and open it in the editor (<a href="help.html#5_1_3_instruments">see configuration</a>).</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Copy" alt="cm_Copy" src="../../pixmaps/dctheme/32x32/actions/cm_copy.png">
              <div class="cmdname"><a name="cm_Copy">cm_Copy</a></div>
              <div class="shrtctkey">F5</div></td>
            <td class="cmdhintcell">Copy items from source to target.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">confirmation</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">shows confirmation dialog (default)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">does not show a confirmation dialog</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">queueid</td>
                  <td class="innerdescvaluecell"><i>&lt;queue identifier&gt;</i></td>
                  <td class="innerdescdesccell">by default places the copy operation into a specific queue, works only if no confirmation dialog is shown, value 0 means it will be an independent operation (not queued)</td>
                </tr>
              </table>
              <br>
              Example: "cm_Copy confirmation=1" will prompt user to confirm the copy, no matter how file operations confirmation for copy operations setting is set.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyNoAsk" alt="cm_CopyNoAsk" src="../../pixmaps/dctheme/32x32/actions/cm_copynoask.png">
              <div class="cmdname"><a name="cm_CopyNoAsk">cm_CopyNoAsk</a></div></td>
            <td class="cmdhintcell">Copy items from source to target without asking for confirmation.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopySamePanel" alt="cm_CopySamePanel" src="../../pixmaps/dctheme/32x32/actions/cm_copysamepanel.png">
              <div class="cmdname"><a name="cm_CopySamePanel">cm_CopySamePanel</a></div>
              <div class="shrtctkey">Shift+F5</div></td>
            <td class="cmdhintcell">Copy items in the same directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Rename" alt="cm_Rename" src="../../pixmaps/dctheme/32x32/actions/cm_rename.png">
              <div class="cmdname"><a name="cm_Rename">cm_Rename</a></div>
              <div class="shrtctkey">F6</div></td>
            <td class="cmdhintcell">Rename or move items.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">confirmation</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">shows confirmation dialog (default)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">does not show a confirmation dialog</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">queueid</td>
                  <td class="innerdescvaluecell"><i>&lt;queue identifier&gt;</i></td>
                  <td class="innerdescdesccell">by default places the move operation into a specific queue, works only if no confirmation dialog is shown, value 0 means it will be an independent operation (not queued)</td>
                </tr>
              </table>
              <br>
              Example: "cm_Rename confirmation=1" will prompt user to confirm the rename/move, no matter how file operations confirmation for move operations setting is set.
            </td>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RenameNoAsk" alt="cm_RenameNoAsk" src="../../pixmaps/dctheme/32x32/actions/cm_renamenoask.png">
              <div class="cmdname"><a name="cm_RenameNoAsk">cm_RenameNoAsk</a></div></td>
            <td class="cmdhintcell">Rename or move items without asking for confirmation.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RenameOnly" alt="cm_RenameOnly" src="../../pixmaps/dctheme/32x32/actions/cm_renameonly.png">
              <div class="cmdname"><a name="cm_RenameOnly">cm_RenameOnly</a></div>
              <div class="shrtctkey">F2, Shift+F6</div></td>
            <td class="cmdhintcell">Rename files in the same directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MakeDir" alt="cm_MakeDir" src="../../pixmaps/dctheme/32x32/actions/cm_makedir.png">
              <div class="cmdname"><a name="cm_MakeDir">cm_MakeDir</a></div>
              <div class="shrtctkey">F7</div></td>
            <td class="cmdhintcell">Create a new directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Delete" alt="cm_Delete" src="../../pixmaps/dctheme/32x32/actions/cm_delete.png">
              <div class="cmdname"><a name="cm_Delete">cm_Delete</a></div>
              <div class="shrtctkey">F8, Del</div></td>
            <td class="cmdhintcell">Delete selected item to trash can (recycle bin) or permanently.<br>
              Deleting to trash can might not be available for all platforms.<br>
              A different confirmation message is given when deleting to Trash Can or permanently.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">confirmation</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">shows confirmation dialog (default)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">does not show a confirmation dialog (be careful!)</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="4">trashcan</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">delete to trash can</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">delete permanently</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">setting</td>
                  <td class="innerdescdesccell">(default) acts accordingly to the global setting in <a href="help.html#5_1_10_fileOper">File Operations</a>, if that setting is enabled it will delete to trash can otherwise permanently</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">reversesetting</td>
                  <td class="innerdescdesccell">acts in the opposite way than setting</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Wipe" alt="cm_Wipe" src="../../pixmaps/dctheme/32x32/actions/cm_wipe.png">
              <div class="cmdname"><a name="cm_Wipe">cm_Wipe</a></div>
              <div class="shrtctkey">Alt+Del</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_Wipe">Wipe</a> file.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_PackFiles" alt="cm_PackFiles" src="../../pixmaps/dctheme/32x32/actions/cm_packfiles.png">
              <div class="cmdname"><a name="cm_PackFiles">cm_PackFiles</a></div>
              <div class="shrtctkey">Alt+F5</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_PackFiles">Pack</a> items into archive.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">PackHere</td>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">compressed file will be in active panel directory</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">compressed file will be in inactive panel directory</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_TestArchive" alt="cm_TestArchive" src="../../pixmaps/dctheme/32x32/actions/cm_testarchive.png">
              <div class="cmdname"><a name="cm_TestArchive">cm_TestArchive</a></div>
              <div class="shrtctkey">Alt+Shift+F9</div></td>
            <td class="cmdhintcell">Validate the integrity of the content of selected archive file.<br>
              If archive content is corrupted, error message will be reported.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OpenArchive" alt="cm_OpenArchive" src="../../pixmaps/dctheme/32x32/actions/cm_openarchive.png">
              <div class="cmdname"><a name="cm_OpenArchive">cm_OpenArchive</a></div>
              <div class="shrtctkey">Ctrl+PgDown</div></td>
            <td class="cmdhintcell">If a directory is selected, will open this directory to show its content.<BR>If a file is selected, ignoring its extension, will try to open it as an archive based on its detected content (see <a href="multiarc.html#configids">ID configuration</a> in other help page).</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ExtractFiles" alt="cm_ExtractFiles" src="../../pixmaps/dctheme/32x32/actions/cm_extractfiles.png">
              <div class="cmdname"><a name="cm_ExtractFiles">cm_ExtractFiles</a></div>
              <div class="shrtctkey">Alt+F9</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_ExtractFiles">Unpack</a> one or more selected archives.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">ExtractHere</td>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">extracted items will be in active panel directory</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">extracted items will be in inactive panel directory</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OpenVirtualFileSystemList" alt="cm_OpenVirtualFileSystemList" src="../../pixmaps/dctheme/32x32/actions/cm_openvirtualfilesystemlist.png">
              <div class="cmdname"><a name="cm_OpenVirtualFileSystemList">cm_OpenVirtualFileSystemList</a></div></td>
            <td class="cmdhintcell">Open according to WFX plugin.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FileProperties" alt="cm_FileProperties" src="../../pixmaps/dctheme/32x32/actions/cm_fileproperties.png">
              <div class="cmdname"><a name="cm_FileProperties">cm_FileProperties</a></div>
              <div class="shrtctkey">Alt+Enter</div></td>
            <td class="cmdhintcell">Show item <a href="help.html#cm_FileProperties">properties</a> (size, data, attributes, etc).</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetFileProperties" alt="cm_SetFileProperties" src="../../pixmaps/dctheme/32x32/actions/cm_setfileproperties.png">
              <div class="cmdname"><a name="cm_SetFileProperties">cm_SetFileProperties</a></div></td>
            <td class="cmdhintcell">Adjust item properties like creation, modified and last access date, file permission, etc.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_EditComment" alt="cm_EditComment" src="../../pixmaps/dctheme/32x32/actions/cm_editcomment.png">
              <div class="cmdname"><a name="cm_EditComment">cm_EditComment</a></div>
              <div class="shrtctkey">Ctrl+Z</div></td>
            <td class="cmdhintcell">Create or edit <a href="help.html#cm_EditComment">comment</a> for file/directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ContextMenu" alt="cm_ContextMenu" src="../../pixmaps/dctheme/32x32/actions/cm_contextmenu.png">
              <div class="cmdname"><a name="cm_ContextMenu">cm_ContextMenu</a></div>
              <div class="shrtctkey">Shift+F10</div></td>
            <td class="cmdhintcell">Shows <a href="help.html#cm_ContextMenu">context menu</a> for files and folders.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">justactionmenu</td>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">menu will include the default system context menu AND the file extensions associated actions defined in Double Commander (default)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">menu will include only the file extensions associated actions defined in Double Commander (the default system context menu won't be displayed)</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Open" alt="cm_Open" src="../../pixmaps/dctheme/32x32/actions/cm_open.png">
              <div class="cmdname"><a name="cm_Open">cm_Open</a></div>
              <div class="shrtctkey">Enter</div></td>
            <td class="cmdhintcell">Open a file or program under cursor.<BR>Associated application based on file association configuration might be used, etc.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ShellExecute" alt="cm_ShellExecute" src="../../pixmaps/dctheme/32x32/actions/cm_shellexecute.png">
              <div class="cmdname"><a name="cm_ShellExecute">cm_ShellExecute</a></div>
              <div class="shrtctkey">Ctrl+Alt+Enter</div></td>
            <td class="cmdhintcell">Will invoke computer's associated program to current selected item.<BR>A single parameter may also be provided for the call.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SymLink" alt="cm_SymLink" src="../../pixmaps/dctheme/32x32/actions/cm_symlink.png">
              <div class="cmdname"><a name="cm_SymLink">cm_SymLink</a></div>
            <td class="cmdhintcell">Create <a href="help.html#cm_SymLink">symlink</a> to file/directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_HardLink" alt="cm_HardLink" src="../../pixmaps/dctheme/32x32/actions/cm_hardlink.png">
              <div class="cmdname"><a name="cm_HardLink">cm_HardLink</a></div>
            <td class="cmdhintcell">Create <a href="help.html#cm_HardLink">hard link</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FileSpliter" alt="cm_FileSpliter" src="../../pixmaps/dctheme/32x32/actions/cm_filespliter.png">
              <div class="cmdname"><a name="cm_FileSpliter">cm_FileSpliter</a></div>
            <td class="cmdhintcell"><a href="help.html#cm_FileSpliter">Split</a> files dialog.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FileLinker" alt="cm_FileLinker" src="../../pixmaps/dctheme/32x32/actions/cm_filelinker.png">
              <div class="cmdname"><a name="cm_FileLinker">cm_FileLinker</a></div>
            <td class="cmdhintcell"><a href="help.html#cm_FileLinker">Combine</a> multiple splitted files together to form one single file.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CheckSumCalc" alt="cm_CheckSumCalc" src="../../pixmaps/dctheme/32x32/actions/cm_checksumcalc.png">
              <div class="cmdname"><a name="cm_CheckSumCalc">cm_CheckSumCalc</a></div>
            <td class="cmdhintcell">Calculate file <a href="help.html#012_controlnaya_summa">checksum</a> (MD5, SHA1, etc).</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CheckSumVerify" alt="cm_CheckSumVerify" src="../../pixmaps/dctheme/32x32/actions/cm_checksumverify.png">
              <div class="cmdname"><a name="cm_CheckSumVerify">cm_CheckSumVerify</a></div>
            <td class="cmdhintcell">Verify MD5, SHA1, etc. checksum.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catconfiguration">2.5. Configuration</a></h2>
        <P>Access options and configurations of Double Commander.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Configuration"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Options" alt="cm_Options" src="../../pixmaps/dctheme/32x32/actions/cm_options.png">
              <div class="cmdname"><a name="cm_Options">cm_Options</a></div>
            <td class="cmdhintcell">Open <a href="help.html#cm_Options">configuration</a> dialog.<BR>
              Command supports a single parameter to jump to a specific configuration section.<BR>
              Here is <a href="cm_options.html">a link</a> for possible parameters to use.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigToolbars" alt="cm_ConfigToolbars" src="../../pixmaps/dctheme/32x32/actions/cm_configtoolbars.png">
              <div class="cmdname"><a name="cm_ConfigToolbars">cm_ConfigToolbars</a></div></td>
            <td class="cmdhintcell">Access configuration of the toolbar.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigDirHotList" alt="cm_ConfigDirHotList" src="../../pixmaps/dctheme/32x32/actions/cm_configdirhotlist.png">
              <div class="cmdname"><a name="cm_ConfigDirHotList">cm_ConfigDirHotList</a></div>
              <div class="shrtctkey">Ctrl+Shift+D</div></td>
            <td class="cmdhintcell">Access configuration of the directory hotlist.<BR><BR>
              It is equivalent to "cm_WorkWithDirectoryHotlist" command with following parameters:<BR>
              action=config source=%Ds</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_WorkWithDirectoryHotlist" alt="cm_WorkWithDirectoryHotlist" src="../../pixmaps/dctheme/32x32/actions/cm_workwithdirectoryhotlist.png">
              <div class="cmdname"><a name="cm_WorkWithDirectoryHotlist">cm_WorkWithDirectoryHotlist</a></div></td>
            <td class="cmdhintcell">Access the "Directory Hotlist" configuration window.<br>With the parameters, you may control which actions will be done regarding the hotlist.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="8">action</td>
                  <td class="innerdescvaluecell">add</td>
                  <td class="innerdescdesccell">add an entry (target will be added depending of option in config)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">addsrconly</td>
                  <td class="innerdescdesccell">will add an entry with source only</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">addboth</td>
                  <td class="innerdescdesccell">will add an entry and target</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">config</td>
                  <td class="innerdescdesccell">config an entry</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">show</td>
                  <td class="innerdescdesccell">simply show the config window</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">addsel</td>
                  <td class="innerdescdesccell">add the current selected directory(ies)<br>(other parameters are ignored)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">directconfig</td>
                  <td class="innerdescdesccell">config the specified "nth" entry</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">same as "add"</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">source</td>
                  <td class="innerdescvaluecell">source_path</td>
                  <td class="innerdescdesccell">the directory to add/config as "source"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">directory the active panel is in</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">target</td>
                  <td class="innerdescvaluecell">target_path</td>
                  <td class="innerdescdesccell">the directory to add/config as "target"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">directory the inactive panel is in</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">index</td>
                  <td class="innerdescvaluecell">0-999</td>
                  <td class="innerdescdesccell">if action=directconfig, the "nth" entry from the hotlist</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">index 0 will be used</td>
                </tr>
              </table>
              Example:<br>"cm_WorkWithDirectoryHotlist action=addboth"<br>This will add to directory hotlist both current directories of active and inactive frame as source and target respectively.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FileAssoc" alt="cm_FileAssoc" src="../../pixmaps/dctheme/32x32/actions/cm_fileassoc.png">
              <div class="cmdname"><a name="cm_FileAssoc">cm_FileAssoc</a></div>
            <td class="cmdhintcell">Open file associations <a href="help.html#cm_FileAssoc">configuration</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigFolderTabs" alt="cm_ConfigFolderTabs" src="../../pixmaps/dctheme/32x32/actions/cm_configfoldertabs.png">
              <div class="cmdname"><a name="cm_ConfigFolderTabs">cm_ConfigFolderTabs</a></div></td>
            <td class="cmdhintcell">Access configuration for settings related with folder tabs.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigFavoriteTabs" alt="cm_ConfigFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_configfavoritetabs.png">
              <div class="cmdname"><a name="cm_ConfigFavoriteTabs">cm_ConfigFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Access configuration of the Favorite Tabs.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigTreeViewMenus" alt="cm_ConfigTreeViewMenus" src="../../pixmaps/dctheme/32x32/actions/cm_configtreeviewmenus.png">
              <div class="cmdname"><a name="cm_ConfigTreeViewMenus">cm_ConfigTreeViewMenus</a></div></td>
            <td class="cmdhintcell">Access configuration of the Tree View Menus. This is where we could configure for which command by default we want to use the tree view menu style of selection.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigTreeViewMenusColors" alt="cm_ConfigTreeViewMenusColors" src="../../pixmaps/dctheme/32x32/actions/cm_configtreeviewmenuscolors.png">
              <div class="longcmdname"><a name="cm_ConfigTreeViewMenusColors">cm_ConfigTreeViewMenusColors</a></div></td>
            <td class="cmdhintcell">Access configuration of the color used with the Tree View Menu section interface.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigHotKeys" alt="cm_ConfigHotKeys" src="../../pixmaps/dctheme/32x32/actions/cm_confighotkeys.png">
              <div class="cmdname"><a name="cm_ConfigHotKeys">cm_ConfigHotKeys</a></div></td>
            <td class="cmdhintcell">Access configuration of hotkeys.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigSearches" alt="cm_ConfigSearches" src="../../pixmaps/dctheme/32x32/actions/cm_configsearches.png">
              <div class="cmdname"><a name="cm_ConfigSearches">cm_ConfigSearches</a></div></td>
            <td class="cmdhintcell">Access configuration of general options regarding file search.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigSaveSettings" alt="cm_ConfigSaveSettings" src="../../pixmaps/dctheme/32x32/actions/cm_configsavesettings.png">
              <div class="cmdname"><a name="cm_ConfigSaveSettings">cm_ConfigSaveSettings</a></div>
            <td class="cmdhintcell">Will save all the current settings and history, just like if you would close application and restore.<br><I>This might be useful if you've used DC during a long session and you want to save current context in case system would crash and you do not want to lose current history when you would restart DC.</i></td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigSavePos" alt="cm_ConfigSavePos" src="../../pixmaps/dctheme/32x32/actions/cm_configsavepos.png">
              <div class="cmdname"><a name="cm_ConfigSavePos">cm_ConfigSavePos</a><p class="versionref">Version 1.0.0 +</p></div>
            <td class="cmdhintcell">Will save current state and position of the main window of DC.<br></td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigArchivers" alt="cm_ConfigArchivers" src="../../pixmaps/dctheme/32x32/actions/cm_configarchivers.png">
              <div class="cmdname"><a name="cm_ConfigArchivers">cm_ConfigArchivers</a></div>
            <td class="cmdhintcell">Will launch the configuration page of <a href="multiarc.html">the external archivers</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigTooltips" alt="cm_ConfigTooltips" src="../../pixmaps/dctheme/32x32/actions/cm_configtooltips.png">
              <div class="cmdname"><a name="cm_ConfigTooltips">cm_ConfigTooltips</a></div>
            <td class="cmdhintcell">Will launch the configuration page for the tooltips.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ConfigPlugins" alt="cm_ConfigPlugins" src="../../pixmaps/dctheme/32x32/actions/cm_configplugins.png">
              <div class="cmdname"><a name="cm_ConfigPlugins">cm_ConfigPlugins</a></div>
            <td class="cmdhintcell">Access configuration of plugins.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catnetwork">2.6. Network</a></h2>
        <P>Related directly with computer network.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Network"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_NetworkConnect" alt="cm_NetworkConnect" src="../../pixmaps/dctheme/32x32/actions/cm_networkconnect.png">
              <div class="cmdname"><a name="cm_NetworkConnect">cm_NetworkConnect</a></div></td>
            <td class="cmdhintcell">Nothing for the moment, but might be used in the future with network related stuff.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_NetworkDisconnect" alt="cm_NetworkDisconnect" src="../../pixmaps/dctheme/32x32/actions/cm_networkdisconnect.png">
              <div class="cmdname"><a name="cm_NetworkDisconnect">cm_NetworkDisconnect</a></div></td>
            <td class="cmdhintcell">Nothing for the moment, but might be used in the future with network related stuff.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catmiscellaneous">2.7. Miscellaneous</a></h2>
        <P>Inevitable category with commands we did not in which category to place them!<br>Effort has been made to try to don't place too much commands in this category.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Miscellaneous"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CalculateSpace" alt="cm_CalculateSpace" src="../../pixmaps/dctheme/32x32/actions/cm_calculatespace.png">
              <div class="cmdname"><a name="cm_CalculateSpace">cm_CalculateSpace</a></div>
              <div class="shrtctkey">Ctrl+L</div></td>
            <td class="cmdhintcell">Calculate <a href="help.html#cm_CalculateSpace">occupied</a> space of selected items in active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Benchmark" alt="cm_Benchmark" src="../../pixmaps/dctheme/32x32/actions/cm_benchmark.png">
              <div class="cmdname"><a name="cm_Benchmark">cm_Benchmark<sup><acronym title="Requires Double Commander 0.9">[*]</acronym></sup></a></div>
            <td class="cmdhintcell">Launch a simple benchmark consisting in running supported hash functions.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RunTerm" alt="cm_RunTerm" src="../../pixmaps/dctheme/32x32/actions/cm_runterm.png">
              <div class="cmdname"><a name="cm_RunTerm">cm_RunTerm</a></div>
              <div class="shrtctkey">F9</div></td>
            <td class="cmdhintcell">Starts a <a href="help.html#cm_RunTerm">terminal</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ExecuteScript" alt="cm_ExecuteScript" src="../../pixmaps/dctheme/32x32/actions/cm_executescript.png">
              <div class="cmdname"><a name="cm_ExecuteScript">cm_ExecuteScript</a></div>
            </td>
            <td class="cmdhintcell">Execute Lua script file (requires Lua .DLL installed), see <a href="lua.html">also</a>.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell"><i>{first}</i></td>
                  <td class="innerdescvaluecell">file name</td>
                  <td class="innerdescdesccell">path to Lua script file</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>{param1}</i></td>
                  <td class="innerdescvaluecell">command line parameter #1</td>
                  <td class="innerdescdesccell" rowspan="3">passed as command line parameters to Lua script</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>{param2}</i></td>
                  <td class="innerdescvaluecell">command line parameter #2</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>{paramX}</i></td>
                  <td class="innerdescvaluecell">command line parameter #X</td>
                </tr>
              </table>
            </td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catmark">2.8. Mark</a></h2>
        <P>Select the items on which the file operations will took place.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Mark"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkPlus" alt="cm_MarkPlus" src="../../pixmaps/dctheme/32x32/actions/cm_markplus.png">
              <div class="cmdname"><a name="cm_MarkPlus">cm_MarkPlus</a></div>
              <div class="shrtctkey">Num +</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_MarkPlus">Select</a> items in active panel using a mask (provided or not) according the the following parameters:<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">mask</td>
                  <td class="innerdescvaluecell"><i>&lt;any string&gt;</i></td>
                  <td class="innerdescdesccell">the filter to use</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">will prompt user to type filter</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">casesensitive</td>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">filtering will be done ignoring case</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">filtering will be done case-sensitive</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">case sensitivity will be the last one used for the current file view</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">ignoreaccents</td>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">filtering will be done evaluating an exact match regarding accentuated characters</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">items and mask will be compared ignoring their accent and ligatures replaced by distinct letters</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">ignoring or not accents will be like the last time it was specified for that file view</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">windowsinterpretation</td>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">filtering will be done like DC legacy</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">filtering will be done like Windows</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">using DC legacy filtering or Windows one will be like the last time it was specified for that file view</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="7">attr</td>
                  <td class="innerdescvaluecell">d-</td>
                  <td class="innerdescdesccell">filtering will ignore directories and take only files</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">d+</td>
                  <td class="innerdescdesccell">filtering will ignore files and take only directories</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">h-</td>
                  <td class="innerdescdesccell">filtering will ignore hidden files (Windows)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">ux+</td>
                  <td class="innerdescdesccell">filtering will take only entries with attribute owner's executable (Linux)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">uw+|gw+|ow+</td>
                  <td class="innerdescdesccell">filtering will take files that are writeable either by user, group or anybody else (Linux)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">filtering will be done according to what's configured in "File views", section "Marking/Unmarking entries", the option "Default attribute mask value to use".</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"></td>
                  <td class="innerdescdesccell">note: this means "attr=" with no right value.<BR>filter everything, no matter the configured "Default attribute mask"</td>
                </tr>
              </table>
              <B>Note1:</b> So if command is used without any parameters, user will be prompt to enter its filter and other options will be the same ones as the last time their were specified in the current session foreach file view.<BR>
              <B>Note2:</b> When using filtering like Windows as oppose of DC legacy, file with no extension will be selected with filter <i>*.*</i><BR>
              <B>Note3:</b> When specifying the "mask" parameter, please note you may also use predefined selection type simply by preceding the name of it with symbol "&gt;" like "<I>mask=&gt;Pascal files</i>".<BR>
              <B>Note4:</b> When using filtering parameter "<I>ignoreaccents=TRUE</i>", the ligatured characters like "<I>&oelig;</i>" for example will be evaluated as the sequence "<I>oe</i>". So for example "<I>c&oelig;ur</i>" will match "<I>coeur</i>".<BR>
              <B>Note5:</b> The fact to use parameters like "casesensitive" for example will not affect the subsequent usage the "cm_MarkPlus" with no parameters which will use the default same parameters of last time it was prompting the user.<BR>
              <B>Note6:</b> Regarding the "attr" possible parameter values, see the "The <a href="findfiles.html#attributes">Searching for files with specific attributes</a>." section in the "Find files" help file. The way to specify the filter regarding the attributes is the same.<BR>
              <B>Example1:</b> "cm_MarkPlus mask=*.pas;*.dfm;*.dpr;*.inc casesensitive=false" This will select all the files matching the given filter mask (which is basically common Delphi source file extensions) and ignoring the case of the letters.<BR>
              <B>Example2:</b> "cm_MarkPlus mask=*ecole*.docx ignoreaccents=true" This will select all the files matching the given filter mask (which is basically Microsoft Word document with the word "ecole" in them) ignoring the accents. This means it will select file with "école" and "ecole" in them since accent are ignored.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkMinus" alt="cm_MarkMinus" src="../../pixmaps/dctheme/32x32/actions/cm_markminus.png">
              <div class="cmdname"><a name="cm_MarkMinus">cm_MarkMinus</a></div>
              <div class="shrtctkey">Num -</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_MarkMinus">Unselect</a> items in active panel matching the mask (provided or not) according the the same parameters as the <a href="#cm_MarkPlus">cm_MarkPlus</a> command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkMarkAll" alt="cm_MarkMarkAll" src="../../pixmaps/dctheme/32x32/actions/cm_markmarkall.png">
              <div class="cmdname"><a name="cm_MarkMarkAll">cm_MarkMarkAll</a></div>
              <div class="shrtctkey">Ctrl+A, Ctrl+Num +</div></td>
            <td class="cmdhintcell">Will basically select <a href="help.html#cm_MarkMarkAll">all</a> the entries in the active panel according to attribute filter that follows.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="7">attr</td>
                  <td class="innerdescvaluecell">d-</td>
                  <td class="innerdescdesccell">filter every entries that are not a directories</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">d+</td>
                  <td class="innerdescdesccell">filter every entries that are a directories</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">h-</td>
                  <td class="innerdescdesccell">filter every entries that don't have the hidden attributes</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">ux+</td>
                  <td class="innerdescdesccell">filter all entries with attribute owner's executable (Linux)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">uw+|gw+|ow+</td>
                  <td class="innerdescdesccell">filter all entries that are writeable either by user, group or anybody else (Linux)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">will select everything that match what's configured in "File views", section "Marking/Unmarking entries", the option "Default attribute mask value to use".</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"></td>
                  <td class="innerdescdesccell">note: this means "attr=" with no right value.<BR>filter everything, no matter the configured "Default attribute mask"</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkUnmarkAll" alt="cm_MarkUnmarkAll" src="../../pixmaps/dctheme/32x32/actions/cm_markunmarkall.png">
              <div class="cmdname"><a name="cm_MarkUnmarkAll">cm_MarkUnmarkAll</a></div>
              <div class="shrtctkey">Ctrl+Num -</div></td>
            <td class="cmdhintcell">Will unselect <a href="help.html#cm_MarkUnmarkAll">all</a> the entries of the active panel according to the same filter described in table of <a href="#cm_MarkMarkAll">cm_MarkMarkAll</a> command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkInvert" alt="cm_MarkInvert" src="../../pixmaps/dctheme/32x32/actions/cm_markinvert.png">
              <div class="cmdname"><a name="cm_MarkInvert">cm_MarkInvert</a></div>
              <div class="shrtctkey">Num *</div></td>
            <td class="cmdhintcell">Will <a href="help.html#cm_MarkInvert">Invert</a> the selected state of all the entries matching the same filter described in table of <a href="#cm_MarkMarkAll">cm_MarkMarkAll</a> command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkCurrentPath" alt="cm_MarkCurrentPath" src="../../pixmaps/dctheme/32x32/actions/cm_markcurrentpath.png">
              <div class="cmdname"><a name="cm_MarkCurrentPath">cm_MarkCurrentPath</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Mark</a> files with the same path as item under cursor of active panel.<BR>
              <B>Note:</b> It might seem useless at first look but may be used in at least two situations:<br>
              <div style="margin: 0 0 0 15;">
                After you've filled a panel with search results coming from various level of directories<br>
                After you've invoke the "<a href="#cm_FlatView">cm_FlatView</a>" internal command.
              </div>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_UnmarkCurrentPath" alt="cm_UnmarkCurrentPath" src="../../pixmaps/dctheme/32x32/actions/cm_unmarkcurrentpath.png">
              <div class="cmdname"><a name="cm_UnmarkCurrentPath">cm_UnmarkCurrentPath</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Unmark</a> files with the same path as item under cursor of active panel.<BR>
              See note of "<a href="#cm_MarkCurrentPath">cm_MarkCurrentPath</a>" for the possible usefulness of this command.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkCurrentName" alt="cm_MarkCurrentName" src="../../pixmaps/dctheme/32x32/actions/cm_markcurrentname.png">
              <div class="cmdname"><a name="cm_MarkCurrentName">cm_MarkCurrentName</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Mark</a> files with the same filename ignoring the extension as item under cursor of active panel.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_UnmarkCurrentName" alt="cm_UnmarkCurrentName" src="../../pixmaps/dctheme/32x32/actions/cm_unmarkcurrentname.png">
              <div class="cmdname"><a name="cm_UnmarkCurrentName">cm_UnmarkCurrentName</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Unmark</a> files with the same filename ignoring the extension as item under cursor of active panel.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkCurrentExtension" alt="cm_MarkCurrentExtension" src="../../pixmaps/dctheme/32x32/actions/cm_markcurrentextension.png">
              <div class="cmdname"><a name="cm_MarkCurrentExtension">cm_MarkCurrentExtension</a></div>
              <div class="shrtctkey">Shift+Num +</div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Mark</a> files with the same extension as item under cursor of active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_UnmarkCurrentExtension" alt="cm_UnmarkCurrentExtension" src="../../pixmaps/dctheme/32x32/actions/cm_unmarkcurrentextension.png">
              <div class="cmdname"><a name="cm_UnmarkCurrentExtension">cm_UnmarkCurrentExtension</a></div>
              <div class="shrtctkey">Shift+Num -</div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Unmark</a> files with the same extension as item under cursor of active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MarkCurrentNameExt" alt="cm_MarkCurrentNameExt" src="../../pixmaps/dctheme/32x32/actions/cm_markcurrentnameext.png">
              <div class="cmdname"><a name="cm_MarkCurrentNameExt">cm_MarkCurrentNameExt</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Mark</a> files with the same filename and extension as item under cursor of active panel.<BR>
              See note of "<a href="#cm_MarkCurrentPath">cm_MarkCurrentPath</a>" for the possible usefulness of this command.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_UnmarkCurrentNameExt" alt="cm_UnmarkCurrentNameExt" src="../../pixmaps/dctheme/32x32/actions/cm_unmarkcurrentnameext.png">
              <div class="cmdname"><a name="cm_UnmarkCurrentNameExt">cm_UnmarkCurrentNameExt</a></div></td>
            <td class="cmdhintcell"><a href="help.html#mnu_select">Unmark</a> files with the same filename and extension as item under cursor of active panel.<BR>
              See note of "<a href="#cm_MarkCurrentPath">cm_MarkCurrentPath</a>" for the possible usefulness of this command.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CompareDirectories" alt="cm_CompareDirectories" src="../../pixmaps/dctheme/32x32/actions/cm_comparedirectories.png">
              <div class="cmdname"><a name="cm_CompareDirectories">cm_CompareDirectories</a></div></td>
            <td class="cmdhintcell">Will select the files, in both active and inactive panels, that are not present in the opposite panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SaveSelection" alt="cm_SaveSelection" src="../../pixmaps/dctheme/32x32/actions/cm_saveselection.png">
              <div class="cmdname"><a name="cm_SaveSelection">cm_SaveSelection</a></div></td>
            <td class="cmdhintcell">Used in conjunction with "<a href="#cm_RestoreSelection">cm_RestoreSelection</a>".<br>The "cm_SaveSelection" command will save in internal buffer current selected items.<br>Then later, the command "<a href="#cm_RestoreSelection">cm_RestoreSelection</a>" could be use to re-select again the same items that were selected before.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RestoreSelection" alt="cm_RestoreSelection" src="../../pixmaps/dctheme/32x32/actions/cm_restoreselection.png">
              <div class="cmdname"><a name="cm_RestoreSelection">cm_RestoreSelection</a></div></td>
            <td class="cmdhintcell">See previous "<a href="#cm_SaveSelection">cm_SaveSelection</a>" command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SaveSelectionToFile" alt="cm_SaveSelectionToFile" src="../../pixmaps/dctheme/32x32/actions/cm_saveselectiontofile.png">
              <div class="cmdname"><a name="cm_SaveSelectionToFile">cm_SaveSelectionToFile</a></div></td>
            <td class="cmdhintcell">Save the current selection to a file.<BR>
              You may specify the output filename into the first parameter.<BR>
              If no parameter is supplied, Double Commander will prompt user to enter one.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LoadSelectionFromFile" alt="cm_LoadSelectionFromFile" src="../../pixmaps/dctheme/32x32/actions/cm_loadselectionfromfile.png">
              <div class="cmdname"><a name="cm_LoadSelectionFromFile">cm_LoadSelectionFromFile</a></div></td>
            <td class="cmdhintcell">Will read the content of the supplied file to select items from what is read from the file.<br>
              This file could be supplied as the first parameter of the internal command.<br>
              If no file is supplied, application will prompt use to enter one.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LoadSelectionFromClip" alt="cm_LoadSelectionFromClip" src="../../pixmaps/dctheme/32x32/actions/cm_loadselectionfromclip.png">
              <div class="cmdname"><a name="cm_LoadSelectionFromClip">cm_LoadSelectionFromClip</a></div></td>
            <td class="cmdhintcell">Will select the item of the active panel based on the content of the clipboard.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catclipboard">2.9. Clipboard</a></h2>
        <P>Actions related to interact between system's clipboard and selected items.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Clipboard"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CutToClipboard" alt="cm_CutToClipboard" src="../../pixmaps/dctheme/32x32/actions/cm_cuttoclipboard.png">
              <div class="cmdname"><a name="cm_CutToClipboard">cm_CutToClipboard</a></div>
              <div class="shrtctkey">Ctrl+X</div></td>
            <td class="cmdhintcell">Cut selected text, file or directory to clipboard.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyToClipboard" alt="cm_CopyToClipboard" src="../../pixmaps/dctheme/32x32/actions/cm_copytoclipboard.png">
              <div class="cmdname"><a name="cm_CopyToClipboard">cm_CopyToClipboard</a></div>
              <div class="shrtctkey">Ctrl+C</div></td>
            <td class="cmdhintcell">Copy selected text, file or directory to clipboard.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_PasteFromClipboard" alt="cm_PasteFromClipboard" src="../../pixmaps/dctheme/32x32/actions/cm_pastefromclipboard.png">
              <div class="cmdname"><a name="cm_PasteFromClipboard">cm_PasteFromClipboard.</a></div>
              <div class="shrtctkey">Ctrl+V</div></td>
            <td class="cmdhintcell">Paste data from clipboard.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyNamesToClip" alt="cm_CopyNamesToClip" src="../../pixmaps/dctheme/32x32/actions/cm_copynamestoclip.png">
              <div class="cmdname"><a name="cm_CopyNamesToClip">cm_CopyNamesToClip</a></div>
              <div class="shrtctkey">Ctrl+Shift+X</div></td>
            <td class="cmdhintcell">Copy item <a href="help.html#cm_CopyNamesToClip">names</a> to clipboard.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyFullNamesToClip" alt="cm_CopyFullNamesToClip" src="../../pixmaps/dctheme/32x32/actions/cm_copyfullnamestoclip.png">
              <div class="cmdname"><a name="cm_CopyFullNamesToClip">cm_CopyFullNamesToClip</a></div>
              <div class="shrtctkey">Ctrl+Shift+C</div></td>
            <td class="cmdhintcell">Copy item <a href="help.html#cm_CopyFullNamesToClip">full names</a> to clipboard.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyPathOfFilesToClip" alt="cm_CopyPathOfFilesToClip" src="../../pixmaps/dctheme/32x32/actions/cm_copypathoffilestoclip.png">
              <div class="cmdname"><a name="cm_CopyPathOfFilesToClip">cm_CopyPathOfFilesToClip</a></div></td>
            <td class="cmdhintcell">Will copy the full path of the current selected items including an ending directory separator.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyPathNoSepOfFilesToClip" alt="cm_CopyPathNoSepOfFilesToClip" src="../../pixmaps/dctheme/32x32/actions/cm_copypathnosepoffilestoclip.png">
              <div class="longcmdname"><a name="cm_CopyPathNoSepOfFilesToClip">cm_CopyPathNoSepOfFilesToClip</a></div></td>
            <td class="cmdhintcell">Will copy the full path of the current selected items excluding an ending directory separator.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyFileDetailsToClip" alt="cm_CopyFileDetailsToClip" src="../../pixmaps/dctheme/32x32/actions/cm_copyfiledetailstoclip.png">
              <div class="cmdname"><a name="cm_CopyFileDetailsToClip">cm_CopyFileDetailsToClip</a></div></td>
            <td class="cmdhintcell">Will copy file information of selected items onto the clipboard.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catnavigation">2.10. Navigation</a></h2>
        <P>To go from one folder to another to access various items according to their location.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Navigation"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_DirHistory" alt="cm_DirHistory" src="../../pixmaps/dctheme/32x32/actions/cm_dirhistory.png">
              <div class="cmdname"><a name="cm_DirHistory">cm_DirHistory</a></div>
              <div class="shrtctkey">Ctrl+H</div></td>
            <td class="cmdhintcell">Invoke <a href="help.html#cm_DirHistory">dir history</a> menu.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">menutype</td>
                  <td class="innerdescvaluecell">popup</td>
                  <td class="innerdescdesccell">directories in history will be displayed in a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">treeview</td>
                  <td class="innerdescdesccell">directories in history will be displayed in a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be through a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">position</td>
                  <td class="innerdescvaluecell">panel</td>
                  <td class="innerdescdesccell">menu will be shown from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">cursor</td>
                  <td class="innerdescdesccell">menu will be shown at the current mouse cursor position</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">popup menu shown from top left corner of active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_DirHotList" alt="cm_DirHotList" src="../../pixmaps/dctheme/32x32/actions/cm_dirhotlist.png">
              <div class="cmdname"><a name="cm_DirHotList">cm_DirHotList</a></div>
              <div class="shrtctkey">Ctrl+D</div></td>
            <td class="cmdhintcell">Directory <a href="help.html#cm_DirHotList">hotlist</a>.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">menutype</td>
                  <td class="innerdescvaluecell">popup</td>
                  <td class="innerdescdesccell">hot directories will be displayed in a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">treeview</td>
                  <td class="innerdescdesccell">hot directories will be displayed in a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be through a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">position</td>
                  <td class="innerdescvaluecell">panel</td>
                  <td class="innerdescdesccell">menu will be shown from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">cursor</td>
                  <td class="innerdescdesccell">menu will be shown at the current mouse cursor position</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">popup menu shown from top left corner of active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ChangeDirToParent" alt="cm_ChangeDirToParent" src="../../pixmaps/dctheme/32x32/actions/cm_changedirtoparent.png">
              <div class="cmdname"><a name="cm_ChangeDirToParent">cm_ChangeDirToParent</a></div>
              <div class="shrtctkey">Ctrl+PgUp, Backspace</div></td>
            <td class="cmdhintcell">Go to the parent directory of the current shown one.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ChangeDirToHome" alt="cm_ChangeDirToHome" src="../../pixmaps/dctheme/32x32/actions/cm_changedirtohome.png">
              <div class="cmdname"><a name="cm_ChangeDirToHome">cm_ChangeDirToHome</a></div>
              <div class="shrtctkey">Ctrl+Shift+Home</div></td>
            <td class="cmdhintcell">Go to to the user's home directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ChangeDirToRoot" alt="cm_ChangeDirToRoot" src="../../pixmaps/dctheme/32x32/actions/cm_changedirtoroot.png">
              <div class="cmdname"><a name="cm_ChangeDirToRoot">cm_ChangeDirToRoot</a></div>
              <div class="shrtctkey">Ctrl+\</div></td>
            <td class="cmdhintcell">Go to root directory ("/" in GNU/Linux).</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_TargetEqualSource" alt="cm_TargetEqualSource" src="../../pixmaps/dctheme/32x32/actions/cm_targetequalsource.png">
              <div class="cmdname"><a name="cm_TargetEqualSource">cm_TargetEqualSource</a></div>
              <div class="shrtctkey">Alt+Z</div></td>
            <td class="cmdhintcell">Show <a href="help.html#cm_TargetEqualSource">same</a> directory in opposite panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_TransferLeft" alt="cm_TransferLeft" src="../../pixmaps/dctheme/32x32/actions/cm_transferleft.png">
              <div class="cmdname"><a name="cm_TransferLeft">cm_TransferLeft</a></div>
              <div class="shrtctkey">Ctrl+Left</div></td>
            <td class="cmdhintcell">Open directory under cursor in the left panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_TransferRight" alt="cm_TransferRight" src="../../pixmaps/dctheme/32x32/actions/cm_transferright.png">
              <div class="cmdname"><a name="cm_TransferRight">cm_TransferRight</a></div>
              <div class="shrtctkey">Ctrl+Right</div></td>
            <td class="cmdhintcell">Open directory under cursor in the right panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LeftEqualRight" alt="cm_LeftEqualRight" src="../../pixmaps/dctheme/32x32/actions/cm_leftequalright.png">
              <div class="cmdname"><a name="cm_LeftEqualRight">cm_LeftEqualRight</a></div></td>
            <td class="cmdhintcell">Show same directory in left panel than what is in the right panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RightEqualLeft" alt="cm_RightEqualLeft" src="../../pixmaps/dctheme/32x32/actions/cm_rightequalleft.png">
              <div class="cmdname"><a name="cm_RightEqualLeft">cm_RightEqualLeft</a></div></td>
            <td class="cmdhintcell">Show same directory in right panel than what is in the left panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Exchange" alt="cm_Exchange" src="../../pixmaps/dctheme/32x32/actions/cm_exchange.png">
              <div class="cmdname"><a name="cm_Exchange">cm_Exchange</a></div>
              <div class="shrtctkey">Ctrl+U</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_Exchange">Swap</a> file panels.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_QuickSearch" alt="cm_QuickSearch" src="../../pixmaps/dctheme/32x32/actions/cm_quicksearch.png">
              <div class="cmdname"><a name="cm_QuickSearch">cm_QuickSearch</a></div>
              <div class="shrtctkey">Ctrl+S</div></td>
            <td class="cmdhintcell"><a href="help.html#5_1_14_bystrPoisk">Quick search</a> in directory.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">search</td>
                  <td class="innerdescvaluecell">on/off/cycle</td>
                  <td class="innerdescdesccell">Determine the state of the quick search frame at the bottom:<BR>
                    - when it's "on", the specified search parameters are applied and quick search frame is shown at the bottom<BR>
                    - when it's "off", quick search is removed and search frame is hidden<BR>
                    - when it's "cycle", it is to use for when you invoke many time in a row the command to go to the next matching item</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">direction</td>
                  <td class="innerdescvaluecell">first/last/next</td>
                  <td class="innerdescdesccell">Determine the direction of the quick search for the item that match the search criteras:<BR>
                    - when it's "first", to the first item found from the top<BR>
                    - when it's "last", to the last item<BR>
                    - when it's "next", to the next one after the current one at the moment of the search. Please note that it may do a wrap around to come back to prior item if none was found after the current selected one.<BR>
                    *Note: This option is unrevelant when the "search=cycle".</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">matchbeginning</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles the <i>match beginning</i> option</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">matchending</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles the <i>match ending</i> option</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">casesensitive</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles case sensitivity</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">files</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles filtering files</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">directories</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles filtering directories</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2">filesdirectories</td>
                  <td class="innerdescdesccell">toggles between filtering only files, only directories or both</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">text</td>
                  <td class="innerdescvaluecell"><i>&lt;any string&gt;</i></td>
                  <td class="innerdescdesccell">sets <i>any string</i> as the new searched string</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_QuickFilter" alt="cm_QuickFilter" src="../../pixmaps/dctheme/32x32/actions/cm_quickfilter.png">
              <div class="cmdname"><a name="cm_QuickFilter">cm_QuickFilter</a></div>
              <div class="shrtctkey">Ctrl+F</div></td>
            <td class="cmdhintcell">It allows to filter the file list to show only desired files/directories.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">filter</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">
                    - when it's "on", the specified filter is applied and configurable filter frame is shown at the bottom<br>
                    - when it's "off", filtering is removed and filter frame is hidden<br>
                    - when it's "toggle", it will toggle between the two previous states</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">matchbeginning</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles the <i>match beginning</i> option</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">matchending</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles the <i>match ending</i> option</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">casesensitive</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles case sensitivity</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">files</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles filtering files</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">directories</td>
                  <td class="innerdescvaluecell">on/off/toggle</td>
                  <td class="innerdescdesccell">sets or toggles filtering directories</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2">filesdirectories</td>
                  <td class="innerdescdesccell">toggles between filtering only files, only directories or both</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">text</td>
                  <td class="innerdescvaluecell"><i>&lt;any string&gt;</i></td>
                  <td class="innerdescdesccell">sets <i>any string</i> as the new filter</td>
                </tr>
              </table>
              <br>
              For example, setting a tool button with the following parameters will allow pressing button to toggle the application of a filter to show only the "txt" file or not each time the button is pressed:<br>
              <div style="margin: 0 0 0 15;">
                text=txt<br>
                filter=toggle<br>
                files=yes<br>
                directories=yes<br>
                matchbeginning=no<br>
                matchending=yes
              </div>
              <br>
              When no parameter at all is specified, it will be assumed to activate the filter AND the other options will be the same as previous filter <b>except</b> for the text with the focus ready in the text box to allow you to type the desired text to set filter.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_EditPath" alt="cm_EditPath" src="../../pixmaps/dctheme/32x32/actions/cm_editpath.png">
              <div class="cmdname"><a name="cm_EditPath">cm_EditPath</a></div></td>
            <td class="cmdhintcell">User may type directly the directory he wants see in the selected panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ChangeDir" alt="cm_ChangeDir" src="../../pixmaps/dctheme/32x32/actions/cm_changedir.png">
              <div class="cmdname"><a name="cm_ChangeDir">cm_ChangeDir</a></div></td>
            <td class="cmdhintcell">Will switch the active/inactive/left/right panel to the specified directory(ies).<br>
              Please note that you may specify more than one parameter, so with only one command, you may set both source and target path.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">activepath</td>
                  <td class="innerdescvaluecell"><I>specified_path</i></td>
                  <td class="innerdescdesccell">will switch the active panel to the <I>specified_path</i></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">inactivepath</td>
                  <td class="innerdescvaluecell"><I>specified_path</i></td>
                  <td class="innerdescdesccell">will switch the inactive panel to the <I>specified_path</i></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">leftpath</td>
                  <td class="innerdescvaluecell"><I>specified_path</i></td>
                  <td class="innerdescdesccell">will switch the left panel to the <I>specified_path</i></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell">rightpath</td>
                  <td class="innerdescvaluecell"><I>specified_path</i></td>
                  <td class="innerdescdesccell">will switch the right panel to the <I>specified_path</i></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="3">For legacy backward compatibility, you may also provide simply a single path as single parameter and DC will switch active panel to that path.</td>
                </tr>
              </table>
              <br>
              Examples:<br>
              <I>cm_ChangeDir activepath=%DESKTOP% inactivepath=E:\Medias\Paul Houde</i><br>
              This will make the active panel to show content of %DESKTOP% directory and in the inactive panel you'll see the content of "Paul Houde" one.<br><br>
              <I>cm_ChangeDir leftpath=C:\Working rightpath=E:\Euler</i><br>
              No matter where is the current active panel, the left one will show content of "Working" folder and the right panel will show the one of "Euler".<br><br>
              <I>cm_ChangeDir \\TERA-06\OPENSHARE1\MEDIAS\PICTURES\2015</i><br>
              This is the DC legacy way of working, the active panel will switch to show content of the network mentioned path.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_GoToFirstFile" alt="cm_GoToFirstFile" src="../../pixmaps/dctheme/32x32/actions/cm_gotofirstfile.png">
              <div class="cmdname"><a name="cm_GoToFirstFile">cm_GoToFirstFile</a></div></td>
            <td class="cmdhintcell">Current selection of the active panel to the first item.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_GoToLastFile" alt="cm_GoToLastFile" src="../../pixmaps/dctheme/32x32/actions/cm_gotolastfile.png">
              <div class="cmdname"><a name="cm_GoToLastFile">cm_GoToLastFile</a></div></td>
            <td class="cmdhintcell">Current selection of the active panel to the last item.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ViewHistory" alt="cm_ViewHistory" src="../../pixmaps/dctheme/32x32/actions/cm_viewhistory.png">
              <div class="cmdname"><a name="cm_ViewHistory">cm_ViewHistory</a></div></td>
            <td class="cmdhintcell">Will popup at the cursor position, the last directories visited.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">menutype</td>
                  <td class="innerdescvaluecell">popup</td>
                  <td class="innerdescdesccell">directories in history will be displayed in a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">treeview</td>
                  <td class="innerdescdesccell">directories in history will be displayed in a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be through a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">position</td>
                  <td class="innerdescvaluecell">panel</td>
                  <td class="innerdescdesccell">menu will be shown from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">cursor</td>
                  <td class="innerdescdesccell">menu will be shown at the current mouse cursor position</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be from mouse cursor position</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">popup menu shown at the current mouse cursor position</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ViewHistoryNext" alt="cm_ViewHistoryNext" src="../../pixmaps/dctheme/32x32/actions/cm_viewhistorynext.png">
              <div class="cmdname"><a name="cm_ViewHistoryNext">cm_ViewHistoryNext</a></div>
              <div class="shrtctkey">Alt+Right</div></td>
            <td class="cmdhintcell">According to list of last directories visited, will set the active panel to the very next one, if any, visited prior to current one.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ViewHistoryPrev" alt="cm_ViewHistoryPrev" src="../../pixmaps/dctheme/32x32/actions/cm_viewhistoryprev.png">
              <div class="cmdname"><a name="cm_ViewHistoryPrev">cm_ViewHistoryPrev</a></div></td>
            <td class="cmdhintcell">According to list of last directories visited, will set the active panel to the very last one visited prior to current one.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OpenDriveByIndex" alt="cm_OpenDriveByIndex" src="../../pixmaps/dctheme/32x32/actions/cm_opendrivebyindex.png">
              <div class="cmdname"><a name="cm_OpenDriveByIndex">cm_OpenDriveByIndex</a></div></td>
            <td class="cmdhintcell">In the current tab of the specified panel, will show content of the specified drive.<br>If no panel is specified, it will be in the current active panel.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="4">index</td>
                  <td class="innerdescvaluecell">1</td>
                  <td class="innerdescdesccell">will use <B>1</b>st drive of list</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">2</td>
                  <td class="innerdescdesccell">will use <B>2</b>nd drive of list</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">3</td>
                  <td class="innerdescdesccell">will use <B>3</b>rd drive of list</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>n</i></td>
                  <td class="innerdescdesccell">will use <I><B>n</b></i>th drive of list</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="4">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">selected drive will be in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">selected drive will be in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">selected drive will be in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">selected drive will be in <B>current active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">Specifying at least the <B>index</b> is mandatory.</td>
                </tr>
              </table>
              <br>
              Example: "cm_OpenDriveByIndex side=left index=2" will focus panel on left and show drive E: content assuming in our current drive list we have C:, E:, S: and X:.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FocusSwap" alt="cm_FocusSwap" src="../../pixmaps/dctheme/32x32/actions/cm_focusswap.png">
              <div class="cmdname"><a name="cm_FocusSwap">cm_FocusSwap</a></div></td>
            <td class="cmdhintcell">Switch focus between left and right panel.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">will set focus on left panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">will set focus on right panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">will set focus on the opposite panel of the current selected one</td>
                </tr>
              </table>
            </td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="cathelp">2.11. Help</a></h2>
        <P>Access the integrated help files of Double Commander.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Help"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_HelpIndex" alt="cm_HelpIndex" src="../../pixmaps/dctheme/32x32/actions/cm_helpindex.png">
              <div class="cmdname"><a name="cm_HelpIndex">cm_HelpIndex</a></div>
            <td class="cmdhintcell">Open Double Commander <a href="index.html">help</a> index page.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Keyboard" alt="cm_Keyboard" src="../../pixmaps/dctheme/32x32/actions/cm_keyboard.png">
              <div class="cmdname"><a name="cm_Keyboard">cm_Keyboard</a></div>
            <td class="cmdhintcell">Open keyboard <a href="shortcuts.html">shortcuts</a> help page.<br><B>Note</b>: This will be a passive HTML file. So you if you change the keyboard shortcut from the default one, be aware that the passive html help file won't show the actual shortcut the application is currently using.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_VisitHomePage" alt="cm_VisitHomePage" src="../../pixmaps/dctheme/32x32/actions/cm_visithomepage.png">
              <div class="cmdname"><a name="cm_VisitHomePage">cm_VisitHomePage</a></div>
            <td class="cmdhintcell">Go to Double Commander's home page.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_About" alt="cm_About" src="../../pixmaps/dctheme/32x32/actions/cm_about.png">
              <div class="cmdname"><a name="cm_About">cm_About</a></div>
              <div class="shrtctkey">F1</div></td>
            <td class="cmdhintcell">Show program "About" information.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catwindow">2.12. Window</a></h2>
        <P>Commands related with the Double Commander window, its look and behavior, like any other computer application.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Window"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_HorizontalFilePanels" alt="cm_HorizontalFilePanels" src="../../pixmaps/dctheme/32x32/actions/cm_horizontalfilepanels.png">
              <div class="cmdname"><a name="cm_HorizontalFilePanels">cm_HorizontalFilePanels</a></div>
              <div class="shrtctkey">Ctrl+Shift+H</div></td>
            <td class="cmdhintcell">Will set the arrangement of panels between two vertical ones disposed in left/right OR two horizontal ones disposed in top/bottom.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">mode</td>
                  <td class="innerdescvaluecell"><I>(nothing)</i>/<br>legacy</td>
                  <td class="innerdescdesccell">toggle between vertical/horizontal</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">vertical</td>
                  <td class="innerdescdesccell">vertical panels (default)</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">horizontal</td>
                  <td class="innerdescdesccell">horizontal panels</td>
                </tr>
              </table>
              <br>
              Example: "cm_HorizontalFilePanels mode=horizontal" will force the two panels to be in horizontal disposition, one above the other.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_PanelsSplitterPerPos" alt="cm_PanelsSplitterPerPos" src="../../pixmaps/dctheme/32x32/actions/cm_panelssplitterperpos.png">
              <div class="cmdname"><a name="cm_PanelsSplitterPerPos">cm_PanelsSplitterPerPos</a></div>
            <td class="cmdhintcell">Set the panels width, e.g. 50%&nbsp;&mdash; equal size.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell">splitpct</td>
                  <td class="innerdescvaluecell">0-100</td>
                  <td class="innerdescdesccell">percentage of whole width to assign to left panel<br>(or top panel if horizontal mode is enabled)</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">percentage set to 50-50</td>
                </tr>
              </table>
              <br>
              Example: "cm_PanelsSplitterPerPos splitpct=80", with vertical panels, will set the left panel width to 80% of the available space.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ShowMainMenu" alt="cm_ShowMainMenu" src="../../pixmaps/dctheme/32x32/actions/cm_showmainmenu.png">
              <div class="cmdname"><a name="cm_ShowMainMenu">cm_ShowMainMenu</a></div></td>
            <td class="cmdhintcell">Determine if we see the main bar menu or not.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">menu</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">main menu is displayed</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">main menu is <B>not</b> displayed</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">treeview</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">on request, the main menu item will be shown under the form of a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">dummy, will simply be ignored</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">toggle the visibility of the main menu</td>
                </tr>
              </table>
              <br>
              Example: "cm_ShowMainMenu menu=off", will hide the main menu.
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ShowButtonMenu" alt="cm_ShowButtonMenu" src="../../pixmaps/dctheme/32x32/actions/cm_showbuttonmenu.png">
              <div class="cmdname"><a name="cm_ShowButtonMenu">cm_ShowButtonMenu</a></div>
            <td class="cmdhintcell">Determine if we see the toolbar or not.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">toolbar</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">toolbar is displayed</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">toolbar is <B>not</b> displayed</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">treeview</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">on request, the toolbar menu item will be shown under the form of a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">dummy, will simply be ignored</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">toggle the visibility of the toolbar</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OperationsViewer" alt="cm_OperationsViewer" src="../../pixmaps/dctheme/32x32/actions/cm_operationsviewer.png">
              <div class="cmdname"><a name="cm_OperationsViewer">cm_OperationsViewer</a></div>
              <div class="shrtctkey">Alt+V</div></td>
            <td class="cmdhintcell">Shows a window with the file operations process currently in progress if any.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OpenBar" alt="cm_OpenBar" src="../../pixmaps/dctheme/32x32/actions/cm_openbar.png">
              <div class="cmdname"><a name="cm_OpenBar">cm_OpenBar</a></div></td>
            <td class="cmdhintcell">Ex-command not implemented anymore.<br>Since the configuration of the toolbar is done via one single simple versatile dedicated configuration window, you may want to refer to <a href="#cm_ConfigToolbars">cm_ConfigToolbars</a> command instead.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Minimize" alt="cm_Minimize" src="../../pixmaps/dctheme/32x32/actions/cm_minimize.png">
              <div class="cmdname"><a name="cm_Minimize">cm_Minimize</a></div></td>
            <td class="cmdhintcell">Minimize the Double Commander window.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Exit" alt="cm_Exit" src="../../pixmaps/dctheme/32x32/actions/cm_exit.png">
              <div class="cmdname"><a name="cm_Exit">cm_Exit</a></div>
              <div class="shrtctkey">Alt+X</div></td>
            <td class="cmdhintcell">Close Double Commander.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_TreeView" alt="cm_TreeView" src="../../pixmaps/dctheme/32x32/actions/cm_treeview.png">
              <div class="cmdname"><a name="cm_TreeView">cm_TreeView</a></div>
              <div class="shrtctkey">Ctrl+Shift+F8</div></td>
            <td class="cmdhintcell">Tree View Panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FocusTreeView" alt="cm_FocusTreeView" src="../../pixmaps/dctheme/32x32/actions/cm_focustreeview.png">
              <div class="cmdname"><a name="cm_FocusTreeView">cm_FocusTreeView</a></div>
              <div class="shrtctkey">Shift+Tab</div></td>
            <td class="cmdhintcell">Switch focus between current file list and tree view (if enabled).</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catcommandline">2.13. Command Line</a></h2>
        <P>Interact with command line to view past commands and help to invoke new ones.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Command Line"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_FocusCmdLine" alt="cm_FocusCmdLine" src="../../pixmaps/dctheme/32x32/actions/cm_focuscmdline.png">
              <div class="cmdname"><a name="cm_FocusCmdLine">cm_FocusCmdLine</a></div>
              <div class="shrtctkey">Shift+F2</div></td>
            <td class="cmdhintcell">Change focus to the command line.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ShowCmdLineHistory" alt="cm_ShowCmdLineHistory" src="../../pixmaps/dctheme/32x32/actions/cm_showcmdlinehistory.png">
              <div class="cmdname"><a name="cm_ShowCmdLineHistory">cm_ShowCmdLineHistory</a></div>
              <div class="shrtctkey">Ctrl+7</div></td>
            <td class="cmdhintcell">Show history of all commands used in the <a href="help.html#iface_path">command line</a>.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">menutype</td>
                  <td class="innerdescvaluecell">combobox</td>
                  <td class="innerdescdesccell">the combo box of the command line will be expanded so you may chose the command from the command line history</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">treeview</td>
                  <td class="innerdescdesccell">a tree view menu will be opened above the combox box of the command line</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be through the combo box</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ToggleFullscreenConsole" alt="cm_ToggleFullscreenConsole" src="../../pixmaps/dctheme/32x32/actions/cm_togglefullscreenconsole.png">
              <div class="cmdname"><a name="cm_ToggleFullscreenConsole">cm_ToggleFullscreenConsole</a></div>
              <div class="shrtctkey">Ctrl+O</div></td>
            <td class="cmdhintcell">Toggle fullscreen mode console window.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CmdLineNext" alt="cm_CmdLineNext" src="../../pixmaps/dctheme/32x32/actions/cm_cmdlinenext.png">
              <div class="cmdname"><a name="cm_CmdLineNext">cm_CmdLineNext</a></div></td>
            <td class="cmdhintcell">Will activate in the next command line typed prior the current one, if any.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CmdLinePrev" alt="cm_CmdLinePrev" src="../../pixmaps/dctheme/32x32/actions/cm_cmdlineprev.png">
              <div class="cmdname"><a name="cm_CmdLinePrev">cm_CmdLinePrev</a></div></td>
            <td class="cmdhintcell">Will activate in the next command line typed after the current one, if any.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_AddPathToCmdLine" alt="cm_AddPathToCmdLine" src="../../pixmaps/dctheme/32x32/actions/cm_addpathtocmdline.png">
              <div class="cmdname"><a name="cm_AddPathToCmdLine">cm_AddPathToCmdLine</a></div>
              <div class="shrtctkey">Ctrl+P</div>
            </td>
            <td class="cmdhintcell">Place current path in command line.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">mode</td>
                  <td class="innerdescvaluecell">smartquote</td>
                  <td class="innerdescdesccell">will place the added text between quotes, only if necessary (like for example if there are spaces in it and will let it intact if there is no spaces</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">forcequote</td>
                  <td class="innerdescdesccell">will systematically quote that will be added</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">neverquote</td>
                  <td class="innerdescdesccell">will systematically never quote that will be added</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">prompt</td>
                  <td class="innerdescdesccell">will prompt the user if he wants to quote his added text or not, with the default choice set like if it would be a "mode=smartquote"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be "mode=smartquote"</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_AddFilenameToCmdLine" alt="cm_AddFilenameToCmdLine" src="../../pixmaps/dctheme/32x32/actions/cm_addfilenametocmdline.png">
              <div class="cmdname"><a name="cm_AddFilenameToCmdLine">cm_AddFilenameToCmdLine</a></div>
              <div class="shrtctkey">Ctrl+Enter</div></td>
            <td class="cmdhintcell">Place filename of current selected item in command line.<BR><B>Note:</b> Command also accepts the same parameters as the <a href="#cm_AddPathToCmdLine">cm_AddPathToCmdLine</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_AddPathAndFilenameToCmdLine" alt="cm_AddPathAndFilenameToCmdLine" src="../../pixmaps/dctheme/32x32/actions/cm_addpathandfilenametocmdline.png">
              <div class="longcmdname"><a name="cm_AddPathAndFilenameToCmdLine">cm_AddPathAndFilenameToCmdLine</a></div>
              <div class="shrtctkey">Ctrl+Shift+Enter</div></td>
            <td class="cmdhintcell">Place current path and filename of selected item in command line.<BR><B>Note:</b> Command also accepts the same parameters as the <a href="#cm_AddPathToCmdLine">cm_AddPathToCmdLine</a>.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="cattools">2.14. Tools</a></h2>
        <P>For action requiring more than a click.<BR>These action will generally show another window to have Double Commander do some more complex jobs.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Tools"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_MultiRename" alt="cm_MultiRename" src="../../pixmaps/dctheme/32x32/actions/cm_multirename.png">
              <div class="cmdname"><a name="cm_MultiRename">cm_MultiRename</a></div>
              <div class="shrtctkey">Ctrl+M</div></td>
            <td class="cmdhintcell">Open <a href="help.html#cm_MultiRename">multi rename</a> tool dialog.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Search" alt="cm_Search" src="../../pixmaps/dctheme/32x32/actions/cm_search.png">
              <div class="cmdname"><a name="cm_Search">cm_Search</a></div>
              <div class="shrtctkey">Alt+F7</div></td>
            <td class="cmdhintcell">Open <a href="help.html#cm_Search">Search</a> dialog.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_AddNewSearch" alt="cm_AddNewSearch" src="../../pixmaps/dctheme/32x32/actions/cm_addnewsearch.png">
              <div class="cmdname"><a name="cm_AddNewSearch">cm_AddNewSearch</a></div>
              <div class="shrtctkey">Shift+Ctrl+F7</div></td>
            <td class="cmdhintcell">Create and open a new instance of <a href="help.html#cm_Search">Search</a> dialog window. Invoking this command to do a search will preserve the searches we've made earlier in the session. It will also allow to launch a new search instance to search something else while a long search is in progress.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ViewSearches" alt="cm_ViewSearches" src="../../pixmaps/dctheme/32x32/actions/cm_viewsearches.png">
              <div class="cmdname"><a name="cm_ViewSearches">cm_ViewSearches</a></div></td>
            <td class="cmdhintcell">If we've launched a few instances of search with the <a href="#cm_AddNewSearch">cm_AddNewSearch</a>, this command will allow us to view a summary of them and be able to switch back to one of them.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_DeleteSearches" alt="cm_DeleteSearches" src="../../pixmaps/dctheme/32x32/actions/cm_deletesearches.png">
              <div class="cmdname"><a name="cm_DeleteSearches">cm_DeleteSearches</a></div></td>
            <td class="cmdhintcell">If we've launched a few instances of search with the <a href="#cm_AddNewSearch">cm_AddNewSearch</a>, this command will allow us to close and remove from memory all of them at once.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SyncDirs" alt="cm_SyncDirs" src="../../pixmaps/dctheme/32x32/actions/cm_syncdirs.png">
              <div class="cmdname"><a name="cm_SyncDirs">cm_SyncDirs</a></div></td>
            <td class="cmdhintcell">Will invoke the directory synchronization tool to scan left and right panel folder to eventually see the content difference and make them equal.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CompareContents" alt="cm_CompareContents" src="../../pixmaps/dctheme/32x32/actions/cm_comparecontents.png">
              <div class="cmdname"><a name="cm_CompareContents">cm_CompareContents</a></div>
            <td class="cmdhintcell">Open <a href="help.html#cm_CompareContents">compare by contents</a> dialog</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_DebugShowCommandParameters" alt="cm_DebugShowCommandParameters" src="../../pixmaps/dctheme/32x32/actions/cm_debugshowcommandparameters.png">
              <div class="longcmdname"><a name="cm_DebugShowCommandParameters">cm_DebugShowCommandParameters</a></div></td>
            <td class="cmdhintcell">Will simply show a message with the info passed as parameters.<br>This may be helpful to validate the parameter you're passing to a command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_DoAnyCmCommand" alt="cm_DoAnyCmCommand" src="../../pixmaps/dctheme/32x32/actions/cm_doanycmcommand.png">
              <div class="cmdname"><a name="cm_DoAnyCmCommand">cm_DoAnyCmCommand</a></div>
              <div class="shrtctkey">Shift+F12</div></td>
            <td class="cmdhintcell">Will show an internal command selector window where user may select any of the possible internal command and execute it.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catview">2.15. View</a></h2>
        <P>Commands related with the visibility or not of files like the system files, etc.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "View"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_Refresh" alt="cm_Refresh" src="../../pixmaps/dctheme/32x32/actions/cm_refresh.png">
              <div class="cmdname"><a name="cm_Refresh">cm_Refresh</a></div>
              <div class="shrtctkey">Ctrl+R</div></td>
            <td class="cmdhintcell"><a href="help.html#cm_Refresh">Refresh</a> panels.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ShowSysFiles" alt="cm_ShowSysFiles" src="../../pixmaps/dctheme/32x32/actions/cm_showsysfiles.png">
              <div class="cmdname"><a name="cm_ShowSysFiles">cm_ShowSysFiles</a></div>
            <td class="cmdhintcell">Show hidden and system <a href="help.html#cm_ShowSysFiles">files</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SwitchIgnoreList" alt="cm_SwitchIgnoreList" src="../../pixmaps/dctheme/32x32/actions/cm_switchignorelist.png">
              <div class="cmdname"><a name="cm_SwitchIgnoreList">cm_SwitchIgnoreList</a></div></td>
            <td class="cmdhintcell">Enable or not the "Ignore list" depending of the parameter.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">ignorelist</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">ignore list is enabled</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">ignore list is <B>not</b> enabled</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">toggle the state of the ignore list</td>
                </tr>
              </table>
              <br>
              Example: "cm_SwitchIgnoreList ignorelist=on", ignore list is enabled so item present in the ignore list won't be shown in the panels.
            </td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="cattabs">2.16. Tabs</a></h2>
        <P>Interact with tabs by creating new ones, navigate through them, etc.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Tabs"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_NewTab" alt="cm_NewTab" src="../../pixmaps/dctheme/32x32/actions/cm_newtab.png">
              <div class="cmdname"><a name="cm_NewTab">cm_NewTab</a></div>
              <div class="shrtctkey">Ctrl+T</div></td>
            <td class="cmdhintcell">Create a <a href="help.html#cm_NewTab">new tab</a> for opened directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_OpenDirInNewTab" alt="cm_OpenDirInNewTab" src="../../pixmaps/dctheme/32x32/actions/cm_opendirinnewtab.png">
              <div class="cmdname"><a name="cm_OpenDirInNewTab">cm_OpenDirInNewTab</a></div>
              <div class="shrtctkey">Ctrl+Up</div></td>
            <td class="cmdhintcell">Open directory under cursor at <a href="help.html#cm_OpenDirInNewTab">new tab</a>, but don't switch to it.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_NextTab" alt="cm_NextTab" src="../../pixmaps/dctheme/32x32/actions/cm_nexttab.png">
              <div class="cmdname"><a name="cm_NextTab">cm_NextTab</a></div>
              <div class="shrtctkey">Ctrl+Tab</div></td>
            <td class="cmdhintcell">Change to <a href="help.html#cm_NextTab">next tab</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_PrevTab" alt="cm_PrevTab" src="../../pixmaps/dctheme/32x32/actions/cm_prevtab.png">
              <div class="cmdname"><a name="cm_PrevTab">cm_PrevTab</a></div>
              <div class="shrtctkey">Ctrl+Shift+Tab</div></td>
            <td class="cmdhintcell">Change to <a href="help.html#cm_PrevTab">previous tab</a>.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_RenameTab" alt="cm_RenameTab" src="../../pixmaps/dctheme/32x32/actions/cm_renametab.png">
              <div class="cmdname"><a name="cm_RenameTab">cm_RenameTab</a></div></td>
            <td class="cmdhintcell">Prompt user to rename current tab of active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CloseTab" alt="cm_CloseTab" src="../../pixmaps/dctheme/32x32/actions/cm_closetab.png">
              <div class="cmdname"><a name="cm_CloseTab">cm_CloseTab</a></div>
              <div class="shrtctkey">Ctrl+W</div></td>
            <td class="cmdhintcell">Close current tab of active panel.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CloseAllTabs" alt="cm_CloseAllTabs" src="../../pixmaps/dctheme/32x32/actions/cm_closealltabs.png">
              <div class="cmdname"><a name="cm_CloseAllTabs">cm_CloseAllTabs</a></div></td>
            <td class="cmdhintcell">Close all tabs of panel(s), excluding the active one, according to following parameters:<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">action closes tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">action closes tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">action closes tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">action closes tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">action closes tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">dolocked</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">action closes also the <B>locked tabs</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">ignore <B>locked tabs</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">confirmlocked</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">if "dolocked" is true, user has to confirm closing locked tabs no matter the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">if "dolocked" is true, close locked tabs without asking confirmation no matter the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(not specified)</i></td>
                  <td class="innerdescdesccell">if "dolocked" is true, ask or not user to confirm closing locked tabs according to the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">close all the non locked tabs, excluding the active tab, on the active panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="3">For legacy backward compatibility, you may also provide simply a single word as single parameter like "LeftTabs" and "RightTabs" to specify the panel where to apply command.</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CloseDuplicateTabs" alt="cm_CloseDuplicateTabs" src="../../pixmaps/dctheme/32x32/actions/cm_closeduplicatetabs.png">
              <div class="cmdname"><a name="cm_CloseDuplicateTabs">cm_CloseDuplicateTabs</a></div></td>
            <td class="cmdhintcell">Close tabs pointing to same dirs so at the end of action, only one tab for each dir is kept.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">action closes duplicated tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">action closes duplicated tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">action closes duplicated tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">action closes duplicated tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">action closes duplicated tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">dolocked</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">action closes also duplicated <B>locked tabs</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">ignore duplicated <B>locked tabs</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">confirmlocked</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">if "dolocked" is true, user has to confirm closing duplicated locked tabs no matter the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">if "dolocked" is true, close duplicated locked tabs without asking confirmation no matter the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(not specified)</i></td>
                  <td class="innerdescdesccell">if "dolocked" is true, ask or not user to confirm closing duplicated locked tabs according to the configured option "Confirm close locked tabs"</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">close all the duplicated non locked tabs on the active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_CopyAllTabsToOpposite" alt="cm_CopyAllTabsToOpposite" src="../../pixmaps/dctheme/32x32/actions/cm_copyalltabstoopposite.png">
              <div class="cmdname"><a name="cm_CopyAllTabsToOpposite">cm_CopyAllTabsToOpposite</a></div></td>
            <td class="cmdhintcell">All tabs from the specified side will be added also on the opposite side. By default with no parameter, it copies tab from the active panel to the inactive panel.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">will copy tabs from <B>left panel</b> to the right one</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">will copy tabs from <B>right panel</b> to the left one</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">will copy tabs from <B>active panel</b> to the inactive one</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">will copy tabs from <B>inactive panel</b> to the active one</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">will copy tabs from <B>both panel</b> to the opposite ones</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">will copy tabs from <B>active panel</b> to the inactive one</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LoadTabs" alt="cm_LoadTabs" src="../../pixmaps/dctheme/32x32/actions/cm_loadtabs.png">
              <div class="cmdname"><a name="cm_LoadTabs">cm_LoadTabs</a></div></td>
            <td class="cmdhintcell">Open a file expected to contains tab names and their associated directories to apply to panel.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">filename</td>
                  <td class="innerdescvaluecell"><i>filename.tab</i></td>
                  <td class="innerdescdesccell">the file used to load the tabs</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(not specified)</i></td>
                  <td class="innerdescdesccell">a file requested will appear to prompt the user to indicate from which .tab file to load the tabs from</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="6">loadleftto</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be in <B>left</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be in <B>right</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be in <B>active</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be in <B>inactive</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be in <B>both</b> panels</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">none</td>
                  <td class="innerdescdesccell">tabs saved in left panel in .tab file will be <B>ignored</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="6">loadrightto</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be in <B>left</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be in <B>right</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be in <B>active</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be in <B>inactive</b> panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be in <B>both</b> panels</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">none</td>
                  <td class="innerdescdesccell">tabs saved in right panel in .tab file will be <B>ignored</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="6">keep</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">tabs present in <B>left</b> panel will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">tabs present in <B>right</b> panel will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">tabs present in <B>active</b> panel will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">tabs present in <B>inactive</b> panel will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">tabs present in <B>both</b> panels will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">none</td>
                  <td class="innerdescdesccell"><B>none</b> of the present tabs will be preserved</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="3">For legacy backward compatibility, you may also provide simply a single filename as single parameter and DC will load that .tab file "as is", so left and right tabs will be restored to left and right panel respectively.</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SaveTabs" alt="cm_SaveTabs" src="../../pixmaps/dctheme/32x32/actions/cm_savetabs.png">
              <div class="cmdname"><a name="cm_SaveTabs">cm_SaveTabs</a></div></td>
            <td class="cmdhintcell">Will save into a file the current tab names and their associated directories, for both left and right, to a .tab file to be eventually loaded back with previous described command.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">filename</td>
                  <td class="innerdescvaluecell"><I>filename.tab</i></td>
                  <td class="innerdescdesccell">the file used to save the tabs</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(not specified)</i></td>
                  <td class="innerdescdesccell">a file requested will appear to prompt the user to indicate to which .tab file to save the tabs to</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="2">savedirhistory</td>
                  <td class="innerdescvaluecell">1/true/on/yes</td>
                  <td class="innerdescdesccell">will save also the history of last directories for each tabs</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">0/false/off/no</td>
                  <td class="innerdescdesccell">history of last directories won't be saved</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="3">For legacy backward compatibility, you may also provide simply a single filename as single parameter and DC will save to that .tab file.</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetTabOptionNormal" alt="cm_SetTabOptionNormal" src="../../pixmaps/dctheme/32x32/actions/cm_settaboptionnormal.png">
              <div class="cmdname"><a name="cm_SetTabOptionNormal">cm_SetTabOptionNormal</a></div></td>
            <td class="cmdhintcell">Current tab status to normal.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetTabOptionPathLocked" alt="cm_SetTabOptionPathLocked" src="../../pixmaps/dctheme/32x32/actions/cm_settaboptionpathlocked.png">
              <div class="cmdname"><a name="cm_SetTabOptionPathLocked">cm_SetTabOptionPathLocked</a></div></td>
            <td class="cmdhintcell">Current tab to "locked", user can't change directory.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetTabOptionPathResets" alt="cm_SetTabOptionPathResets" src="../../pixmaps/dctheme/32x32/actions/cm_settaboptionpathresets.png">
              <div class="cmdname"><a name="cm_SetTabOptionPathResets">cm_SetTabOptionPathResets</a></div></td>
            <td class="cmdhintcell">Current tab to "locked with dir change allowed", user may change directory inside the panel, but if user changes tab and then come back to that one, it will come back to original directory where it was "locked with dir changed allowed".</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetTabOptionDirsInNewTab" alt="cm_SetTabOptionDirsInNewTab" src="../../pixmaps/dctheme/32x32/actions/cm_settaboptiondirsinnewtab.png">
              <div class="longcmdname"><a name="cm_SetTabOptionDirsInNewTab">cm_SetTabOptionDirsInNewTab</a></div></td>
            <td class="cmdhintcell">Current tab to "locked with dir change in new tab", user may change directory inside the panel, but as user enters in new directory, that one will be opened in a new tab.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetAllTabsOptionNormal" alt="cm_SetAllTabsOptionNormal" src="../../pixmaps/dctheme/32x32/actions/cm_setalltabsoptionnormal.png">
              <div class="cmdname"><a name="cm_SetAllTabsOptionNormal">cm_SetAllTabsOptionNormal</a></div></td>
            <td class="cmdhintcell">Set back to "normal" all the tabs.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">affects tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">affects tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">affects tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">affects tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">affects tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">affects only the tabs of the active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetAllTabsOptionPathLocked" alt="cm_SetAllTabsOptionPathLocked" src="../../pixmaps/dctheme/32x32/actions/cm_setalltabsoptionpathlocked.png">
              <div class="cmdname"><a name="cm_SetAllTabsOptionPathLocked">cm_SetAllTabsOptionPathLocked</a></div></td>
            <td class="cmdhintcell">All tabs to "locked", user can't change directory.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">affects tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">affects tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">affects tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">affects tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">affects tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">affects only the tabs of the active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetAllTabsOptionPathResets" alt="cm_SetAllTabsOptionPathResets" src="../../pixmaps/dctheme/32x32/actions/cm_setalltabsoptionpathresets.png">
              <div class="cmdname"><a name="cm_SetAllTabsOptionPathResets">cm_SetAllTabsOptionPathResets</a></div></td>
            <td class="cmdhintcell">All tabs to "locked with dir change allowed", user may change directory inside the panel, but if user changes tab and then come back to that one, it will come back to original directory where it was locked.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">affects tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">affects tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">affects tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">affects tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">affects tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">affects only the tabs of the active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SetAllTabsOptionDirsInNewTab" alt="cm_SetAllTabsOptionDirsInNewTab" src="../../pixmaps/dctheme/32x32/actions/cm_setalltabsoptiondirsinnewtab.png">
              <div class="cmdname"><a name="cm_SetAllTabsOptionDirsInNewTab">cm_SetAllTabsOptionDirsInNewTab</a></div></td>
            <td class="cmdhintcell">All tabs to "locked with dir change in new tab", user may change directory inside the panel, but as user enters in new directory, that one will be opened in a new tab.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">affects tabs in <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">affects tabs in <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">active</td>
                  <td class="innerdescdesccell">affects tabs in <B>active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">affects tabs in <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">both</td>
                  <td class="innerdescdesccell">affects tabs in <B>both panels</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">affects only the tabs of the active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_LoadFavoriteTabs" alt="cm_LoadFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_loadfavoritetabs.png">
              <div class="cmdname"><a name="cm_LoadFavoriteTabs">cm_LoadFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Prompt the user with a popup to request asking to select a previously saved setup of tabs.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">menutype</td>
                  <td class="innerdescvaluecell">popup</td>
                  <td class="innerdescdesccell">favorite tabs will be displayed in a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">treeview</td>
                  <td class="innerdescdesccell">favorite tabs will be displayed in a tree view menu</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be through a popup menu</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="3">position</td>
                  <td class="innerdescvaluecell">panel</td>
                  <td class="innerdescdesccell">menu will be shown from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">cursor</td>
                  <td class="innerdescdesccell">menu will be shown at the current mouse cursor position</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">the default is assumed to be from the top left corner of active panel</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing, default)</i></td>
                  <td class="innerdescdesccell">popup menu shown from top left corner of active panel</td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_SaveFavoriteTabs" alt="cm_SaveFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_savefavoritetabs.png">
              <div class="cmdname"><a name="cm_SaveFavoriteTabs">cm_SaveFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Will save in the "Favorite Tabs" the current opened tabs. Later on, on request, user may reload these saved setup using the "cm_LoadFavoriteTabs" command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ReloadFavoriteTabs" alt="cm_ReloadFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_reloadfavoritetabs.png">
              <div class="cmdname"><a name="cm_ReloadFavoriteTabs">cm_ReloadFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Reload again the last Favorite Tabs setup that was loaded. So if after browsing in every tab and additional tabs were added, etc. we want to restore "as-is" what has been set for the last Favorite Tabs that was loaded, that's the command to invoke.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ResaveFavoriteTabs" alt="cm_ResaveFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_resavefavoritetabs.png">
              <div class="cmdname"><a name="cm_ResaveFavoriteTabs">cm_ResaveFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Will resave the current tabs configuration over the last loaded Favorites Tabs entry. This is useful if you realized you're missing a tab in one of your configuration. After loading your Favorite Tabs you add the missing tab you wanted and then you invoke "cm_ResaveFavoriteTabs" internal command.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_PreviousFavoriteTabs" alt="cm_PreviousFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_previousfavoritetabs.png">
              <div class="cmdname"><a name="cm_PreviousFavoriteTabs">cm_PreviousFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Will load the Favorite Tabs setup that is just before in our list the last one we loaded.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_NextFavoriteTabs" alt="cm_NextFavoriteTabs" src="../../pixmaps/dctheme/32x32/actions/cm_nextfavoritetabs.png">
              <div class="cmdname"><a name="cm_NextFavoriteTabs">cm_NextFavoriteTabs</a></div></td>
            <td class="cmdhintcell">Will load the Favorite Tabs setup that is just after in our list the last one we loaded.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ActivateTabByIndex" alt="cm_ActivateTabByIndex" src="../../pixmaps/dctheme/32x32/actions/cm_activatetabbyindex.png">
              <div class="cmdname"><a name="cm_ActivateTabByIndex">cm_ActivateTabByIndex</a></div></td>
            <td class="cmdhintcell">Will activate the specified tab in the specified panel where it will also switch to.<br>If no panel is specified, tabs used will be from the active panel.<br>
              <br>
              <table class="innercmddesc">
                <tr class="rowinnerdesc">
                  <th class="innerdescheader">Parameter</th>
                  <th class="innerdescheader">Value</th>
                  <th class="innerdescheader">Description</th>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="5">index</td>
                  <td class="innerdescvaluecell">1</td>
                  <td class="innerdescdesccell">will activate <B>1</b>st tab</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">2</td>
                  <td class="innerdescdesccell">will activate <B>2</b>nd tab</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">3</td>
                  <td class="innerdescdesccell">will activate <B>3</b>rd tab</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><I>n</i></td>
                  <td class="innerdescdesccell">will active <I><B>n</b></i>th tab</td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">-1</td>
                  <td class="innerdescdesccell">will activate <B>last</b> tab</td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" rowspan="4">side</td>
                  <td class="innerdescvaluecell">left</td>
                  <td class="innerdescdesccell">will switch to and use tabs of <B>left panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">right</td>
                  <td class="innerdescdesccell">will switch to and use tabs of <B>right panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell">inactive</td>
                  <td class="innerdescdesccell">will switch to and use tabs of <B>inactive panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescvaluecell"><i>(absent)</i></td>
                  <td class="innerdescdesccell">activated tab will be on <B>current active panel</b></td>
                </tr>
                <tr>
                  <td class="innerdescparamcell" colspan="2"><I>(nothing)</i></td>
                  <td class="innerdescdesccell">Specifying at least the <B>index</b> is mandatory.</td>
                </tr>
              </table>
              <br>
              Example: "cm_ActivateTabByIndex side=right index=1" will activate the 1st tab in the rigth panel and will switch focus on it.
            </td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <h2><a name="catlogs">2.17. Logs</a></h2>
        <P>Actions related with DC logs file.</p>
        <table class="cmddesc">
          <tr class="rowcategorytitle"><th colspan="2">Category "Logs"</th></tr>
          <tr class="rowsubtitle"><th class="namecolumn">Name</th><th class="cmdcolumndesc">Description</th></tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ViewLogFile" alt="cm_ViewLogFile" src="../../pixmaps/dctheme/32x32/actions/cm_viewlogfile.png">
              <div class="cmdname"><a name="cm_ViewLogFile">cm_ViewLogFile</a></div></td>
            <td class="cmdhintcell">Open the current log file of operation.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ClearLogFile" alt="cm_ClearLogFile" src="../../pixmaps/dctheme/32x32/actions/cm_clearlogfile.png">
              <div class="cmdname"><a name="cm_ClearLogFile">cm_ClearLogFile</a></div></td>
            <td class="cmdhintcell">Will erase the current log file of operation.</td>
          </tr>
          <tr>
            <td class="cmdcell"><img class="IntCmdImage" title="cm_ClearLogWindow" alt="cm_ClearLogWindow" src="../../pixmaps/dctheme/32x32/actions/cm_clearlogwindow.png">
              <div class="cmdname"><a name="cm_ClearLogWindow">cm_ClearLogWindow</a></div></td>
            <td class="cmdhintcell">Will clear the log window content.</td>
          </tr>
        </table>
        <p class="navback"><a href="#topofpage">(back to top)</a></p>
      </div>

      <div>
        <BR>
        <p><small>Originally created by Rustem (dok_rust@bk.ru)</small></p>
        <BR>
      </div>
    </div>
    <div class="footer"><div class="nav"><a title="Index" href="index.html">Index</a> | <a title="Previous page" href="variables.html">Previous</a> | <a title="Next page" href="regexp.html">Next</a></div></div>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
    <BR>
  </body>
</html>