-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
26 lines (15 loc) · 756 Bytes
/
TODO
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
To do:
* Read syntax colors from LS_COLORS.
* Find out the minimum required versions of Vim and Neovim.
* Think of optimizations for sorting by name.
* Solve broken syntax highlighting after applying color schemes.
Known bugs:
* Vim's sort() and :sort cannot combine sorting by name and number:
file1 file10 file2 -x-> file1 file2 file10
* Vim's rename() fails to rename missing symlinks.
* An attempt to move a directory inside itself using Vim's rename()
not only fails but creates an empty executable file at the
destination path.
* Timestamps fail when changes occur within less than a second.
* Searching for patterns like \.txt$ fails because of the s:separator
and file type indicators at the end.