Fuco1 / dired-hacks

Collection of useful dired additions
GNU General Public License v3.0
849 stars 76 forks source link

Make dired-rainbow-define ignore case of EXTENSIONS #202

Open legends2k opened 1 year ago

legends2k commented 1 year ago
    (dired-rainbow-define media "#de751f" ("mp3" "mp4" "MP3" "MP4"))

works but it'd be better, less verbose, to not need to define all extensions twice in both cases. I've not seen people differentiate files based on extension case so we want dired-rainbow-define to handle its EXTENSIONS parameter case-insensitive when it's a list.

Fuco1 commented 1 year ago

This sounds reasonable. I'm surprised it even uses case matches, since Emacs usually ignores case by default. I'll look into it.