Support `--quoting-style` like `ls` (and quote filenames with spaces by default)
Author: tspiteriCreated Aug 4, 2017Updated Sep 16, 2023
Labelsfeature request
When a filename ends in a space, there is no indication. Compare this with GNU ls, which encloses filenames with spaces in quotes.
$ touch hello
$ ls
hello
$ exa
hello
$ touch 'hello '
$ ls
hello 'hello '
$ exa
hello helloAs an aside on the example above, GNU ls sorts 'hello ' after 'hello' while exa sorts them the other way round.
Source: ogham/exa