about summary refs log blame commit diff stats
path: root/atom/grammars/subx.json
blob: 8ba8c0770f32f7661acd3fe558d4c9adeb26d824 (plain) (tree)
1
2
3
4
5
6





                               












                                          


                          



                                   
















                                     
{
    "scopeName": "source.subx",
    "name": "SubX",
    "fileTypes": ["subx"],
    "patterns": [
        {
            "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-[^ ]*:"
        },
        {
            "name": "global.subx",
            "match": "^[A-Z][^ ]*:"
        },
        {
            "name": "function.subx",
            "match": "^[^_$ #][^ ]*:"
        },
        {
            "name": "label.subx",
            "match": "^[_$][^ ]*:"
        }
    ]
}