Hello,
I've seen there is an SVG for MATLAB, but on my Atom my .m files are assigned the (default?) "@{" icon.
馃憢 Hey mate,
The .m extension is used by both MATLAB and Objective-C. The @{ icon you're seeing is the icon used for Objective-C files. If you prefer .m files be used for MATLAB instead, you can register it as a custom filetype. Just add the following to your config.cson file:
~cson
"*":
core:
customFileTypes:
"source.matlab": [
"m"
]
~
Worked like a charm. Cheers!
Good to hear! =)
Note for myself:
If you get indentation errors, just put everything in one line
customFileTypes: "source.matlab": ["m"]
Most helpful comment
馃憢 Hey mate,
The
.mextension is used by both MATLAB and Objective-C. The@{icon you're seeing is the icon used for Objective-C files. If you prefer.mfiles be used for MATLAB instead, you can register it as a custom filetype. Just add the following to yourconfig.csonfile:~cson"*":
core:
customFileTypes:
"source.matlab": [
"m"
]
~