forked from tunnelsup/sublime-cisco-syntax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cisco Definitions.json-tmLanguage
64 lines (52 loc) · 1.12 KB
/
Cisco Definitions.json-tmLanguage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ "name": "Cisco",
"scopeName": "text.cisco",
"fileTypes": ["cfg","txt"],
"patterns": [
{ "match": "^\\s*no ",
"name": "invalid.illegal.cisco"
},
{ "match": "access-list",
"name": "support.function.cisco"
},
{ "match": "crypto ",
"name": "string.unquoted.cisco"
},
{ "match": "any",
"name": "string.unquoted.cisco"
},
{ "match": "deny ",
"name": "support.constant.cisco"
},
{ "match": "permit ",
"name": "constant.character.escape.cisco"
},
{ "match": "object-group",
"name": "markup.list.cisco"
},
{ "match": "object",
"name": "markup.list.cisco"
},
{ "match": "host",
"name": "markup.list.cisco"
},
{ "match": "!(.*)",
"name": "comment.cisco"
},
{ "match": "static",
"name": "constant.numeric.cisco"
},
{ "match": "tunnel-group",
"name": "support.class.cisco"
},
{ "match": "crypto",
"name": "support.class.cisco"
},
{ "match": "\\d+\\.\\d+\\.\\d+\\.\\d+",
"name": "constant.numeric.cisco"
},
{ "match": "[0-9a-fA-F]{0,4}:([0-9a-fA-F]{0,4}:)+[0-9a-fA-F]{0,4}",
"name": "constant.numeric.cisco"
}
],
"uuid": "f3ba50f0-2bad-48b7-9509-f6d72e353ddb"
}