forked from tunnelsup/sublime-cisco-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cisco Definitions.json-tmLanguage
125 lines (103 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"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": "^[\\s]*!(.*)",
"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+(/\\d{1,2})?",
"name": "constant.numeric.cisco"
},
{ "match": "[0-9a-fA-F]{0,4}:([0-9a-fA-F]{0,4}:)+[0-9a-fA-F]{0,4}(/\\d{1,3})?",
"name": "constant.numeric.cisco"
}
],
"name": "HPE Aruba",
"scopeName": "text.hpe-aruba",
"fileTypes": ["pcc","config"],
"patterns": [
{ "match": "^\\s*no ",
"name": "invalid.illegal.hpe-aruba"
},
{ "match": "access-list",
"name": "support.function.hpe-aruba"
},
{ "match": "crypto ",
"name": "string.unquoted.hpe-aruba"
},
{ "match": "any",
"name": "string.unquoted.hpe-aruba"
},
{ "match": "deny ",
"name": "support.constant.hpe-aruba"
},
{ "match": "permit ",
"name": "constant.character.escape.hpe-aruba"
},
{ "match": "object-group",
"name": "markup.list.hpe-aruba"
},
{ "match": "object",
"name": "markup.list.hpe-aruba"
},
{ "match": "host",
"name": "markup.list.hpe-aruba"
},
{ "match": "^[\\s]*!(.*)",
"name": "comment.hpe-aruba"
},
{ "match": "static",
"name": "constant.numeric.hpe-aruba"
},
{ "match": "tunnel-group",
"name": "support.class.hpe-aruba"
},
{ "match": "crypto",
"name": "support.class.hpe-aruba"
},
{ "match": "\\d+\\.\\d+\\.\\d+\\.\\d+(/\\d{1,2})?",
"name": "constant.numeric.hpe-aruba"
},
{ "match": "[0-9a-fA-F]{0,4}:([0-9a-fA-F]{0,4}:)+[0-9a-fA-F]{0,4}(/\\d{1,3})?",
"name": "constant.numeric.hpe-aruba"
}
],
"uuid": "f3ba50f0-2bad-48b7-9509-f6d72e353ddb"
}