81cd86798429 — Leonard Ritter 1 year, 2 months ago
* fixed prefix string parsing
4 files changed, 19 insertions(+), 2 deletions(-)

A => .vscode/launch.json
M README.md
M package.json
M syntaxes/scopes.tmLanguage.json
A => .vscode/launch.json +13 -0
@@ 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

          
M README.md +4 -0
@@ 8,6 8,10 @@ This is an early release. Right now, onl
 
 ## Release Notes
 
+### 0.47.0
+
+* Fixed string prefix parsing.
+
 ### 0.46.0
 
 * Updated extension for Scopes 0.16

          
M package.json +1 -1
@@ 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"

          
M syntaxes/scopes.tmLanguage.json +1 -1
@@ 176,7 176,7 @@ 
 		"symbol": {
 			"patterns": [
 				{
-					"match": "([^\\s\\(\\)\\[\\]\\{\\}\\,\\;\\#]+)",
+					"match": "([^\\\"\\s\\(\\)\\[\\]\\{\\}\\,\\;\\#]+)",
 					"name": "meta.symbol.scopes"
 				}
 			]