Steven Ward

Results 21 comments of Steven Ward

How are relative future dates printed? `lsd` prints "in XXXX" for future dates, in contrast to "XXXX ago" for past dates. (edit: changed underscores to Xs)

[lsd](https://github.com/Peltoche/lsd) uses [chrono_humanize](https://lib.rs/crates/chrono-humanize).

`ls --version | head -n 1` `ls (GNU coreutils) 9.1`

I guess this behavior was added in coreutils 8.25. https://git.savannah.gnu.org/cgit/coreutils.git/tree/NEWS#n1046

See also https://unix.stackexchange.com/q/258679/439780

Python script to create the files: ```python from pathlib import Path for i in range(32, 127): if chr(i) == '/': continue f = "{:02X}{}{:02X}".format(i, chr(i), i) Path(f).touch() ``` `ls -1`...

There's a submarine in this version. https://gist.github.com/nothub/91ff81bd945eb8f1e6af08492a13ff75

Change the castle `default_color` from `BLACK` to `white`.

Does the problem happen without giving the `-ltr` options? If so, this is a duplicate of https://github.com/lsd-rs/lsd/issues/378

Use `strace` with `ls`, `exa`, and `lsd` in a large directory, and notice that `lsd` is making _many_ more system calls that the other 2. `strace ls --color=never -l --sort=none...