mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Recognise R comments in heuristic.
This commit is contained in:
@@ -354,7 +354,7 @@ module Linguist
|
|||||||
disambiguate ".r" do |data|
|
disambiguate ".r" do |data|
|
||||||
if /\bRebol\b/i.match(data)
|
if /\bRebol\b/i.match(data)
|
||||||
Language["Rebol"]
|
Language["Rebol"]
|
||||||
elsif data.include?("<-")
|
elsif /<-|^\s*#/.match(data)
|
||||||
Language["R"]
|
Language["R"]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user