From fce6a18033233aa8928d60bf4dcb2896f0fd5b63 Mon Sep 17 00:00:00 2001 From: Francis Agayapong Date: Tue, 9 Aug 2016 01:40:42 -0600 Subject: [PATCH] Fix issue of loading the Kotlin language file The name of the grammar file declared in package.json had a case mismatch causing the file not to be found upon the extension load. This commit simply changes the case of the filename declared in package.json to match the actual filename. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 49b886b..3fb2cc2 100644 --- a/package.json +++ b/package.json @@ -37,10 +37,10 @@ "grammars": [{ "language": "kotlin", "scopeName": "source.Kotlin", - "path": "./syntaxes/kotlin.tmLanguage" + "path": "./syntaxes/Kotlin.tmLanguage" }] }, "devDependencies": { "vscode": "0.11.x" } -} \ No newline at end of file +}