LaurentTreguier / vscode-uncrustify

Code format using uncrustify
66 stars 10 forks source link

Support for Objective-C++ (*.mm files) #52

Closed jhasse closed 5 years ago

jhasse commented 5 years ago

uncrusitfy also works with Objective-C++ (.mm file extension), but I can't select the formatter in VS Code with those files (.m works fine).

LaurentTreguier commented 5 years ago

Objective-C++ isn't mentioned specifically as officially supported (and Objective-C itself is apparently not the best supported language). I modified the extension however, and you should be able to use the uncrustify.langOverrides extension setting: adding a "objective-cpp": "OC" entry to this object should enable Objective-C++ formatting as Objective-C.

jhasse commented 5 years ago

Works, thanks :)