file-icons / atom

Atom file-specific icons for improved visual grepping.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReScript: .res extension is missing

alex35mil opened this issue · comments

commented

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

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"
			]
commented

Gotcha, thanks!