Add heuristic for .inc files: the #declare keyword is unique to POV-Ray.

Also added #local, #macro, and #while.
This commit is contained in:
Lars Brinkhoff
2016-09-14 15:48:46 +02:00
parent 0e5327a77a
commit a7a123a8db
2 changed files with 6 additions and 1 deletions

View File

@@ -202,6 +202,8 @@ module Linguist
disambiguate ".inc" do |data|
if /^<\?(?:php)?/.match(data)
Language["PHP"]
elsif /^\s*#(declare|local|macro|while)\s/.match(data)
Language["POV-Ray SDL"]
end
end