From 5ab69e54c881f620388dba0d36fcf0adcd343807 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 22 Dec 2015 09:47:58 -0800 Subject: [PATCH] Disassociate .gn with python language While Python worked well with GN in v0.10.3, since then the progress made with the Python language syntax highlighting doesn't play well with the extra quirks on top of Python that GN introduces (braces, no colons to indicate blocks). Making it less usable than no language mode. --- extensions/python/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/python/package.json b/extensions/python/package.json index ae1633093bc..688862a4717 100644 --- a/extensions/python/package.json +++ b/extensions/python/package.json @@ -6,7 +6,7 @@ "contributes": { "languages": [{ "id": "python", - "extensions": [ ".py", ".rpy", ".pyw", ".cpy", ".gn", ".gyp", ".gypi" ], + "extensions": [ ".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi" ], "aliases": [ "Python", "py" ], "firstLine": "^#!/.*\\bpython[0-9.-]*\\b", "configuration": "./python.configuration.json"