I would like to customize the amount of detail displayed in Dired. Basically I would like to cherry-pick the "columns" to display. More precisely, I would like to hide the "owner group" information. So instead of this:
drwxrwxrwx 1 fgeorges Utilisa. du domaine 40960 01-28 20:16 bar
-rw-rw-rw- 1 fgeorges Utilisa. du domaine 10574 01-29 08:31 file.txt
-rw-rw-rw- 1 fgeorges Utilisa. du domaine 198331 01-29 08:31 file.xml
drwxrwxrwx 1 fgeorges Utilisa. du domaine 40960 01-29 08:31 foo
-rw-rw-rw- 1 fgeorges Utilisa. du domaine 10499 01-28 20:17 file.json
I would rather see this:
drwxrwxrwx 1 fgeorges 40960 01-28 20:16 bar
-rw-rw-rw- 1 fgeorges 10574 01-29 08:31 file.txt
-rw-rw-rw- 1 fgeorges 198331 01-29 08:31 file.xml
drwxrwxrwx 1 fgeorges 40960 01-29 08:31 foo
-rw-rw-rw- 1 fgeorges 10499 01-28 20:17 file.json
It would be OK to never generate it in the first place, or to be able to hide it, by configuration or using a command.
I am aware of dired-hide-details-mode
, but this is different. It presents everything or nothing. I would still like to have details, but just not some of them.
I searched quite a lot, and found nothing, but I cannot believe it is not possible to configure which columns to display in Dired.
BTW - I take solutions using Dired+ as well (I can consider any other extension, but would like to keep it to Dired or Dired+)