Skip to content

Commit

Permalink
treat objc++ *.mm files as objc, that's better than no filetype at all
Browse files Browse the repository at this point in the history
  • Loading branch information
ethercrow committed Jun 8, 2012
1 parent 5a9073e commit fedf895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yi/src/library/Yi/Modes.hs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ cMode = (linearSyntaxMode C.initState C.alexScanToken id)

objectiveCMode = (linearSyntaxMode ObjectiveC.initState ObjectiveC.alexScanToken id)
{
modeApplies = anyExtension ["m"],
modeApplies = anyExtension ["m", "mm"],
modeName = "objective-c"
}

Expand Down

0 comments on commit fedf895

Please sign in to comment.