diff --git a/package-lock.json b/package-lock.json index 9eb8185..de6d00e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "amalgam-lang", - "version": "2.2.0", + "version": "2.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "amalgam-lang", - "version": "2.2.0", + "version": "2.2.1", "license": "AGPL-3.0-only", "dependencies": { "@vscode/debugadapter": "^1.59.0", diff --git a/package.json b/package.json index 22da0e6..be0abd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amalgam-lang", - "version": "2.2.0", + "version": "2.2.1", "type": "commonjs", "publisher": "howso", "displayName": "Amalgam Language", diff --git a/syntaxes/amalgam.tmLanguage.json b/syntaxes/amalgam.tmLanguage.json index 4ad3a4c..8e3cb57 100644 --- a/syntaxes/amalgam.tmLanguage.json +++ b/syntaxes/amalgam.tmLanguage.json @@ -11,13 +11,13 @@ "keyEquivalent": "^~L", "patterns": [ { - "name": "punctuation.definition.comment.amalgam", + "name": "comment.line.semicolon.amalgam", "begin": ";", "end": "$", "patterns": [ { "match": "\\b(TODO|FIXME|NOTE)\\b", - "name": "markup.quote.note.amalgam" + "name": "keyword.codetag.notation.amalgam" } ] }, diff --git a/themes/amalgamLight.json b/themes/amalgamLight.json index 8d6286a..29b872d 100644 --- a/themes/amalgamLight.json +++ b/themes/amalgamLight.json @@ -219,12 +219,23 @@ { "name": "@mono-3", "scope": [ + "comment.line.semicolon", "comment.markup.link", "punctuation.definition.comment" ], "settings": { "foreground": "#5C636F" } + }, + { + "name": "@mono-4", + "scope": [ + "keyword.codetag.notation" + ], + "settings": { + "foreground": "#0000FF", + "fontStyle": "italic" + } } ] }