file-icons / atom

Atom file-specific icons for improved visual grepping.
MIT License
1.31k stars 250 forks source link

ReScript: .res extension is missing #834

Closed alex35mil closed 3 years ago

alex35mil commented 3 years ago

I'm not sure if it's done on purpose to avoid clashes, but ReScript's .res extension is missing here: https://github.com/file-icons/atom/blob/master/lib/icons/.icondb.js#L1584

Alhadis commented 3 years ago

It was to avoid clashes. However, you can remap the icon using your stylesheet or config.json (latter shown below):

"*":
    core:
        customFileTypes:
            "source.rescript": [
                "res"
            ]
alex35mil commented 3 years ago

Gotcha, thanks!