# HG changeset patch # User Leonard Ritter # Date 1649000328 -7200 # Sun Apr 03 17:38:48 2022 +0200 # Node ID 81cd8679842979777903f811f676ccff97f50c75 # Parent 0f8ab287b485985d6805a073ee982926cf6d48ea * fixed prefix string parsing diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +// A launch configuration that launches the extension inside a new window +{ + "version": "0.1.0", + "configurations": [ + { + "name": "Launch Extension", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": ["--extensionDevelopmentPath=${workspaceRoot}" ] + } + ] +} \ No newline at end of file diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ ## Release Notes +### 0.47.0 + +* Fixed string prefix parsing. + ### 0.46.0 * Updated extension for Scopes 0.16 diff --git a/package.json b/package.json --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "scopes", "displayName": "Scopes", "description": "Language support for Scopes", - "version": "0.46.0", + "version": "0.47.0", "publisher": "duangle", "engines": { "vscode": "^1.13.0" diff --git a/syntaxes/scopes.tmLanguage.json b/syntaxes/scopes.tmLanguage.json --- a/syntaxes/scopes.tmLanguage.json +++ b/syntaxes/scopes.tmLanguage.json @@ -176,7 +176,7 @@ "symbol": { "patterns": [ { - "match": "([^\\s\\(\\)\\[\\]\\{\\}\\,\\;\\#]+)", + "match": "([^\\\"\\s\\(\\)\\[\\]\\{\\}\\,\\;\\#]+)", "name": "meta.symbol.scopes" } ]