From 3a112f2f79d96b6f6ed61b47973d82b9068cc64d Mon Sep 17 00:00:00 2001 From: Francois Belair Date: Tue, 8 Sep 2020 10:43:15 -0400 Subject: [PATCH] Move grammar from configurations to syntaxes directory (#228) This enables Github's linguist to pick up on an up to date GDScript grammar file and better highlight GDScript files on Github without impacting the extension's functions. --- package.json | 2 +- {configurations => syntaxes}/GDScript.tmLanguage.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {configurations => syntaxes}/GDScript.tmLanguage.json (100%) diff --git a/package.json b/package.json index d0cf7b5..f9d79fc 100644 --- a/package.json +++ b/package.json @@ -150,7 +150,7 @@ { "language": "gdscript", "scopeName": "source.gdscript", - "path": "./configurations/GDScript.tmLanguage.json" + "path": "./syntaxes/GDScript.tmLanguage.json" } ], "snippets": [ diff --git a/configurations/GDScript.tmLanguage.json b/syntaxes/GDScript.tmLanguage.json similarity index 100% rename from configurations/GDScript.tmLanguage.json rename to syntaxes/GDScript.tmLanguage.json