From 117d6dbdc85452f3d93624496df6a4d430898bce Mon Sep 17 00:00:00 2001 From: Reynauld van Rooyen Date: Fri, 28 Apr 2023 09:08:29 +0200 Subject: [PATCH] * Fix for issue https://github.com/Milys/NC-Gcode-VSCode/issues/12 - ; comments improperly formatting --- gcode.tmLanguage.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcode.tmLanguage.json b/gcode.tmLanguage.json index cd2734d..69b35c1 100644 --- a/gcode.tmLanguage.json +++ b/gcode.tmLanguage.json @@ -33,6 +33,10 @@ "name": "comment.type.ycode.gcode", "match": "(?i)[YBVJ][ \\t]*[\\-\\+]?[0-9\\.]+" }, + { + "name": "comment.line.gcode", + "match": ";.*" + }, { "name": "support.function.mcode.gcode", "match": "[mM][ \\t]*[0-9][0-9\\.]*"