about summary refs log tree commit diff stats
path: root/atom/grammars/subx.json
diff options
context:
space:
mode:
Diffstat (limited to 'atom/grammars/subx.json')
-rw-r--r--atom/grammars/subx.json18
1 files changed, 17 insertions, 1 deletions
diff --git a/atom/grammars/subx.json b/atom/grammars/subx.json
index d75ddda6..8ba8c077 100644
--- a/atom/grammars/subx.json
+++ b/atom/grammars/subx.json
@@ -4,10 +4,26 @@
     "fileTypes": ["subx"],
     "patterns": [
         {
-            "name": "comment.line.subx",
+            "name": "header-comment.subx",
+            "match": "# - .*"
+        },
+        {
+            "name": "comment-sub-2.subx",
+            "match": "# \\. \\. .*"
+        },
+        {
+            "name": "comment-sub-1.subx",
+            "match": "# \\. .*"
+        },
+        {
+            "name": "comment.subx",
             "match": "#.*"
         },
         {
+            "name": "strings.subx",
+            "match": "\"[^\"]*\""
+        },
+        {
             "name": "test.subx",
             "match": "^test-[^ ]*:"
         },