Compare commits

...

2 Commits

Author SHA1 Message Date
Colin Seymour
a18ad1d489 Release v6.0.1 (#4016)
* Update grammar submodule refs

* Bump version to v.6.0.1
2018-01-30 15:17:58 +00:00
Vicent Martí
25ac140d58 compiler: Allow loading grammars from syntaxes folder (#4015) 2018-01-30 12:49:28 +01:00
9 changed files with 9 additions and 9 deletions

View File

@@ -1,3 +1,3 @@
module Linguist module Linguist
VERSION = "6.0.0" VERSION = "6.0.1"
end end

View File

@@ -122,7 +122,7 @@ func isValidGrammar(path string, info os.FileInfo) bool {
case ".tmlanguage", ".yaml-tmlanguage": case ".tmlanguage", ".yaml-tmlanguage":
return true return true
case ".cson", ".json": case ".cson", ".json":
return strings.HasSuffix(dir, "/grammars") return strings.HasSuffix(dir, "/grammars") || strings.HasSuffix(dir, "/syntaxes")
default: default:
return false return false
} }