fm-tui 0.2.2

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
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
# Development

I write every step in this file.

## How to publish a new version

1. cargo clippy
2. cargo run --release
3. cargo docs --open
4. merge on github & publish a new version
5. cargo publish --dry-run
6. cargo publish

## DONE

- [x] filetype
  - [x] identifier filetype cf TODO
  - [x] colorier selon filetype cf TODO
- [x] scroll
- [x] load from anywhere
- [x] args : dirpath & show hidden (-a)
- [x] toggle hidden
- [x] spawn a shell, open with xdg-open
- [x] manipuler :

  [fuzzy finder in tuiki]https://github.com/lotabout/skim/blob/master/src/input.rs

  - [x] flagged
  - [x] rename
  - [x] supprimer
  - [x] insérer fichier / dossier
  - [x] chmod parsed from octal
  - [x] cut copy paste
  - [x] spawn shell in dir
  - [x] open file with xdg-open
  - [x] open file with custom command

- [x] usage
- [x] help menu
- [x] custom config file
- [x] custom keybindings
- [x] GOTO mode
- [x] batch chmod
- [x] mouse support
  - [x] left move index to this file
  - [x] right on dir enter
  - [x] right on file open
  - [x] up / down
- [x] links are followed
- [x] resize (i guess it's an event like in curse) seems to work already
- [x] dirsymbol for sockets and whatever
- [x] refactor FileInfo, use an enum
- [x] '\*' flag all
- [x] v reverse flags
- [x] allow '~' in GOTO mode
- [x] regex
  - [x] search
  - [x] mark multiple files
- [x] jump pour next flagged file
- [x] user config file
- [x] completion
  - workflow in [#10]https://github.com/qkzk/fm/issues/10
  - [x] in goto mode,
  - [x] exec mode,
  - [x] searchmode
- [x] confirmation for cut/paste, copy/paste, delete
- [x] bugfix: strange behavior after leaving a mode, wrong files are flagged - not in the right index or something
- [x] bugfix: can navigate outside file list
- [x] sorting : filename, size, date, type
- [x] refactor key(char) -> action
  - [x] enum for actions
  - [x] hmap for keybindings
  - [x] key -> action -> status.update(action)
  - [x] association with match and clear code
  - [x] dissociate keybinding from status update
- [x] fix: cursor is hidden before leaving the application
- [x] create a symlink to flagged files
- [x] preview a file with P
  - [x] preview navigation, integrate into file_window,
  - [x] preview content in head not stack
  - [x] syntax highlighting with [syntect]https://github.com/trishume/syntect
  - [x] binary preview
- [x] history of visited files: use a Vec as a stack [collections]https://doc.rust-lang.org/std/collections/index.html
- [x] shortcuts
- [x] multiple tabs: TAB to switch, DEL to drop, INS to create. Flagged files are shared between tabs.
- [x] rename file_window to content_window ?
- [x] improve the top row
- [x] confirmation display shows a list of edited files
- [x] integrate fzf or another fuzzy finder
- [x] custom a file opener
- [x] bulkrename @ ranger
- [x] scrollable help
- [x] user defined marks ; saved and read from a file.
- [x] refactor: main should return result, have everything raise errors
- [x] stable colors per extension with caching
- [x] BUGFIX creating an already existing dir / file crashes
- [x] display link destination
- [x] copy filename/filepath to clipboard with ctrl+c & ctrl+p
- [x] filters by ext / name / only dirs / all (aka no filter)
- [x] FIX: broken links aren't shown
- [x] COPY improvment
  - [x] async/threaded copy -- move & delete should be quick enough
  - [x] progress bar for copy
  - [x] move/copy progress displayed, nothing else
  - [x] display copy/move with style, refresh when done (reset file position)
- [x] FIX: opener crash, right on file crash when in nvim toggleterm
- [x] FIX: marks saved without newlines
- [x] drag & drop: exec and find dragon-drop
- [x] optional numbers in preview
- [x] logging with rotating log files.
- [x] git integration in first line of normal mode.
- [x] display space used (only the current folder, no recursive total)
- [x] display the free space
- [x] reduce release binary size a bit (12M -> 6M)
- [x] FIX: disk space is always showing the same disk
- [x] Colored first line
- [x] Resize immediatly
- [x] display should be "terminal manager" and it shouldn't handle anything else (git, available space etc.)
- [x] preview EXIF for image files
- [x] media info for video file / audio file
- [x] fix wrong position of cursor
- [x] improve tabs interface
  - [x] tab bar
  - [x] digit move to respective tab
  - [x] <TAB> creates a new tab if only one
  - [x] <BACKTAB> moves to previous tab
  - [x] hardcoded limit to 10 tabs
- [x] print selected path on quit
- [x] Alt+d call dragon-drop on selected file
- [x] cd on quit:

  fm prints its current directory when exiting

  1. Install a link to `fm` in your path or copy the binary

  2. Add this to .zshrc :

     ```bash
     function f() {
       dest=$(fm $@)
       if [[ ! -z $dest ]]
       then
         cd $dest
       fi
     }
     ```

- [x] Refactor preview using a common trait & macros
- [x] fix previewing non normal file hangs by preventing previewing...
- [x] send a notification when files are copied or moved
- [x] regex matcher (w) updates as you type
- [x] help displays current keybindings
- [x] dual pane. Only two tabs
- [x] allow multiple keybindings for same action
- [x] single pane if width is low
- [x] disks:
  - [x] simplify disk space read,
  - [x] hold a sys reference in status
  - [x] add shortcut to mount points
- [x] dissociate action from status / tab
- [x] opener fallback to xdg-open, capture stderr & stdout
- [x] toggle between simple & complete output

- [x] make every key configurable
  - [x] syntax able to parse any combination of key
  - [x] config parser -> `Keybindings { binds: HashMap<Key, ActionMap>}`
  - [x] help display
  - [x] link any event to actionmap
  - [x] display every event in help
- [x] FIX. displaying marks also shows a char from previous mode at end of line. Don't add "\n"...
- [x] FIX: open, visite, go back then display history -> crash.
- [x] FIX wrong pattern in mark file caused crash. Rewrite file if wrong pattern found.
- [x] Compressed files:
  - [x] Opening a supported compressed file decompress it.
  - [x] Preview a compressed file displays its content
- [x] preview images
  - [x] display an image as a pixeled thumbnail. IDK how to integrate ueberzug-rs / ueberzug into tuikit so it's an acceptable solution. The result is ugly.
  - [x] default preview exif
  - [x] char('T') for thumbnail
- [x] togglable dual panes... with default mode for low size
- [x] FIX: non ascii typed symbols crash the application.
      Don't use non ascii chars atm. It's hard to navigate in a string of non ascii chars and
      would require another crate.
- [x] non ascii char support. ie graphemes. Simply use a vec of chars and collect it when needed.
- [x] Fix: / (slash) in newfile, newdir crashes the app with strange errors. Use sanitize_filename
- [x] goto relative path. Look for directory in current path
- [x] keeps searching for same result with f.

  When a search is made (/),

  - if the user completes (TAB) and Enter, only this file can be found.
  - if the user doesn't complete but Enter immediatly, we can find any file containing this name.

    The user can search from next element with f.

- [x] publish 0.1.0 on [crates.io]https://crates.io/crates/fm-tui

  - [x] documentation
  - [x] move strings to separate file
  - [x] build script
  - [x] readme for user not developpers, move readme to dev.md
  - [x] fix dependencies (skim-qkzk instead of a git version, no wildcards, tuikit 0.4.5 for skim)
  - [x] publish on cargo

### Version 0.1.1

- [x] NeedConfirmation should take a parameter, avoiding an attribute in tab/status.

- [x] Mode Refactor.

  use child enum to simplify Modes

  - [x] group every mode requiring input (2 variants with subvariants: with or without completion)
  - [x] combine help & preview
  - [x] better first line for mode filter
  - [x] FIXED: help has wrong first line

### Version 0.1.2 : refactor preview

- [x] refactor Preview::new() refactored and simplified

### Version 0.1.3 : cd ..

- [x] parse .. in goto

### Version 0.1.4 : animation, refactoring

- [x] Gif animation in readme
- [x] syntactic sugar to create custom errors
- [x] filter improvment: better display, use &str when possible
- [x] sort refactor. Use a crate. Use 2 methods for ascending/descending. Separate
      char parsing from sort itself
- [x] Fix: in long dirs, we can scroll past the last displayed file
- [x] Fix: multiple mount points display in shortcuts.
- [x] trait for struct or thing with index

  - [x] trait<T> { collection: Vec<T>, index: usize}: next, prev etc.
  - [x] harmonize code for multiple instances
  - [x] macro to impl auto
  - [x] struct for flagged. Use a vector instead of hashset... :(
  - [x] regroup shortcut, history, jump, visited
  - [x] improve flagged complexity using binary search since the content is maintened sorted.

### Version 0.1.5

- [x] Fix scrolling in normal & preview modes
- [x] refactor search next
- [x] refactor display of selectable content

### Version 0.1.6

- [x] Prevent entering confirmed actions (copy, delete, move) if no file is flagged
- [x] Improve saved marks display by using a BTreeMap, allowing sorting by char.
- [x] Prevent entering jump marks mode if there's no mark to jump to

### Version 0.1.7

- [x] Trash respecting [trashspec]https://specifications.freedesktop.org/trash-spec/trashspec-latest.html

  - [x] trahinfo
  - [x] recreate parents if needed
  - [x] allow multiple files with same name to be trashed
  - [x] allow strange bytes in path
  - [x] compatibiliy with other programs like trash-cli

- [x] preview directory with tree view [termtree]https://crates.io/crates/termtree
- [x] refactoring: remove many PathBuf, String, to_owned, clone... and other heap allocation.
      I tried to use as many reference as I could.
- [x] userscache. Cache users & group at launch. Refresh them when refreshing views.
- [x] show . & .. in normal display

### Version 0.1.8

- [x] improve fuzzy finding by moving to the selected file
- [x] use latest version of skim-qkzk

### Version 0.1.9 : tree view

New view: Tree ! Toggle with 't', fold with 'z'. Navigate normally.

- [x] display a tree view with T
- [x] navigate in the tree
- [x] enter a directory from the tree
- [x] enter a file:
  - [x] enter parent
  - [x] select the file
- [x] scrolling
  - [x] last file can't be at top
- [x] enable most modes
  - [x] copy, cut, delete, trash, search
- [x] enable most actions
  - [x] END move to last leaf
  - [x] toggle flag and display flagged files
  - [x] copy filename, filepath
  - [x] toggle hidden
  - [x] drag n drop
  - [x] symlink
- [x] disabled:
  - [x] regex match: would only in current root path
  - [x] sort: would require recursive sort of every directory
- [x] replace preview::directory by mode::tree
- [x] filter
  - [x] force display full in tree mode
- [x] search simple: first result
- [x] fold
  - [x] fold a single directory
  - [x] display a triangle to display folded status
  - [x] unfold all, fold all

### Version 0.1.10 : keep track previous mode

- [x] return to previous mode when executing (ie. pressing Enter) or leaving a mode which mutates the content (like sort).
- [x] tree: sort.

### Version 0.1.11 :

- [x] window for mode displaying info (completion, marks, shortcut, jump)
- [x] clicks on right pane should select it first
- [x] doucle click left = right click : open file
- [x] wheel select pane
- [x] enable mouse in tree mode
  - [x] wheel -> next/prev sibling (somewhat okay)
  - [x] left/right
- [x] FIX: quit from preview is weird

### Version 0.1.12 :

- [x] FIX: filter aren't applied at all

### Version 0.1.13 :

- [x] luks encryption

  Open & mount, umount & close luks encrypted partitions.

  - [x] menu with Shift+e
  - [x] mount with m
  - [x] unmount with u

  ask for a sudo password and luks passphrase.

  _should_ work with other kind of encryption. Can't test it since I don't have another disk for that purpose...

### Version 0.1.14 :

- [x] improve tree navigation: up & down can jump to the node immediatly below in the view

### Version 0.1.15 :

- [x] Alt+c opens the config file
- [x] Add a shortcut to the config folder
- [x] use g to go to the mounted encrypted drive

### Version 0.1.16 : fix completion & filter in tree

- [x] FIX: can't parse uid gid if they only exists on a remote machine. See https://serverfault.com/questions/514118/mapping-uid-and-gid-of-local-user-to-the-mounted-nfs-share
      for a fix.
- [x] FIX: truncate file size in preview mode.
- [x] FIX: in tree mode search is backward
- [x] FIX: when searching from tree mode, it only completes with level 1 elements, not nested ones.
- [x] FIX: when exiting search in tree mode, second line isn't updated
- [x] FIX: when filtering in tree mode, only the level 1 matching elements are displayed
      Decided to keep directories when filtering in tree mode. Those are excluded when filtering in normal mode.
- [x] Tree: move 10 rows at a time

### Version 0.1.17 : git root, navigable marks, compression/decompression, command mode, lazygit

- [x] git root: cd to git root
- [x] tree: use the length of the screen to avoid parsing non displayed lines
- [x] navigate in marks: pick a mark and jump to it with enter
- [x] compress flagged files: pick a compression algorithm from a list.
- [x] decompress any archive we can create
- [x] command mode with ":" and a command. (ie `:ClearFlags`). Command are completed.
      some commands does nothing :(
- [x] lazygit integration: open a terminal with lazygit in current path. Obviously [lazygit]https://github.com/jesseduffield/lazygit should be installed.

### Version 0.1.18 : ???

- [x] preview completion in another color
- [x] use notify-send instead of a crate to lower binary size
- [x] use ueberzug instead of ugly thumbnail. Requires ueberzug to be installed.
- [x] use second pane for preview, update auto
  - [x] FIX: second pane preview has wrong size
- [x] improve directory preview by limiting depth
- [x] preview videos with a thumbnail (created with ffmpeg)
- [x] use media info for audio
- [x] remove some attributes from FileInfo, lowering its size.
- [x] FIX: sometimes pdf_extract prints to stdout. A fix is proposed in a PR, atm we'll use Gag to redirect stdout.
- [x] FIX: prevent invalid zips from crashing the app while previewing
- [x] FIX: preview of big highlighted source file is slow. Fix it by preventing those preview for files larger than 32kiB.
- [x] display the number of flagged files
- [x] improve preview first line
- [x] FIX: previewing a file without read permission crashes. Use Empty preview as default.
- [x] regroup display settings keybindings under alt+char
- [x] restrain second pane to 120+ chars wide terminals

### Version 0.1.19

- [x] skim: use preview from bat.
- [x] skim: preview with cat if bat isn't installed.
- [x] uniform themeset with skim: use monokai theme from [jonschlinkert]https://github.com/jonschlinkert/sublime-monokai-extended
- [x] event shell & open with terminal: use $TERM if possible, otherwise use the configured terminal application.
      we guess that the user prefers the terminal he's currently using above the configured one. It may change in the future.
- [x] refactor config creation
- [x] shorten long names in first line
- [x] use skim to search for specific line in file
- [x] manually setup a neovim server with shift+i. Get the server address with `echo serverstart()`.
- [x] wallpaper aka [nnn]https://github.com/jarun/nnn/blob/master/plugins/wallpaper
- [x] bulk: use a menu for rename, files creation, directories creation
- [x] moc queue management
  - [x] start mocp if not running
  - [x] add file to playlist
  - [x] next, previous song
- [x] integrate gitroot into shortcuts, remove as a keybinding
- [x] FIX: trash empty should be confirmed
- [x] diff of first 2 selected files in second panel
- [x] Launch NCDU, Lazygit, htop in current folder from a menu with 'S'.

  - [awesome tuis]https://github.com/rothgar/awesome-tuis

  - [x] Remove lazygit as a separate command
  - [x] Allow configuration from a config file

- [x] display full command before execution
- [x] changing folder (`set_pathcontent`) should set the cwd too... but it has no effect on commands
- [x] FIX: code, subl etc. won't show in exec completion
  - [x] when executable are filtered only files are kept, not symbolink links.
- [x] better error messages when a config file can't be loaded
- [x] messages to display what was made after executing an action

  - [x] improve logging configuration, config from a yaml file moved at build to `$HOME/.config/fm/logging_config.yaml`
  - [x] use 2 separate loggers, normal and for specific actions
  - [x] display logs
  - [ ] log specific actions

    - [x] bulk creation
    - [x] move, copy, delete
    - [x] new dir, new file
    - [x] symlinks creation
    - [x] trash add, trash delete, trash empty

- [x] colors in menus. Use a repeated gradient of lime colors in menus

### Version 0.1.20

- [x] display version in help
- [x] replace FmResult & FmError by anyhow
- [x] update the readme
- [x] replace nvim-send by internal implemention
- [x] mount an iso file by opening it
  - [x] recognize iso files
  - [x] mkdir /run/media/$USER/fm_iso
  - [x] sudo mount -o loop /path/filename.iso /run/media/$USER/fm_iso
- [x] preview the content of a iso file. Require the application isoinfo
- [x] fuzzy finder for keybindings with alt+h. The found keybinding will be run immediatly
- [x] rename: use current name instead of empty string
- [x] don't fail at first error in config.yaml. Allow parsing continuation.
- [x] common trait between cryptdevice and iso_file
- [x] Preview more filetypes - inspired by ranger
  - [x] preview SVG like [ranger]https://github.com/ranger/ranger/pull/2537/files does
  - [x] preview font with fontimage like [ranger]https://github.com/ranger/ranger/blob/46660c277c2ceb7c7c41ffce794d68f8f559030f/ranger/data/scope.sh#L207-L225
  - [x] preview doc with pandoc or odt2txt [ranger]https://github.com/ranger/ranger/blob/46660c277c2ceb7c7c41ffce794d68f8f559030f/ranger/data/scope.sh#L84-L93
  - [x] preview notebooks
- [x] mocp go to song: `mocp -Q %file` with alt+enter (lack of a better keybinding)
- [x] display openers in help

### Version 0.1.21

- [x] more shortcuts like `nnn` : `\` root, @: start
- [x] display settings (dual pane, full display) can be setup in config file.
- [x] common vim keys: require an update of the config file
  - [x] hjkl
  - [x] g G
  - [x] J K C+u C+d
  - [ ] ???
- [x] custom shell command on selection or flagged files, with or without confirmation
- [x] custom action in help
- [x] FIX: absent key in config file can crash the app
- [x] basic shell execution with !
  - [x] completion with which crate
  - [x] shell expansion %e %f etc
- [x] Refactor: use &[] instead of &Vec for arguments in command execution functions.
- [x] Explain every inputsimple mode in second window with static strings
- [x] FIX isodevice:
  - [x] remove useless mode
  - [x] use selected filepath instead of current directory
- [x] after mounting an iso device, move to its mountpoint
- [x] allow generic types for executable in `execute_...` commands
- [x] allow sudo commands from ! actions
  - [x] separate password holder from device action
  - [x] dispatch password
  - [x] execute a command with sudo privileges
- [x] FIX: modification time used `%d/%m/%y`. Changed to `%Y/%m/%d` to allow sorting and respect conventions
- [x] display sort kind in first row
- [x] EventExec refactor
  - [x] event: linked to an Action, same name
  - [x] exec: linked to an executable mode, same name
  - [x] every helper should be moved outside the struct
- [x] FIX: impossible to compile on MacOs since to `sysinfo::Disk` only implement `PartialEq` on linux.
      Can't test MacOs compilation since I don't own a mac...
- [x] FIX: incompatible config files between versions crashes the app.
- [x] FIX: Help string susbtitution aren't aligned properly
- [x] FIX: exiting preview doesn't refresh
- [x] Mode should know if a refresh is required after leaving them.

### Version 0.1.22

- [x] FIX: copying 0 bytes crash progress bar thread
- [x] FIX: refresh users (from tab) reset the selection in pathcontent.
- [x] FIX: when switching from single to dual pane, sort and position are lost
- [x] FIX: tree mode: move down from bottom crashes
- [x] FIX: inxi --full or inxi -F hangs. Use inxi -v 2 instead
- [x] allow shell expansion (~ -> /home/user) in goto mode
- [x] FIX: mode CHMOD reset the file index
- [x] better display of selected tab. Reverse the colors in the first line
- [x] display a message when trash is empty in trash explore mode (alt-o)
- [x] display last executed action (use a string as message)
- [x] FIX: vertical resize to a smaller window : files expand to the last line and message are overwritten
- [x] FIX: open a secondary window and messages are overwritten by files. Don't display messages...
- [x] FIX: clippy term_manager::windmain has too many arguments. Create a struct holding params for winmain
- [x] NeedConfirmation modes are responsible for their confirmation message
- [x] Use Alt+r to remote mount with sshfs.
  - request `username hostname remotepath` in one stroke,
  - execute `sshfs remote_user@hostname:remote_path current_path` which will mount the remote path in current path
- [x] FIX: search keybindings don't work. Need to trim a string.
- [x] FIX: archive depends on CWD and will crash if it's not set properly (ie. change tab, move, change tab, compress)
- [x] use memory and not disk to read last line of logs.
- [x] mocp clear playlist with ctrl+x
- [x] FIX: MOCP print error message on screen
- [x] cryptdevice requires lsblk & cryptdevice. Display a message if not installed
- [x] mocp must be installed to run relatives commands
- [x] nitrogen must be installed to set a wallpaper
- [x] mediainfo must be installed to preview a media file with it
- [x] ueberzug must be installed to preview images & font files with it
- [x] pandoc must be installed to preview doc (.doc, .odb)
- [x] jupyter must be installed to preview .ipynb notebooks.
- [x] isoinfo must be installed to preview .iso files
- [x] diff must be installed to preview a diff of 2 files
- [x] git muse be installed to display a git status string
- [x] inform user if file already exits when creating / renaming
- [x] factorise new file & new dir
- [x] metadata in tree mode. Toggle like display full with alt-e
- [x] FIX: pagedown may select a file outside window without scrolling to it
- [x] FIX: multiple scrolling bugs. It should be smooth in every context
- [x] FIX: after scrolling left click doesn't select the correct file
- [x] FIX: page down when few files in current path screw the display
- [x] remove doublons from shortcut (Ctrl+g) "goto mode"
- [x] FIX: scrolling isn't smooth anymore
- [x] InputSimple is responsible of its help lines
- [x] Preview epub. Requires pandoc.
- [x] FIX: symlink aren't displayed at all.
  - Improve broken symlink detection and display
  - Use `symlink_metadata` to avoid following symlink in tree mode, which may cause recursive filetree
  - Don't display symlink destination in tree mode since it clutters the display
  - Use a different configurable color for broken symlink
- [x] display selected file in first line
- [x] FIX: sort by size use wrong value and order badly 2B > 1M
- [x] refactor copy move. CopyOrMove is responsible for its setup.
- [x] refactor main. Split setup, exit and main loop.
- [x] refactor main. Use a struct responsible for setup, update, display and quit.
- [x] preview fonts, svg & video thumbnail
  - video thumbnail requires ffmpeg
  - fonts preview otf not supported
  - fonts preview requires fontimage
  - svg preview requires rsvg-convert
- [x] preview for special files :
  - [x] block device using lsblk
  - [x] socket using ss
  - [x] fifo & chardevice `lsof path`
- [x] size for char & block device [exa]https://github.com/ogham/exa/blob/fb05c421ae98e076989eb6e8b1bcf42c07c1d0fe/src/fs/file.rs#L331
- [x] use a struct for ColumnSize
- [x] FIX: goto mode from tree node with a selected file crashes the application
- [x] Not accessible file in tree mode crashes the application
- [x] Look for nvim listen address in `ss -l` output

### Version 0.1.23

- [x] preview tar archive
- [x] Jump mode : 'Space' Toggle flag, 'u' remove all flags, 'Enter' jump to the file
- [x] FIX: copy / move while existing file already exist use another name
- [x] Jump mode (display flagged files) should allow to delete / trash the flagged files
- [x] binary preview also display parsed ASCII strings
- [x] skim fuzzy find (ctrl-f) starts from current dir, not current selected file
- [x] open/file pick flagged files if there are, use selected file instead
- [x] regroup openers when opening multiple files.
- [x] refresh every 10 seconds. If no file in current dir has changed, nothing happens.
- [x] scroll in preview second screen
- [x] FIX sending `Event::User(())` events from refresher hangs skim. Use `Event(Key::AltPageUp)` which is now reserved.
- [x] allow file selection from args : -p filename selects the file from parent dir
- [x] more args : dual pane, preview second, display full, show hidden
- [x] history: when moving back select back the file we were at
- [x] use yellow block char to make flagged files more visibles.
- [x] move input 1 char right since we inserted a space
- [x] preview pdf with ueberzug. First page extracted with poppler -> cairo -> thumbnail -> ueberzug
- [x] FIX: when encrypted drive is already mounted don't let user mount it again
- [x] FIX: group & owner metadata alignement in tree mode
- [x] Tree mode Copy / Move / New should copy in selected directory not root of tree
- [x] Allow scrolling in preview pdf. Required a lot of change in Preview::ueberzug. Update thumbnail when required.
- [x] Flag the selected file if no file is flagged before entering delete mode or trashing a file.
- [x] FIX: fuzzy finder should do nothing if escape (quit?) is inputed
- [x] preview openoffice / office documents as images. Don't use pandoc for .doc .odb etc. previews
- [x] mtp mount with gio [nnn plugin]https://github.com/jarun/nnn/blob/master/plugins/mtpmount
  - [x] add MTP mount points to shortcuts
  - [x] list, mount, unmount mtp mount points
- [x] bulk, skim & removable are `None` until first use.
- [x] remove dependencies
- [x] complete refactor of many files.
- [x] Use `lazy_static` to load `Colors` configuration. Don't use a cache. Calculate every color for every extension
- [x] allow rgb colors in config file
- [x] FIX: can't read filename from / ... which crashes the app.
- [x] FIX: exploring root folder leads to wrong first line display.
- [x] allow seveval palettes for normal file colors
- [x] move every lazy_static configuration into config.
- [x] FIX: encrypted are never shown as mounted
- [x] Tree remade without recursion. Use an `HashMap<PathBuf, Node>`
  - [x] FIX: folders are max depth hangs the app
  - [x] FIX: rename renames the root path
  - [x] FIX: scrolling to bottom of tree is bugged
  - [x] FIX: scrolling starts 1 row to low
  - [x] FIX: filename in first line
  - [x] FIX: can't "open" a folder to redo the tree there
  - [x] FIX: move back from root should redo the parent tree
  - [x] FIX: move up from to go to last and vice versa
  - [x] FIX: enter a dir from normal mode shouldn't set mode tree
  - [x] Use a generic trait for movements
  - [x] FIX: first line position for tree
  - [x] FIX: searching for file very low don't scroll there
  - [x] FIX: search can only find the first match
  - [x] FIX: leaving preview doesn't reset tree
  - [x] Add a link to previous and next node in Node. Simplify navigation, increase ram usage :/
  - [x] test everything
  - [x] refactor
  - [x] document

### Version 0.1.24

#### Summary

- New Context Menu (right click, Alt+t) with basic file operations.
- Header (path, filename), Footer (other informations).
- Every window can be clicked. Header, Footer, Files, Menus. Selectable element from menu can be clicked.
- Integrated a lot of commands into `TuiApplications` or `CliApplications`.
- Session for display settings. Settings are saved after each modification.
- Better (?) keybindings. Alt+char open a menu whose name starts with this char.
- Refactoring `lib`. Moved file to a few folders, separated display from status.
- Many bug fixes

#### Changelog

- [x] refactor term manager. Separate content construction from drawing.
- [x] better messages when asking a password
- [x] FIX: trash is buggy. Can't delete definitely. Display is wrong when empty.
- [x] FIX: cursor is off by one in password
- [x] display mode / edit mode. Separate display (normal, tree, preview) from any other mode.
- [x] FIX: NVIM listen address won't update if neovim is restarted while fm is still running
- [x] FIX: next is wrong when folded.
      Needs a lot of change. Can't fix everything. ATM if a childnode is folded, unfolding also unfolds every child.
      IDK how to avoid that without rewriting everything.

      We need to do next on node until we reach a displayed node. It's not good.

- [x] separate display_modes completely. Normal -> lsl (?), Tree, Preview.
      PathContent is only used in Normal and should be associated with it.
      Reseting display should switch back to user setted display.
      Preview isn't like Normal & Tree since it doesn't display files at all.
  - [x] move every src to a related folder
- [x] refactor regex. Allow regex match in tree
- [x] FIX: can't jump to file from tree mode
- [x] refactor chmod into its own mod
- [x] refactor node creation (file or directory) in its own mod
- [ ] refactor password.
  - [x] only one enum
- [x] FIX: browsing a file where "modified" time is in future crashes the application.
      The error comes from refresher.rs and happens with poorly configured iso files.
- [x] Fix the error itself,
- [x] log a message when we encounter such a file, since there's not much we can do
- [x] prevent logging the same file multiple times. Massive change which requires a new lazystatic element
- [x] regroup commands in one place
- [x] FIX: clicking outside above files crashes
- [x] Clickable first line. Each first line element can be clicked, resulting in an action
- [x] don't allow rename of parent or self folder (. & ..)
- [x] FIX: print on quit requires to drop everything holding a terminal
- [x] Improve refresh actions. Subfolders in tree mode are now watched.
- [x] Trait LineDisplay for EditMode
- [x] Split tree & lsl drawing into smaller methods
- [x] cargo clippy -- -D clippy::pedantic -D clippy::nursery
      1100 -> 891 errors
- [x] FIX: resizing deselects the current file.
- [x] FIX: first line use selected tab even when not selected
- [x] refactor bulk. Made it a bit simpler
- [x] status refactoring. Moved every "menu" to a separate file.
- [x] FIX: leaving edit mode doesn't refresh completion
- [x] use rc instead of owned types in fileinfo
- [x] renamed path_content to Directory
- [x] renamed Display::Normal to Display::Directory
- [x] event_dispatch refactor
- [x] refactor file opening. Far from satisfying
- [x] FIX: wrong position of cursor in edit modes. Use a cursor offset for all modes.
- [ ] merge specific commands & cli_info
  - [x] merge
  - [x] remove specific commands
- [x] don't store as much info while parsing tree content. Be as lazy as possible.
- [x] Context menu (right click, alt+t) with most common actions
- [x] unify keybindings: alt+char should be reserved to menus starting with same letter
- [x] Clickable layout
  - [x] 1 row : address & file
  - [x] 50% or 100% : files
  - [x] 50% or 0% : menu
  - [x] last row : infos with fixed sizes
- [x] Session with display settings like [felix]https://github.com/kyoheiu/felix/blob/main/src/session.rs
  - [x] display settings aren't read from args or config file except for "display all".
  - [x] read (using serde_yaml) and write (using serde::Serialize) display settings from a [session file]~/.config/fm/session.yaml.
  - [x] make every session element private, ensure we read the correct setting for dual.
- [x] FIX: opening help or fuzzyfindhelp crashes if a listed action has no keybind (aka. the user overwritten a keybind without creating one for old action).
- [x] !command & cli_application print the command run and the output
- [x] Pre release
  - [x] Fix last missing items
  - [x] check installation (remove config, cargo build)
  - [x] readme
  - [x] describe what was done succintly
  - [x] test every mode

### Version 0.1.25

#### Summary

- Improve scrolling in tree mode.
- Bulk & normal rename: create intermediate folders when renaming.
- Bulk now asks a confirmation before execution.
- Scroll to selection when opening a menu. Selected file should alway be displayed in top window.
- Scroll completion & navigation menus.
- Configurable cli applications. See `~/fm/cli.yaml`
- Simplify tui config files. Remove `cwd` boolean parameter. Doesn't break old config files.
- Display the number of entries as the size of a directory instead of '-'. Might affect performance for very large directories.
- Enable logging with `-l` or `--log`. **Nothing is logged anywhere without this flag.**
- FIX: Tree mode. Unfolding a directory unfold its children
- BREAKING: Use specific argument read from config file to run a command at startup for most common terminal emulators.
  It allows the user to setup a specific terminal unknown to me and use it with fm.
  To make this work, it will require the user to update its config file by copying the last part: "terminal_emulator_flags:..."
- FIX: entering an inaccessible dir or writing in any way to a readonly dir shouldn't crash the app anymore...
- Display & Update separation. Use a thread for display, allowing 30 fps. It uses more CPU :(
  This feature is subject to change in future versions.
- Flagged display mode. Enter with <F> and show all your flagged files. You can rename, open, trash, delete, bulk rename, open, open with etc.
  Custom and simple search (filename containing input).
  Jump to the file with <return>
  ATM both "edit::jump" and "display::flagged" show the same content. The former may be removed soon.
- Configurable menu colors. Every color used on screen is now configurable like file colors.

#### Changelog

- [x] move navigate movement to menu file.
- [x] Tree scrolling
  - [x] attach full content to tree
  - [x] update content when tree necessary (???)
  - [x] attach window to content
  - [x] FIX: smoothscrolling. Last tree line isn't displayed
  - [x] jump to next sibling
  - [x] compare memory usage
  - [x] scrolling in tree mode should start 1 line earlier since we use 1 line at the bottom
  - [x] FIX: Tree mode: search forward doesn't scroll
- [x] make navigable content scrollable
- [x] leaving second pane as preview should set second pane to normal
- [x] FIX: in tree mode, refresh also refresh the window. Incorrect number of file displayed
- [x] FIX: while second window is opened, if the selection is below half screen, it's not shown anymore.
- [x] exec multiple flagged files
- [x] confirm before bulkaction
- [x] allow bulk rename and normal rename to move files + bulk refactoring
- [x] nohup, nix, setsid ???
  - [x] replace nohup by setsid
  - [x] check for setsid in path and use normal child if it's not.
- [x] cli info is configurable
- [x] refactor menus. split selectable content trait into 2 traits. Use closure to impl methods
- [x] refactor cli & tui applications using common traits. Simplify tui config file
- [x] rename Action::Command to Action::Action since it's what it does
- [x] use number of files for dir size
- [x] rename Goto Mode to cd to allow `:` then `cd`
- [x] optionable logging
- [x] FIX: Filter isn't shown and does nothing in tree mode
- [x] FIX: unfold shouldn't unfold every child
- [x] don't use -e for every terminal. See [rifle.conf]https://github.com/ranger/ranger/blob/136416c7e2ecc27315fe2354ecadfe09202df7dd/ranger/config/rifle.conf#L244
- [x] FIX: preview a symlink crashes the app
- [x] FIX: opening an inaccessible dir crashes the app
  - [x] check std set env crashes before
  - [x] check all writes
    - [x] Rename,
    - [x] Copy, Move,
    - [x] Delete,
    - [x] Trash, Untrash,
    - [x] Compress,
    - [x] Decompress
- [x] separate display from update
      May be removed in future version.
      It uses a lot of cpu to just display and doesn't do much else
  - [x] make status sync: replace Rc by Arc
  - [x] update status every event
  - [x] display 30 fps
  - [x] move display into a thread
  - [x] test everything
- [x] flagged as content

  - [x] remove jump completely ??? not yet
  - [x] fuzzy find flags all
  - [x] display metadata of selected file
  - [x] simplest possible holding struct
  - [x] another display mode, displayable
  - [x] display flagged like in dir
  - [x] clickable header & Footer
  - [x] enter: from skim files or lines, from jump, from folder, from tree (flatten)
  - [x] flag everything in tree mode
  - [x] FIX: window is off for big content
  - [x] action on all files
    - [x] disable filter. Filtering is easy, navigating in filtered files isn't. Require to keep a "filtered" files somewhere and use it everywhere.
    - [x] preview & dual pane preview
    - [x] open single or all flagged
    - [x] renaming
    - [x] disable copy, move
    - [x] delete, trash
    - [x] jump with enter
    - [x] ctrl+o open all fuzzy files
    - [x] unflag all (v)
    - [x] <spc> remove file from flagged
    - [x] bulk update flagged with new names
    - [x] custom search with completion
    - [x] disable regex match in flagged. Should it only keep the flagged files ? Would require to save the files before entering...
    - [x] chmod
    - [x] disable new nodes (file, dir)
    - [x] disable all cd since we can't see the directory
    - [x] copy filename & filepath
  - [x] FIX: jump does nothing

- [x] trashmode should display which shortcut erase all trash.
- [x] add left tab current dir to right shortcut and vice versa
- [x] refactor status.set_second_pane_preview
- [x] FIX: leave sort does nothing
- [x] FIX: incomplete regex crashes
- [x] key which enter a mode should allow to leave it also.
- [x] second line for every mod, use default color
- [x] in marks new, backspace (since del is annoying...) should erase a mark.
- [x] improve marks help.
- [x] sort marks at read & update
- [x] FIX: display flagged symbol in tree mode. Better alignment
- [x] FIX: xdg-open pollutes the top border if opening a file fails
- [x] update skim to 0.9.14
- [x] FIX: in tree, moving while in "second pane as preview" unfolds.
      "status.set_edit_mode..." does too much.
- [x] FIX: running a command line application with "-d" doesn't work on alacritty
- [x] display flagged files 1 char right like default ranger
- [x] toggle flag move down in tree mode
- [x] FIX: move back is buggy.
- [x] Move back & leave_mode history should use the same status method
- [x] toggling tree selects the current file if possible
- [x] FIX: next_sibling doesn't wrap
- [x] configurable menu colors
- [x] allow more videos format to be previewed
- [x] FIX ueberzug in dual tab.
      Use different name per ueberzug tab, allowing multiple previews
- [ ] pre release
  - [x] Fix last missing items
  - [x] check installation (remove config, cargo build)
  - [x] readme
  - [x] describe what was done succintly
  - [ ] test every mode

### Version 0.1.26

#### Summary

- BREAKING: removed jump mode completeley.
  You can see your flagged files in the display::flagged mode, default bind: <F>.
- BREAKING: removed all MOCP controls from fm. What was it doing there anyway ?.
  Those change won't break your config file. While building the application, line with reference to removed binds will be erased.
- search with regex. You can search (Char('/')) a regex pattern. Search next (Char('f')) will use that regex.
- left or right aligned and clickable elements in header
- shift+up, shift+down while typing something cycle trough previous entries.
  Those are filtered: while typing a path, suggestions are limited to previous pathes, not previous commands.
- shift+left erases the whole input line
- wrap tuikit::event into custom event. Use an mpsc to request refresh and bulk execution.
  While editing filenames in bulk, the application isn't bloked anymore.
- improve neovim filepicking. While ran from a neovim terminal emulator, use the flag `--neovim`. Every _text_ file will be opened directly in current neovim session.
  Watchout, if you try to open text & non text files at the same time, it will run a new terminal with your text editor instead. Don't mix file kinds.
- Dynamic filtering while typing a filter
- Search as you type: do / then type a pattern and you will jump to the match.
- replace `tar tvf` by `bsdtar -v --list --file`. Which can preview .deb and .rpm files
- preview torrent files with `transmission-show`
- preview mark, shortcut & history content in second pane while navigating
- zoxide integration. While typing a path in "Goto mode" (default keybind "alt+g"), the first proposition will come from your zoxide answers.

#### Changelog

- [x] focusable windows

  - [x] simple focus enum, mostly following what's being done
  - [x] allow to change focus, only color the focused window border.
  - [x] Change focus with ctrl+hjkl
  - [x] Change focus with ctrl+arrow. Removed MOCP completely
  - [x] single pane borders
  - [x] give focus with click
  - [x] give focus with wheel
  - [x] remove flagged mode completely
  - [x] merge Action::Delete & Action::DeleteFile
  - [x] test open file from menu (context ? header ?)
  - [x] in Display::Flagged, open a single file with o, all files with ctrl+o
  - [x] dispatch event according to focus
  - [x] FIX: changing focus left or right only affects the border. Moving does nothing
  - [x] test everything

- [x] setting second pane as preview should enable dual pane at the same time
- [x] FIX: leaving mount mode with enter when device is mounted should move to it
- [x] FIX: clicking footer row execute directory actions, even in flagged display mode
- [x] display all specific binds for every mode.

- [x] search, display nb of matches, completion + flag on the fly

  - [x] use regex in search
  - [x] save the regex ???
  - [x] simplify navigation to skim output
  - [x] display number of matches while searching.
  - [x] search refactoring

- [x] input history.

  - [x] require logging to save on disk.
  - [x] record every typed into as human as possible file
  - [x] navigate history with shift+up, shift+down, ctrl+left should erase input

- [x] FIX: skim in tree doesn't select the match
- [x] remove MOCP control from fm
- [x] allow header & footer to be right aligned
- [x] merge both bulkthing modes. If more files, just create them. Like [oil]https://github.com/stevearc/oil.nvim
- [x] allow different ports in remote
- [x] sort trash by reversed deletion date
- [x] gradient over listing, using an iter instead of a vector
- [x] FIX win second use 1 more line
- [x] FIX: entering sort doesn't set focus
- [x] update config from build file by removing references to removed binds.
- [x] move to encrypted drive when mounting is successful
- [x] wrap event into an MPSC to allow internal events
  - [x] wrap
  - [x] send/receive custom event
  - [x] bulk: do not freeze the application while waiting for the thread to complete
  - [x] refresher
  - [x] copy move
- [x] improve filepicking from neovim
  - [x] flag to force neovim filepicking for text files
  - [x] open single files
  - [x] open temp file from bulk
  - [x] open multiple files
- [x] FIX: too many open files. pdf opened by Poppler...new_from_file aren't closed properly.
      Open manually and and use Poppler...new_from_data.
- [x] FIX: in dual pane mode, right aligned elements aren't displayed.
- [x] FIX: Right pane search & filter click don't match on correct position.
- [x] dynamic filtering while typing
- [x] FIX: leaving (with escape) should reset the filter, not leave
- [x] setting a filter reset the "found" searched path & index
- [x] search as you type
- [x] replace `tar tvf` by `bsdtar -v --list --file`. Which can preview .deb and .rpm files
- [x] torrent with `transmission-show`
- [x] preview mark, shortcut & history content in second pane while navigating
- [x] zoxide support for "alt+g" aka goto mode.
- [x] FIX: `q` while second window should exit the menu

### Version 0.1.27

#### Summary

- Go to a location with a single key in shortcut mode.
  Shortcuts are displayed with a single key like "b /dev". Pressing `b` will move to "/dev".
- Execute an action with a single keypress in context mode. Same as above !
- Use pdftoppm & pdfinfo to preview pdf files. Faster, less code, more stable.
  Doesn't crash anymore when a .pdf file is encrypted but can be read by every one.
- Newfile and newdirs are flagged and selected after creation
- Include default binds from midnight commander / ranger for the function files (f1-f10)
- Display "more info" about a file in context menu (owner, group, size, created/modified/accessed time, opener, previewer)
- List, mount, eject usb keys. Share the same menu as "mtp" devices. Default bind: Alt+Shift+R
- FIX: sorting didn't reset the focus to main window
- Multiple copies. Copy files while another copy is happening. The display won't flicker anymore while copying.
  Interally, it uses a queue to store the source & destination.
- Copy flagged files to primary clipboard with F11. Flag existing files from clipboard with F12
- hex colors can be used in config file.
- click on right pane while previewing a tree moves there.
- Display keybindings sorted by alphabetical order with `$ fm --keybinds`
- Google drive. Navigate, download, upload file to google drive once configured. See the readme for more details.

#### Changelog

- [x] display a keybind in shortcut & context mode
- [x] add a shortcut to the trash folder
- [x] less copies while creating shortcuts
- [x] FIX: replace `DeleteFile` by `Delete` in config file
- [ ] Custom colors for palette.
  - [x] it works
  - [x] simplify palette : start, stop and merge already defined ones ("red-green", "green-red" and all red green blue pairs)
  - [x] remove custom
  - [x] common description of what is an acceptable color in config file
  - [x] don't break compatibiliy but require an update
- [x] use pdftoppm & pdfinfo to preview pdfs.
      poppler can crash if the pdf is encrypted for writing but not for reading.

  - [x] use png for svg & fonts, jpg otherwise. Seems to be faster
  - [x] readme : pdftoppm, pdfinfo

- [x] FIX: flagging a file moves down but doesn't update the preview
- [x] FIX: Logline should only be displayed on left tab
- [x] after newfile, newdir, select it
- [x] add F+x binds from ranger
- [x] display more info about file in context (atime/ctime/mtime, previewed as ..., opened with ...)
- [x] mount/eject usb key - merged with mtp as much as possible
- [x] Regex matcher move to the first match, making it an incremental search
- [x] FIX: g / G doesn't work when order isn't default
- [x] FIX: sorting doesn't refresh the display
- [x] multiple copies
  - [x] creates a pool,
  - [x] send fm events
  - [x] dispatch them
  - [x] FIX: copying large files flickers the display
- [x] flagging the last file shouldn't progress to top of screen. Stay there, it's less annoying
- [x] FIX: Moving big file uses progress bar
- [x] error message when copy / move fails (source or dest changed)
- [x] copy flagged files to clipboard
- [x] flag files from clipboard
- [x] while in "second pane for preview" and previewing a tree, a click on a previewed tree moves the left pane there.
- [x] allow hex colors like #16a085 in config
- [x] moving left (up in filetree) should select provenance
- [x] dump keybinds & refactor help message
- [x] FIX: leaving preview in current tab doesn't select the last file
- [ ] Apache OpenDAL: [Official Documentation]https://opendal.apache.org/ - [crates.io]https://crates.io/crates/opendal
  - [x] refresh token creation
  - [x] write tokens in config folder for user
  - [x] keybindings in menu
  - [x] readme for users
  - [x] token handling
  - [x] simplest configuration
  - [x] google drive listing
  - [x] listing
  - [x] directory navigation
  - [x] file downloading :
    - [x] directory mode
    - [x] tree mode
  - [x] directory creation
  - [x] file uploading
  - [x] file deletion
  - [x] move all tokio::main to opendal
  - [x] log errors
  - [x] delete confirmation
  - [x] FIX: window is offset after deletion when deleted wasn't on first screen
  - [x] merge into a single binary
  - [x] FIX: while navigating, contentwindow len isn't updated
  - [x] WONTDO: metadata for cloud files. Way too long for big folder
  - [ ] BUG: opendal crashes if multiple files have the same name. See [issue]https://github.com/apache/opendal/issues/5099
- [ ] non blocking previews: use the mpsc to do the previews async (once again)
- [ ] stop & undo actions (bulkrename, copy, move, delete ???)
- [ ] FIX: alt + g, type, complete, back crash. Can't reproduce
- [x] FIX: too much thing on menu and last line

### Version 0.1.28

#### Summary

- Refactored colors, configuration. Replaced lazystatic by oncelock, reducing the dependencies.
- Removed a few dependencies.
- Fixed the documentation.
- Changed the way to install the application: use `cargo install fm-tui --locked` to prevent weird display bugs
- Loaded monokai lazyly, no need to store it forever in the binary if you never preview a source file
- Improved the source code previewing by allowing more details from syntect
- Fixed a bug where ~ wasn't expanded from args

#### Changelog

- [x] use fontstyle from syntect while previewing highlighted files
- [x] add --locked in `cargo install fm-tui --locked` to prevent some weird display bug
- [x] lazy loading of monokai theme
- [x] Fix a bug where ~ wasn't expanded in starting path and lazy loading of path wasn't read
- [x] Fix: ctrl+s returns a string filename:line:col which shouldn't be treated as a path
- [x] Fix documentation
- [x] Dependencies hell
  - [x] random. Only used to create random temporary filename. Replaced with 0 deps custom random generator.
  - [x] sanitize_filename. Only used when creating new files/directory. Well... I'll let the user do what he wants.
  - [x] shellexpand. Used everywhere for its tilde("~/Downloads") expansion but only use one function.
  - [x] lazystatic replaced by OnceLock
    - [x] logs
    - [x] monokai
    - [x] start folder
    - [x] menu colors
    - [x] start color, stop color
    - [x] file colors
    - [x] colorer
    - [x] move config setter to configuration.rs
    - [x] convert oncelock errors to anyhow's
  - [x] update deps to latest versions
    - [x] replace serde_yaml (deprecated) by serde_yml (actively maintened)
    - [x] use serde_yml to write google cloud config files. Share the same struct between files.
- [x] remove is_selected from fileinfo
- [x] Refactor all the Color/ColorG configuration
  - [x] MenuColors should hold attr since it's what's used everywhere
  - [x] fileinfo attr should be moved into fileinfo itself and return an attr
  - [x] simplify palette setup
  - [x] normal file colorer use lookup tables instead of palettes
  - [x] gradient.rs to make gradients, color.rs for parsing, writing, converting colors, configuration.rs to setup, static_once.rs for static thing
- [x] Compress should use the selected file if nothing is flagged
- [x] Fix: opening tree mode with selection on "." doesn't display "." as selected
- [x] refactor draw tree line
- [x] Fix: Crash when quiting. "sending on a closed channel". From quit -> refresher::quit
- [ ] Badges to latest version

### Version 0.1.29

#### Summary

- Fixed the documentation and updated the badges
- Flagged files are now displayed in a menu instead of the main window. You can still jump to them, removed them individually
- Fix jump mode (Alt+g) to allow paths to file. It will jump there and select the file.
- Preview valid symlink as their target. Broken symlink aren't previewed at all
- Fixed a few bugs. See details below.
- **Breaking changes**: color configuration.

  Only one mapping is used in config.yml. All colors are now regrouped there.
  Some names have changed :

  - "start" -> "normal_start"
  - "stop" -> "normal_stop"

  Your old config will still be loaded, but their colors won't be recognized unless you update the config.
  See the [source]config_file/fm/config.yml for more infos.

#### Changelog

- [x] refactor path reducer
- [x] Fix: when ".." is selected, header path is wrong. This is a big one...
- [x] Fix: directory mode when path is root, header is wrong, should just be "/""run" not "/""/run"
- [x] Fix attempt of docs. Don't panic in build if no config file is found. That was dumb
- [x] Fix: Tree mode, when path is root, header is wrong
- [x] Alt+g should accept pathes to file from input and go there
- [x] Preview refactor
  - [x] mod for ueberzug
  - [x] builder for ueberzug
  - [x] creator for thumbnail
  - [x] video slideshow
  - [x] Fix: ueberzug creation may crash the app (poison lock etc.) `Error: Error locking status: poisoned lock: another task failed inside`
  - [x] preview builder
  - [x] preview symlink to folder as the target
  - [x] preview symlink to files as the target. Must change PreviewBuilder completely
  - [x] merge all previews which hold text into a single variant
  - [x] simplify the mess as much as possible
- [x] flagged should be a menu
  - [x] use a menu to display flagged files
  - [x] display binds
- [x] refactor context menu "more info" into a struct with explicit methods
- [x] simplify history a little
- [x] simplify color configuration
  - [x] only one "colors" map in yaml file
  - [x] migration of config file : detailed in release

### Version 0.1.30

#### Summary

- shell & exec menu allow %t as terminal expansion. It allows you to open a file in a new terminal.
  `! %t nvim %s` will open the selected file with neovim in a new terminal.
- cd command (Alt+g) includes children of a path (detected as soon as you type a /)
- double clic on a menu item to execute it. Same as a clic then press enter.
- Fixed a bug where search completion would be made before the char is inserted, displaying wrong results
- Fixed a bug where preview were built for second pane even if it wasn't visible, wasting ressources
- Move as you type. In Cd menu (Alt+g), the display and preview is updated as you type.
  Pressing Esc (leave mode) go back to where you started from.
  You need to validate with enter.
- Sync left tab from right path shift+left. shift+right go the other way.
- A lot of refactoring:
  - flagged files,
  - input history,
  - application start, main loop & quit,
  - display
  - menus
- Fixed a bug where leaving a menu while a tree is displayed resets the index.

#### Changelog

- [x] Refactor flagged files
  - [x] Fix: can't clic flagged. Display is offset by something
  - [x] Fix: can't flag files when flagged menu is opened
  - [x] Fix: removing flagged files can crash.
  - [x] removed window from flagged
  - [x] Fix: Too much flags + scroll = crash
- [x] menus refactor
  - [x] Fix: closing left menu shouldn't clear right
  - [x] refactor menu.remote_mount into a separate module with parser & executer
- [x] DrawMenu used to display most of navigable elements.
- [x] refactor display.
  - [x] renamed most methods
  - [x] separated by mode
  - [x] common interface using `draw` method from tuikit
- [x] cd: after typing '/' extend with children
- [x] exec: allow %t in first param to be expanded to $TERM + flags

  - [x] %t + TAB -> /usr/bin/alacritty -e
  - [x] Fix after ! command, empty preview is displayed
  - [x] documentation, help

- [x] Fix: :Preview does nothing. Had to create a new kind of event
- [ ] revisit cloud configuration make it permanent
  - [ ] something is wrong, IDK what
- [x] double clic on menu items
- [x] FIX: search completion is made before the char is inserted in input string. Should be done afterward.
- [x] FIX: previewer is called even when preview can't be seen
- [x] FIX: Refresher is sending its quit message trought a closed channel
- [x] tree: separate builder for nodes and for treelines
- [x] non bloking previews, "simple" way.
  - [x] struct with a thread and 2 mpsc: one to ask for previews, one to send them back. The first is also used to break the loop.
  - [x] refresher send more events, also asking for previews to be checked
  - [x] check if a preview should be asked in app every event received
  - [x] don't display obsoletes previews
  - [ ] tests, perf, memory usage...
- [x] refactor app:
  - [x] simplify update loop
  - [x] simplify build
  - [x] simplify early exit
- [x] don't pass users to preview, build them if needed in tree
- [x] Move as you type in Alt+g, esc go back to previous
  - [x] hold origin in tab
  - [x] cd there as you type
  - [x] reset when pressing Esc
  - [x] Fix: preview doesn't update every time
    - [x] cd should be called from status or parent not menu
    - [x] request a preview
    - [x] preview is updated when input is a directory
    - [x] preview is updated when input is an existing file
  - [x] NOT A BUG, a kernel feature:
        multiple //// are allowed in pathes, kernel collapses them into a single separator.
        [See StackOverflow]https://stackoverflow.com/questions/16840916/what-is-path-how-is-it-different-from
  - [x] can't use history. Every cd is recorded, so when need to remember where we started...
- [x] refactor input history calls
- [x] sync left to right or right left with shift+arrow
- [x] removed unused struct
- [ ] search refactor
  - [x] common trait to impl iter from index to index in tree & directory.
  - [x] macro like impl_selectable
  - [x] move search execution to status
  - [x] refactor status.search & status.search_again
  - [x] use reference to files, avoiding a clone
  - [x] FIX: tree search doesn't find first match
  - [x] FIX: search doesn't update if tab
- [x] Refactor completion
- [x] leavemode small refactor
- [x] Use custom command for ncdu & lazygit shouldn't be actions by themselves
- [x] removed backtab action
- [x] FIX: leaving a menu while in tree resets the index.
- [x] Massive renaming and moving.
- [x] Simplify display mode comparison with a few methods. Should make the code more readable
- [ ] directory preview should just be a "directory" ?

### Version 0.1.31

#### Summary

- tuikit is replaced by crossterm & ratatui.
- skim is replaced by nucleo.

  tuikit and other crates created by the same author aren't maintened anymore.
  fm relied a lot on the work of a single author: terminal events, rendering,
  fuzzy finding, parsing of ANSI output etc. were all written by the same developper
  and it created a lot of technology debt.

  Maintaing this code required to fork some repositories which was a lot of work and could create more debt if someone took the project further.

  It's been a pleasure to work with those crates but I believe it's the right move.

  By switching to maintened crates we ensure to be able to evolve the project
  more safely.

  Most of the code is adapted "as is". I did my best to keep everything as it was
  and don't break anything.

  The fuzzy finder looks really different but all its rendering is now much simpler.

- double click is replaced by middleclick. Less intuitive but much more convenient in crossterm.
- redirection in shell commands.

  You can enter a shell command by typing `!` then `ps -ef | grep %s` and see the if the selection is beeing executed.
  It allows you to execute complex shell commands and see their output.

  Expansion haven't change (%s selection, %p current path, %n filename, %e extension, %f flagegd files, %t terminal emulator)
  Strings like `echo "Hello World"` or `echo 'Hello World'` should be processed correctly.
  Tokens like `*` and shorcuts like `~` are recognized and dealt by sh.
  Most environment variables aren't known since it's a new shell which run the command. You can still do `!` `export a=2; echo $a` and see... `2` on the output.
  It also works for sudo commands : `sudo ls %s | grep pattern` will ask a password and execute `sudo ls your/selected/path | grep pattern`.

  There's a lot of steps and it's surelly buggy, I'll have to simplify it as much as possible in a future version.
  The interface won't change, the internal will surelly do.
  Since this parser is used everywhere, it means you can define custom commands with redirections. I can't think of an usage but may be you will !

- Bugfixes:
  - FIX: trash: bottom line is wrong "Enter" doesn't select but restore - refresh & reselect
  - FIX: input_simple: when height is low, static elements are out of the window
  - FIX: crash when deleting a file in tree mode
  - FIX: diplay directory last line shouldn't be printed - erase the last line before printing log.
  - FIX: Alt+c (open config file) should be betterly logged
  - FIX: shortcut. dedup_slow keeps crashing. Sort unstable + dedup will do the trick.
  - FIX: second pane ueberzub 1 char too left

#### Changelog

- [x] replace tuikit by ratatui + crossterm

  - [x] [step by step migration](https://chatgpt.com/c/670cf276-9540-800f-94c8-eaa4ae1e05ea)
  - [x] NOT DISPLAY
    - [x] app, status, events, menus, colors, style, key...
    - [x] copy move
    - [x] dispatch mouse wheel events
    - [x] dispatch menu key events
    - [x] preview
  - [x] DISPLAY
    - [x] create windows
    - [x] draw trait of canvas ??? won't work, borrow checker...
    - [x] draw trait working
    - [x] display splits etc.
    - [x] term must be mut to display something, can't mutate in arc without mutex: only one term
    - [x] drawmenu should display
    - [x] shortcut drawmenu
    - [x] windows are offset by one: do the splits by hand
    - [x] preview::syntaxedstring::print method
    - [x] preview::binary::printhex & printascii
    - [x] preview::colored string
    - [x] tree lines aren't placed properly
    - [x] FIX: cursor flickering

- [x] skim replaced by... nucleo, with my own picker

  - [nucleo]https://github.com/helix-editor/nucleo as a skim replacement
  - [nucleo-picker]https://github.com/autobib/nucleo-picker uses crossterm

  - [x] struct nucleo-picker
  - [x] attach to status
  - [x] send key events
  - [x] parse key events
  - [x] execute key events
  - [x] send refresh events
  - [x] display for T
  - [x] ff file
  - [x] ff line
    - [x] use tokio to read from a bufreader. IT should work. [SO]https://stackoverflow.com/questions/34611742/how-do-i-read-the-output-of-a-child-process-without-blocking-in-rust
  - [x] ff files (help) : read the file send it to nucleo as a whole
  - [x] previewing
  - [x] click on line
  - [x] don't export all content, only what will be displayed

    - [x] resize
    - [x] FIX: out of bounds when char are typed
    - [x] FIX: navigation is screwed

  - [x] ensure rg & grep can be run before executing fuzzy find of line
  - [x] FIX nucleo out of bounds
  - [x] refactor fuzzy navigation
  - [x] navigation. Moving below the last element should scroll, not wrap around.
  - [x] colors for nucleo matching. Inspired by helix
  - [x] testing: file, line, help

- [x] FIX: save a name for previews, use it to display

#### Once Nucleo is done

- [x] FIX: line overflow their rect
- [x] FIX: menus can overflows their rect
- [x] FIX: menu with shortcut. Shortcut letter is wrong when height is too low
- [x] BUG ???: shortcut.rs : dedup out of bounds L170
- [x] Focus follow mouse
- [x] doubleclick replaced by middleclick
- [x] rectify all u16 <-> usize conversions
- [x] FIX border colors is applied to text styled with empty style.
- [x] FIX: when a resize occur, menu selection can be out of window
- [x] FIX shell commands with strings aren't parsed correctly...
  - [x] lexer & parser of shell commands with sudo, redirection work
  - [x] output of shell commands (normal & sudo) is displayed properly
  - [x] FIX: password transition isn't done properly:
        sudo ls -> ask password -> execute ok
        mount encrypted -> ask sudo -> ??? failure. It should ask for a passkey.
  - [x] run custom command
  - [x] cli info
- [x] FIX: custom keybinds aren't displayed properly in help
- [x] FIX: terminal reset after panic. Enables a panic hook which remove the need to enable backtraces.
- [x] FIX preview in second pane preview attachment
  - [x] refactor status.get_correct_fileinfo_for_preview
  - [x] preview isn't updated for navigation (history, shortcut, marks)
- [ ] prepare for new version
  - [x] test every mode
    - [x] FIX: trash: bottom line is wrong "Enter" doesn't select but restore - refresh & reselect
    - [x] FIX: input_simple: when height is low, static elements are out of the window
    - [x] FIX: crash when deleting a file in tree mode
    - [x] FIX: diplay directory last line shouldn't be printed - erase the last line before printing log.
    - [x] FIX: Alt+c (open config file) should be betterly logged
    - [x] FIX: shortcut. dedup_slow keeps crashing. Sort unstable + dedup will do the trick.
    - [x] FIX: second pane ueberzub 1 char too left
  - [x] doc
  - [ ] ???


### Version 0.1.32

#### Summary

- print on quit doesn't work anymore in bash / zsh and surelly in fish also (not tested.)

  I tried to make environement variables to work but couldn't.
  The alternative uses a temporary file :

  Put this in your bashrc / zshrc and use it as you did already.

  ```sh
  function f() {
    fm $@
    dest=$(cat /tmp/fm_output.txt)
    if [[ -n $dest ]]; then
      cd "$dest"
    fi
  }
  ```

- case insentive search.

  - A lowercase pattern matches regardless of case
  - An uppercase pattern will match regarding case.

  search for "car", it will find "Cargo", "cargo", "Car".

  search for "Car", it will find "Cargo", "Car" but won't match "cargo"

- new expansion for shell commands: %c expands into the clipboard content.
  Haven't found an usage yet but I couldn't live without it.
  It's the same as `!`, `some_command <Ctrl+v>`
- chmod improvment. Enter "chmod" mode with "+" or "alt+m"
  - you can type a permission in octal mode (like 640), litterally (like rwxrwxrwx) or like in chmod "a+x", "-w" etc.
- Temporary marks. Use Char(") and Alt+" to jump and save. Only 10 are saved so we can index with the digits.
  Those marks aren't saved on disk and are dropped when the application stops.
- Use the current window when possible.
  - When you start a shell with `s` or open a file opened in a terminal, we use the current window instead of starting a new terminal emulator.
    It doesn't work if you open multiple files which doesn't share a common opener (like a text file and a pdf).
  - Tui application (lazygit, ncdu, btop, htop...) reuse the same window.
  - Shell commands expansion & custom commands expansion: 
    `%t` allows the command to be executed in a new shell in the same window. `%t` should always be the first argument.

- Nerdfont icons for filetypes. When metadata isn't shown, use nerdfont devicons to display the filekind.
  Association is copied from [ranger_devicons]https://github.com/alexanderjeurissen/ranger_devicons.
  Fuzzy finder of files display the same icon.
- Bugfixes:
  - Fuzzy navigation (home, end, ensure window surrounds index)

#### Changelog

- [x] navigate: home should go to first, end should go to last. g/G can't be used here since it can be a navigation
- [x] function for cd on quit doesn't capture the terminal and hangs
      Use a temporary file since I no environement variable seems to be set anywhere.

      Update the new function in readme.

  ```sh
  function f() {
    fm $@
    dest=$(cat /tmp/fm_output.txt)
    if [[ -n $dest ]]; then
      cd "$dest"
    fi
  }
  ```

- [x] chmod improvment
  - [x] "+" should enter chmod
  - [x] FIX: wrong order in display of permission, "all" was displayed before "group"
  - [x] allow octal like 777
  - [x] allow rwxrw.r.. and rwxrw-rw--
  - [x] allow a+x +x o-w etc.
  - [x] replace input by current mode when entering
- [x] display preview of flagged files in menu flagged.
- [x] preview should display how the file is previewed even if it's obvious "Previewed as binary file"
- [x] FIX: preview binary navigation goes too fast, some lines are skipped
- [x] shell_command_parser refactor. Won't do. It's clean already. I need a lexer & a parser. I couldn't use pipes or redirections, now I can.
  - [x] new shell command expansion %c current clipboard
- [x] menu / rendering / widgets
  - [x] rendering with ratatui widgets
    - [x] menu
      - [x] navigate: draw menu using ratatui widgets
    - [x] display top window
      - [x] directory
      - [x] tree
      - [x] preview:
        - [x] text
        - [x] syntaxed
        - [x] binary
        - [x] command output (ansi colored text)
    - [x] other elements
      - [x] second line
      - [x] log line
      - [x] header & footer
        - [x] create 2 ratatui line & use alignment for display
        - [x] conversion method header/footer->line
      - [x] menu second line
      - [x] menu content line
      - [x] trash clear confirm
      - [x] trash help
      - [x] context (action & more info)
      - [x] menu first string with colored string
      - [x] FIX: cursor if offseted by one
  - [x] FIX: opening shortcut twice crashes
  - [x] BUG: copy file should be 1 row up
  - [x] generic method to render menu content
  - [x] Layout::vertical 1, max, 1 for each window would simplify rect offset
  - [x] lazy menu creation. Store empty shells in menuholder
    - [x] shortcuts
    - [x] tui applications
    - [x] cli applications
    - [x] compression
    - [x] context
    - [x] input_history: too much code change
    - [x] marks

- [x] WONTDO: ratatui component for progress bar for copymove. Is very poor. I already need a thread to handle the progress, why would I replace it with something less powerful ?
- [x] FIX: trash opened + alt-x doesn't clear the trash but deletes the element itself
- [x] FIX: menu chmod crash as replace input by current mode
- [x] FIX: InputHistory
- [x] caching video previews
- [x] Ensure the cache can be cleared with an arg and the path is created if needed.
- [x] Case insensitive search
- [x] FIX --keybinds has wrong display, keybinds should be shortened.
- [x] FIX: leaving dual mode does't hide ueberzug
- [x] temporary marks: very similar to usual marks. We only use digits and save 10 marks at most. They are dropped when the application quits.
- [x] shell opens in the same window, not a new one.
  - [x] open all terminal application this way
  - [x] move opening to internal settings, just let the interface in status
- [x] icons / metadata. Use nerdfont icons when metadata is hidden.
  - [x] display icons in fuzzy finder of files
  - [x] don't use icons in fuzzy if the user doesn't want them.
- [x] FIX: thumbnailer queue is locked too long and freezes status thread
- [x] thumbnailer sync with workers trough atomics. Avoid locking the queue too oftenly
- [x] fuzzy picker. Move prompt to top
- [x] move rect creation to a specific struct
- [x] FIX: size shown as 0G for files close to 1GB. See mandalorian s2e2
- [x] FIX: entering a virtual terminal with shell doesn't enable mouse support.
- [x] FIX: Once a terminal application is opened in the same window, when left and exit, the screen isn't cleared.
  - [x] terminal should only be cleared when necessary (if we used the same window)
- [x] FIX: copy progress bar has wrong width
- [x] FIX: human size. Use 1 decimal place for files sizes 10.0. No decimal places otherwise.
      human size: 3.5G shouldn't be displayed as 3G. 12.3G should still be displayed as 12G. See [eza]https://github.com/eza-community/eza/blob/main/src/output/render/size.rs#L79
- [x] FIX: human size should use decimals for size under 1024B.
- [x] FIX: last element of directory / menus is reachable but invisible.
  - [x] Change ui use rect per content: min 1, min 1, fill, min 1.
  - [x] increase content window footer row by one.
- [x] FIX: pagedown in preview doesn't care for window size and scroll too much
- [x] FIX: open in nvim concats multiple listen address when nvim is opened several times
- [x] FIX: exex hangs
- [x] 7z support with 7z executable.
  - [x] WONTDO: decompress 7z uses a standard opener and should be moved there. Can't do it since 7z requires a lot of arguments and other opener don't
- [x] FIX: display mode fuzzy doesn't react to change focus binds.
- [x] Path completion should display visual indicator of directories with / or symbols
  - [x] FIX: pressing TAB to complete a directory doesn't refresh its children
- [x] FIX: bulk mode does nothing.
  - [x] send the bulkrename event once the thread is stopped.
  - [x] If the editor requires a terminal, opens bulk when process ends otherwise watch in thread
- [x] FIX: Input history navigation (shift+up, shift+down) doesn't update the search.
  - first attempt didn't fix
- [x] crash with error locking status while selecting a file being modified
  - [x] can't reproduce
- [x] FIX: tui apps should open in current window
- [x] FIX: clicking a footer should reuse the window. Same problem for custom_commands.
  - [x] %t expansion resuses the window
  - [x] allow args in "open in same window" instead of a single arg.
  - [x] parse custom commands and detect if %t isn't first : error.
  - [x] add %t to custom commands lines / help 
  - [x] match agains't the first arg, if %term or something, use "open in same window" 
- [x] FIX: fuzzy navigation. Fixed a bug where navigating to last element then move crashed. Implemented home & end
- [x] FIX: flagged files which doesn't exists anymore (deleted/moved somewhere else) may crash flagged menu.

### Version 0.1.33 

#### Summary 

- Mount menu. All your mount points and non mounted devices in one menu (Alt+u). Select with arrows, enter to navigate to, mount with m, unmount with u.
- Reponsive display of metadata. In small windows, some metadatas (group, modified times, user etc.) are hidden. Better experience in very small windows.
- Press Shift+V to enter visual selection (directory & tree display modes). Flag files by moving up or down.
- More consistant keybinds : Alt (used to open menus) : Alt+c opens the compression menu, Shift+c opens the config file.
- iterm2 Inline Image Protocol. Compatible terminal emulators (WezTerm etc.) can use their own image displayer. 
  You can display images without having ueberzug installed.
- Copy text file content to clipbloard with Ctrl+a. Only works for "text" files guessed from their extension. 
- Removed "terminal" & "terminal flags" from configuration.  Doesn't break config file. It's just not used anymore. Shell programs are opened in the same window and doesn't require new terminal.
- removed "clips" for videos animations. It was too slow :( I'll try again someday
- VISUAL flagging like in ranger. Press V (shift + v) and flag while you move.
- swaped default keybinds between 'Compression' and 'Config file'. Compression is a menu and most of them are opened with Alt
- Use char keybinds in tuimenu & cli menus for quick actions
- Preview compiled executables with readelf
- Theming. Use custom themes for syntax highlighting.
  Themes should be stored in `~/.config/fm/syntect_themes/` and can either be .tmTheme (textmate-themes) or .themedump (compressed).
  All textmate themes should be compatible. You can find more themes here : https://github.com/filmgirl/textmate-themes 
  If anything goes wrong while loading your theme, it defaults to monokai which is hardcoded. It should never fail.
- Display inode number after size in context menu, opened with (Alt + t) or (Right Click)
- Move the cursor with a click. In menus with text input, you can click a character and move the cursor there.
- Delete a "word" to the left in input modes with Alt + Backspace.

**Bugfixes :**

- Rename: renamed file stays selected. Also, you can't overwrite an existing file anymore.
- Permissions: special bits (setuid s/S, setgid s/S, sticky t/T) wasn't displayed or parsed properly.
  - They're all displayed properly.
  - User can set complex permissions from octal (like 2755), full display (rwxrwsrw-) or a subset of chmod. 
    It's still possible to do !chmod whatever %s to change the permissions
- Files with size between 9.5units and 10.0units weren't properly aligned.
- click in menus was offset by 2
- shell would open in other tab path
- open config file did nothing
- Updated syntect to `5.2.0` since older versions required a crate which didn't compile anymore.
- Could crash if a processus was terminated between file listing and file display
- Numbered files weren't sorted "naturally". Use Natural Order.
- Focus could be lost after resizing

#### Changelog



- [x] Remove terminal from configuration. Move "open in window" to opener and share common command function
- [x] visual flagging like ranger V
- [x] allow letter binds in every navigate + selection menu like tui & cli applications
- [x] FIX: open config (Alt + c) does nothing
- [x] swap keybinds: Alt + c open compression menu and Shift + c opens the configuration file.
- [x] Remote mount QOL
  - [x] Remote mount allows to mount somewhere else `username host:port remote_mount_point dest` 
  - [x] Remote mount shows the command that will be generated
  - [x] expand local path with tilde
- [x] mount menu
    - [x] mount menu
    - [x] display 
    - [x] actions for normal block devices (non encrypted disks)
      - [x] show all mount points
      - [x] mount / unmount with sudo 
      - [x] mount / unmount without sudo which opens pkexec
      - [x] encrypted drives
    - [x] regroup all mount things `Mount` menu
      - [x] enum with different kinds: BlockDevice, Remote
      - [x] enum variant: `Encrypted` moved most methods to it
      - [x] encrypted drives, it should be doable but annoying 
      - [x] remote. Doesn't require mount, since we can't guess what the user want to do
        - [x] enum variant
        - [x] remote actions: unmount
        - [x] iso are already found
      - [x] eject removable devices
      - [x] include GIO (=MTP) devices
        - [ ] test with a working phone...
      - [x] refactor the whole file
        - [x] deduplicate sudo commands. 2 methods are totally similar and should be merged
        - [x] Mountable::Remote(...) should use a struct instead of 2 strings. Can't even remember what they meant...
        - [x] Mount struct should have a builder struct with associated methods
        - [x] failed sudo commands should display the reason in "log line" : wrong passord ? command failed ? etc.
        - [x] status.dispatch_password should match against (dest, action) for simpler code
      - [x] remove RemovableDevices
    - [x] FIX: unmounting an encrypted drive doesn't reset password
    - [x] NFS & network drives
    - [x] use ratatui `Table` to display mount menu and improve alignment.
    - [x] use numeric keybinds to goto quickly

- [x] FIX: open 2 tabs, move to right, navigate in right, go left tab, shell opens in right tab path
- [x] FIX: click on menu is off by 2
- [x] FIX: substract with overflow footer
- [x] use readelf for ELF file
- [x] IMP: copy file content to clipbloard
- [x] FIX: single tab, Alt+p (preview) should open the preview instead of a second tab
- [x] FIX: sort shouldn't be reset when directory view is reset
- [x] FIX: sort, <CR> should reset but change focus
- [x] FIX: sorting should always display the selected file 
- [x] FIX: after rename selection is lost
- [x] FIX: rename shouldn't overwrite existing file
- [x] Integrate Ueberzug-rs in src. Wasn't maintened anymore.
- [x] share a common ueberzug instance for all image drawing 
  - [x] simplified ueberzug commands build
  - [x] where to attach it ? Display itself. 
  - [x] how to call it ? as deep as possible, from Ueber inside preview
  - [x] problem: where to store the last modified image ? it should be stored in ueberzug itself... Doing so delegates the clearing to ueberzug itself. 
  - [x] FIX: preview, quit preview, doesn't erease.
  - [x] display should draw the ueberzug image itself
- [x] refactor disk_space without using internal_settings.disks.collect as often
- [x] FIX: ssh sessions or whatever which can't create windows should try to ...
  - [x] don't create anything image related if user hasn't x11
- [x] support other way of displaying image, sharing API : 
    Support for inline image protocol & ueberzug display of images. Detection is made at start.

   downscaling large images with fast libs instead of letting ueberzug/terminal do the hard work isn't fast.
   I should let ueberzug & wezterm do the hard work.

  - [x] ueberzug. Simplify, holds into an enum variant
  - [x] support [Inline Images protocol]https://iterm2.com/documentation-images.html
    - [x] detect the terminal, default to "unable" if not comptabile nor ueberzug is available
      - wezterm : $WEZTERM_EXECUTABLE
      - warp : $WARP_HONOR_PS1  
      - tabby : TABBY_CONFIG_DIRECTORY
      - vs code : VSCODE_INJECTION
    - [x] build the string
    - [x] display the string
    - [x] clear (for each line of rect, write empty string)
    - [ ] BUG: wrong sizes for vertical images left pane has wrong size
  - [x] debugging / testing : scrolling through large directories isn't fast.
- [x] FIX: special flags in permissions aren't read or write correctly.
  ref : [wikipedia permissions]https://en.wikipedia.org/wiki/File-system_permissions#Symbolic_notation && [chmodcommand]https://chmodcommand.com/chmod-7755/
  - [x] read (with or without special flags)
  - [x] write (2755, rwsrw-rw-, a+x etc. are accepted)
- [x] FIX: wrong alignment for files with size between 9.5 units and 10.0 units.
- [x] Video thumbnails were slow. No more "clip", only a static image.
- [x] updated syntect version since "onig" crate couldn't compile anymore.
- [x] theming. Use custom themes for syntax highlighting. 
  - [x] default to monokai
  - [x] parsing the config file,
  - [x] document the config file 
  - [x] load .tmTheme & .themedump 
- [x] Display inode number after size in context menu
- [x] FIX: if a processus is terminated between listing (Directory) and display, the display crashes. Removed all unecessary unwrap.
  Display empty lines for those processes.
- [x] FIX: inacessible files should be displayed normally, replace unknown by ???
- [x] FIX: numeric filenames aren't sorted properly. Use [Natural Order]https://github.com/lifthrasiir/rust-natord
- [x] FEAT: responsive display of metadata
  - [x] responsive: group, permissions, date, owner, whole metadata
  - [x] format picker in display with separate logic
  - [x] common formaters for directory & tree
  - [x] avoid useless cost: displayed tree lines requires a second creation of fileinfo...
- [x] FEAT: click on input moves the cursor
- [x] FEAT: delete a word and to the left with alt+backspace. Stops at any "separator" (non alphanumeric ascii char)
- [x] reduce bloat without changing API
  - [x] nvim-rs : use `nvim --server adress --remote filepath` May require nvim remote or nvr.
  - [x] log4rs : use a custom logger
- [x] better logs: `date - file:line:col [function name] - content`
- [x] FIX: display could crash from substraction with overflow if width is very low
- [x] FIX: Sync left tab to right tab wasn't doing anything
- [x] FIX: 2 panes, focus right, resize to lower, right pane is closed but still has focus.
- [x] Removed useless function color_to_style

### Version 0.1.34 

Tried to fix cargo doc but failed... :(

### Version 0.1.35

#### Summary

Updated some dependencies to avoid yanked version of crates. Documentation should work again...

#### Changelog 

- [x] rewrote cloud config for oauth2 5.0 & new google cloud policy
- [x] fix cargo doc error from: reqwest & zip & rust-lzma have incompatible versions for lzma
- [x] removed lzma 
- [x] fixe future-utils yanked version

Once that's done, it's all. No not implement anything else


## Current dev

### Version 0.2.1 : plugins



#### Summary

- Plugin system for previews. You can install an external plugin used to preview files. The current versions comes with "bat_previewer" which replace the internal previewer for highlighted text. Some plugins (only one atm) are available at [https://github.com/qkzk/fm_plugins].
- CLI configuration helper: `fmconfig`. Used to display binds, reset the config file, create a cloud configuration, list/add/remove/install a plugin etc.
- Neovim file picker. File picking in Neovim never was reliable. It never worked if you open fm yourself in a toggleterm instance. Use the associated plugin [fm-picker.nvim]https://github.com/qkzk/fm-picker.nvim to do the work. It uses 2 sockets to send and receive commands.
- Execute commands from outside. Related to the previous point. If you don't use neovim, you can still take control of fm through sockets. Specify an output socket in command line arguments and send commands.
  - `GO <path>` will select the path,
  - `KEY <key>` will execute this key like if you pressed it yourself,
  - `Action <action>` will execute this action.

  Both `<key>` & `<action>` should be formated like in the config file.
- .ape files are previewed as music files with mediainfo
- files with extension ending with _ or ~ are previewed normally. ranger and other file manager may append an '_' while copying, some image editor will append a ~ while editing the image. Thoses files should be previewed.
- update zoxide when moving in a directory. Only works when logging is done. It may become configurable in a future version.
- Confirmation menus (copy, move, delete, empty trash, bulk rename/create) are navigable : up, down, page up, page down, click, scroll wheel.
- Color search results (/) with second colors of menu. Search results should be more visible
- Middle click in fuzzy finder display mode moves to the selected element (same as enter)
- In tree mode, use Ctrl+Space to toggle flag on the children of a directory
- pasting a file from a GUI file manager or dragon-drop will move the file in current directory.
- Disable images previewing from arguments or config files
- Paste a file into a folder and move it there. It allows you to drag and drop files from outside into fm.
- Paste a text into an input field
- Disable image previewing from config or command line argument.
  Use `fm --disable-images` or set `imager: Disabled` in config file to preview "graphical" files another way. Will disable all images from being previewed.
  Images will also be disable If `fm` can't detect a previewing method (ueberzug not in path or no iterm2 inline image compatible terminal), 
- Navigate by clicking / moving / entering a file from a previewed tree. Preview in second pane, ctrl+right to change focus, move with arrows and enter. Boom.
- Open a previewed file with enter when focusing the pane.
- In inputs Alt+left, Alt+right move the cursor word by word
- In tree display mode, % and § increases and decrease the depth. Watchout, it may be take some time to explore a large file tree. This setting is associated to tab and can't be saved in config file. 
- In fuzzy finder for files (Ctrl+f), you can toggle flag on files with ctrl+space. Flagged files are shown in yellow
- fuzzy finder for lines (Ctrl+s) will move the preview to the matched line
- History of previous inputs. When logs are enabled, your inputs are saved and you can pick any of them. For example, open CD mode with Alt+g, then Alt+h will open the history and you can pick a previous input.

##### Bugfixes

- fm couldn't start without a config file. If no config file is found for the current user, we'll copy the default ones in ~/.config/fm.
- Previewing a text file containing ANSI control sequence would alter the terminal display. Instead of displaying the content directly, we clean it first, removing ANSI control chars with a regex.
- Opening a file whose path contains spaces wouldn't work.
- Moving multiple files won't show a progress bar if all source files share the same mount point as the destination.
- Prevent the use from moving to a subdirectory which is impossible. Display a message.
- Completion is updated when something is deleted (backspace, delete). In search mode, the selected file is also updated.
- Context menu (Alt+t or right click) should do nothing in fuzzy or preview mode
- Opening a picker (like Alt+h in a menu) twice and pressing enter would crash

#### Changelog

- [x] previewer plugins
    previewer plugins 

    API :
    - plugin.name() -> String,
    - plugin.is_match(path: *mut c_char) -> bool ("jpg png gif")
    - plugin.preview(path: *mut c_char) -> *mut c_char

    spec in fm.config 
      - name & path_to_lib.so
- [x] FEAT: install plugins from CLI.
- [x] example plugin: bat previewer 
- [x] FIX: displaying preview directly skip the whole plugin.
- [x] FIX: crash without config files. Save default config while building, include them in code.
- [x] FIX: ANSI control sequence in text file can't be displayed properly. Use a regex to remove ANSI control chars.
- [x] IMP: preview .ape files as music files with mediain
- [x] IMP: extensions ending with ~ or _ like .png~ should be previewed normally.
- [x] FIX: opening a path with space in neovim is buggy
- [x] IMP: cd mode selection should update zoxide
- [x] FIX: moving files from same part shouldn't require a copy and should be instant
- [x] IMP: should we prevent moving to a subdirectory ? `mv: cannot move to a subdirectory of itself`
- [x] separate CLI binary: fmconfig
  - [x] hello world 
  - [x] move all clap "early exit" here: keybinds, plugins, cloud 
  - [x] IMP: allow to reset config, cloud config, see keybinds, install a plugin
  - [x] make separate subcommands:
    - [x] reset: reset the config,
    - [x] plugin <subcommand>: ...
    - [x] cloud config/list
    - [x] keybinds list 
  - [x] fmconfig plugin add /path/to/libname.so : copy the file.so to .local/fm/plugins/previewer/ and add it at the end of config file with 'name'
    - [x] adding to config should create the required plugin:previewer: part.
    - [x] an existing plugin... shouldn't do anything to the config but exit with a warning 
  - [x] fmconfig plugin remove name : remove the file from .local and config inform 
  - [x] fmconfig plugin list: will display all plugins
  - [x] fmconfig plugin install author/plugin
    - [x] clone
    - [x] build
    - [x] check build & install with add
    - [x] remove should check for clones
    - [x] update should do the same
  - [x] fmconfig plugin install https://hostname/author/plugin
- [x] FIX: opening a _shell_ command with a path containing `'` or `"` requires those chars to be escaped.
    https://github.com/ranger/ranger/blob/master/ranger/ext/shell_escape.py
    https://github.com/sxyazi/yazi/blob/main/yazi-shared/src/shell/unix.rs
    https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_271
    https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_170

- [x] Neovim integration 
  - [x] open fm with current file selected whatever the terminal used 
  - [x] renaming in fm renames the buffer 
  - [x] deleting in fm deletes the buffer 
  - [x] open a file in fm opens a new buffer with the file
  - [x] FIX: filepicker opens in terminal window instead of full & keeps the terminal window settings (no line number...)
    The problems comes from incompatibiliy between floatterm & normal terminal.
    In floatterm, we have to exit _the floatterm_, then open the new buffer,
    In normal terminal, we have to exit _the terminal:_ then open the new buffer.
    Current code works fine in normal terminals, not in float term
    A solution would be to allow the edition of the command itself from config file.
    Another would be to create a neovim plugin...

  solution: 

  - plugin + RPC/server
    requires a lot of work 
    fm becomes a server: needs to know its address & communicate it
    actions -> send to neovim (rpc -> fm)
    neovim -> fm (fm_rpc)

    - [x] define events to read 
    - [x] define events to send 
    - [x] use PID in name instead of randomstring
    - [x] open socket : https://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html
    - [x] listen to socket 
    - [x] write to socket from external 

      ```bash 
      socat - UNIX-CONNECT:${ls /tmp/fm*.sock}
      ```
      then `GO /some/path/to/file`, enter, ctrl+c
    - [x] move it to refresher, send an event if needed and let dispatch capture it
    - [x] remove the socket file before leaving
    - [x] write to socket from fm
    - [x] GO <path>
    - [x] ACTION <ActionMap>
    - [x] KEY <Key>
    - [x] documentation
      - [x] public functions
      - [x] here
      - [x] readme
      - [x] changelog
    - [x] neovim companion plugin [fm-picker.nvim]https://github/qkzk/fm-picker.nvim
      - [x] nvim -> fm open, pick 
      - [x] fm -> nvim pick 
      - [x] fm -> nvim delete
      - [x] make it a plugin
      - [x] configure the plugin
    - [x] ensure socket files are removed
      /run/user/1000 is deleted by systemd at logout
      /run/user/1000/nvim.fm.whatever
      /run/user/1000/fm.nvim.whatever
    - [x] more binds to reset mode since Esc is captured by neovim : Alt-Tab & Ins
    - [x] send msg to nvim to toggle fm window ??? Is quiting enough ? Yes

- [x] FIX: search, down, enter. Selection should follow up/down/pgup/pgdown,click
- [x] FIX: deleting chars doesn't update completion
- [x] FEAT: need confirmation should be scrollable (up down, pgup, pgdown, mwhell)
  - [x] use menu window & existant methods for need confirmation which use "flagged files".
  - [x] other modes: len, index, next, prev, pgup, pgdown, click (event action)
- [x] color search results in display & tree
- [x] FIX: right click shouldn't do anything in fuzzy finding
- [x] FEAT: middle click in fuzzy should open like in normal / tree display mode
- [x] FEAT: Ctrl+space flags all children files of a dictory in tree mode
- [x] FIX: in help "<SPC>" should be used instead of `' '` for the "space" character since it's whitespace.
- [x] FEAT: allow files to be dropped by capturing paste.
    dragon-drop & pcmanfm output: absolute filetree path
    what about urls ? Do nothing

    - [x] enable & disable brackedted paste
    - [x] detect absolute filetree path  
    - [x] absolute path 
      - [x] copy or move in cwd if display::file::whatever & focus & same mount point, otherwize ?
      - [x] pasting into same dir does nothing
      - [x] insert text in menus with input
      - [x] refactor
      - [x] Unify with already existant copy/move
- [x] FEAT: Configure wether user wants to display images (imgs, pdf, videos)
  - [x] config : let the user set what he wants. image: {ueberzug|inline|disabled}, defaults to disabled 
  - [x] parse config, read it before init of display at src/app/displayer.rs
  - [x] set fallback previewers for all supported types
  - [x] arg
- [x] FEAT: history picker for previous input
  - [x] common entry point for entering a menu
  - [x] read picked & replace input
  - [x] alt+h in a menu (never used ?) opens the picker
  - [x] picker for each mode with a callback
  - [x] completion
  - [x] Esc should set back to menu not leave it
- [x] FIX: starting path isn't alway added to history
- [x] FEAT: bind alt+- to open history. '-' is used to go back.
- [x] FIX: Ctrl+s (aka grep) doesn't update the preview
- [x] FEAT: preview a tree in second pane should have some kind of navigation ?
  - [x] move down & up + scrolling
  - [x] enter, left click, middle click, right click (context)
  - [x] FIX: doesn't work for plugins
    - [x] impl a tree filepath for each preview. Current isn't consistent and doesn't respect its signature.
      should return `Option<impl Path>` where non file previews like help should return `None` and true files and logs should return `Some(path)`.
  - [x] open from preview with only should also work in left tab.
  - [x] BUG: using wrong index when reading focus
  - [x] FIX: entering a previewed tree doesn't update the right preview
  - [x] exec (`e`)
- [x] FIX: in tree mode, deleting a directory crashes. In any display mode, renaming/moving/deleting the "root" node is prevented. 
- [x] FEAT: horizontal scroll of input ?
- [x] FIX: renaming a file doesn't select it anymore
- [x] FEAT: In inputs,alt+left / right should jump word by word
- [x] FEAT: renaming/creating should prepend current path (shortened ?) before filename itself... 
- [x] IMP: use Size for holding terminal sizes, improving readability.
- [x] IMP: solved a lot of TODO! by refactoring
- [x] FIX: open a menu (like goto Alt+G), Alt+H to open picker, Alt+H again (picker from picker) then enter. Crash
- [x] FEAT: make tree depth variable
- [x] FEAT: fuzzy finder, <ctrl+space> -> flag the file
  - [x] <ctrl+space> flag a file if it exists 
  - [x] <ctrl+space> **toggle** flag
  - [x] <ctrl+space> move to next
  - [x] display flagged  
  - [x] more consistant colors
- [x] FEAT: improve fuzzy finder for lines, move preview to considered line
- [x] FIX: exec (`e`) a non terminal executable from a preview would crash.
- [x] IMP: remove useless clone while getting path of current selection
- [x] FIX: reverse flags wasn't doing anything


## TODO

### Other ideas



- [ ] BUG: big tree moved down and selection is out of screen once again
- [ ] BUG: double quote & antislash doesn't work for ueberzug since there's already escaping. Can't solve easily
- [ ] FEAT: improve copy/mv etc. with ideas from [bmcr]https://github.com/Bengerthelorf/bcmr
- [ ] FEAT: bg/fg. ctrl+z should send the application in background. Change tree folding etc.  See [superuser.com]https://superuser.com/a/1873140
- [ ] FEAT: common themes
- [ ] FEAT PLUGIN: replace float term by something else ? see reddit
- [ ] BUG: preview can stop and display "preview as empty". Can't reproduce
- [ ] FEAT: allow settings in plugins & store them in config file
  - [ ] should be done from 
- [ ] FEAT: dired inspiration.
  - [ ] WONTDO: mouse over should color something
  - [ ] WONTDO: folders should end with / 
  - [ ] searching: only matchs should be colored, don't color everything
  - [ ] color for each stat instead of common gradient 
    - [ ] option for kind of coloring 
    - [ ] filename keep their color 
    - [ ] color per stat with sane defaults
    - [ ] make display::FileFormater return a vector
- [ ] FEAT: marks / temp marks should be updated when their target is moved. marks[z] -> /a/b; mv /a/b /a/c; marsk[z] -> /a/c. Ranger does this automatically.
  - [ ] display marks/temp marks directory/tree display mode
  - [ ] marks & temp_marks refactor. Use same architecture in both.
  - [ ] common trait for marking 
  - [ ] BUG: ensure mark char is printable
  - [ ] method: path_is_marked(path) -> bool 
  - [ ] parent method from status called while moving a file 
  - [ ] update the marks
- [ ] IMP: menu modes & display modes are annying. Display modes aren't that numerous but there's too much menu modes and too little factorisation.
  Should I switch to a state machine ?
- [ ] BUG: filter by name in tree don't seem to work. Can't reproduce
- [ ] FEAT: navigable history of every kind of command. input mode : ctrl + h (?) : open history for this kind with fuzzy, select and input
- [ ] IMP: should filenames with spaces be surronded with quotes like ls / eza ?
- [ ] completion should work like blink in nvim: 1st is nothing, down next & move, down next & move... cycle back
- [ ] Merge "need confirmation" into navigate ?
- [ ] IMP: paths in command should always be OSString. use PathBuf::to_oss_string or whatever whenever it's possible.
- [ ] plugin system 
  menus are insteresting but requires too much change. What I want to do requires to move/duplicate a lot of code and I don't like it.
  IPC may be the solution for menus.
- [ ] IMP: why cloning PathBuf when Arc<Path> would do the trick ? Useful if path is mutated... ?
- [ ] IMP: quicker trees using eza idea : https://github.com/eza-community/eza/blob/main/src/output/tree.rs ?
- [ ] BUG: preview a pdf in right, open it with middle click, close it. Can't preview anything. Can't reproduce every time...
- [ ] BUG: Camera folder crash. Can't reproduce
- [ ] BUG: opening a video and focus is sticked to second pane : can't reproduce
- [ ] reduce bloat without changing API
- [ ] stability aka 1.0
- [ ] code clean
- [ ] store 4 windows in display to modify instead of recreating
- [ ] sqlite preview [like ranger]https://github.com/ranger/ranger/pull/2216/files
- [ ] scan status for menu actions which could be moved elsewhere
- [ ] document every public function / method. Done for struct, enum & macros.
  ```sh
  % cargo rustdoc -- -D missing_docs 2>&1 | grep error | wc -l
  492
  ```
- [ ] BUG: resize change dual / preview
  - [ ] large main window. Set dual. Resize to smaller window. Single. Resize to large, Still single. It should be dual again.
- [ ] menu reset is a mess, menu set is a mess, status refresh is a mess
- [ ] eza / ranger colors for normal files
- [ ] Walkdir::new in tree building instead of exploring by hand
  - require to rewrite everything just to avoid testing depth myself.
    Little to gain except for speed, it _should_ be much faster
- [ ] simplify status.confirm action & must leave
- [ ] opener (external) should allow arguments in their config
- [ ] common trait to validate a data : input string, config, args...
- [ ] should small windows be used in menus ?
- [ ] google drive should be a display ?
- [ ] ideas from broot : https://dystroy.org/broot/#apply-commands-on-several-files
- [ ] floating windows ?
- [ ] rclone
- [ ] use the new mpsc event parser to read commands from stdin or RPC
- [ ] document filepicking (from my config etc.).
- [ ] avoid multiple refreshs if we edit files ourself
- [ ] remote control

  - [ ] listen to stdin (rcv etc.)
    - [ ] follow change directory
    - [ ] when called from a file buffer in nvim, open with this file selected
  - [ ] nvim plugin - set a serverstart with a listenaddress, send it to fm
  - https://github.com/KillTheMule/nvim-rs/blob/master/examples/basic.rs
  - https://neovim.io/doc/user/api.html

- [ ] context switch
- [ ] read events from stdin ? can't be done from tuikit. Would require another thread ?
- [ ] pushbullet ?

- [ ] update the animation

- [ ] build option to force reset of config file, warn the user at first start
- [ ] edit folder like a buffer [oil like]https://github.com/stevearc/oil.nvim
- [ ] allow pipe in execution

- [ ] tests
- [ ] remove references to local thing
- [ ] translations i18n
- [ ] dark/light theme, transparency etc.
- [ ] plugins

  - which language ?
  - what for ?

## Won't do

- [ ] FEAT: reduce bloat in tree like [broot]https://dystroy.org/broot/
  Only show first 3 non directory children then replace the display by "xx unlisted"

  2 steps : 

  while creating nodes. 
  1. Instead of using stack = vec![path] use vec![(path, is_listed)]
      while creating children, run a counter and store false once its reached 
  2. When creating the lines, don't when the first "non listed" is met, add a string instead.

  requires a lot of changes. 

  The basic idea is to iterate over the nodes and count how much normal files per directory should be listed.
  We need to alter the first stack (of nodes) to also save a boolean.
  In the second iteration (creating lines) we stop once the first "non listed" pop and replace this one by a placeholder.
  
  When navigating we ensure to skip all non listed.

  PB:

  No way to alter the view (possible ?) to show unlisted 
  No track of how many aren't listed 
  The "unlister" or "more..." text is still a treeline, displayed another way...
- [ ] IMP: status.index should be replaced by a bool instead of usize. Won't do. Annoying and requires a lot of change.

### auto stuff

All of this stuff can be done easily through a shell command or automatically. I'm not sure I wan't to bloat fm with it.

- [ ] auto mount usb keys ??? just use udiskie (started automatically) and udiskie-umount /mount/point
- [ ] cloud services (apple, microsoft, google, dropbox etc.)
- [ ] ftp

## Sources

### CLI

- [CLI crates]https://lib.rs/command-line-interface

### Chat GPT ideas

Tell me 10 cool features a TUI file manager could have

Sure! Here are 10 cool features a TUI (Text-based User Interface) file manager
could have:

Easy navigation: A TUI file manager should allow users to navigate through
directories and files quickly and easily using keyboard shortcuts.

File previews: Users can preview the contents of a file without having to open
it. This feature can be particularly useful for large text files, images, or
videos.

Customizable interface: A TUI file manager should be customizable so that users
can choose the information they want to see on the screen, such as file size,
modification date, and file type.

File operations: Basic file operations like copying, moving, and deleting
should be easily accessible and efficient to perform.

Bulk operations: A TUI file manager should allow users to perform bulk
operations on multiple files at once, such as renaming or deleting them.

Tabbed interface: A tabbed interface allows users to have multiple directories
open at the same time, making it easy to move files between them.

Bookmarking: Users can bookmark frequently used directories for quick access.

Integrated terminal: A TUI file manager can include an integrated terminal to
execute commands without switching to another application.

Search functionality: Users can search for files based on their name, content,
or other criteria, with the search results displayed in real-time.

Cloud storage integration: TUI file managers can integrate with cloud storage
services like Dropbox, Google Drive, or OneDrive, allowing users to manage
their cloud files directly from the file manager interface.