Skip to content

Commit b3048b8

Browse files
committed
make: From now on list all the scopes we use in misc/scopes
1 parent b59a8e3 commit b3048b8

File tree

2 files changed

+143
-0
lines changed

2 files changed

+143
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ release:
2222

2323
./node_modules/.bin/syntaxdev build-cson --in grammars/MagicPython.syntax.yaml --out grammars/MagicPython.cson
2424
./node_modules/.bin/syntaxdev build-cson --in grammars/MagicRegExp.syntax.yaml --out grammars/MagicRegExp.cson
25+
26+
./node_modules/.bin/syntaxdev scopes --syntax grammars/MagicPython.syntax.yaml > misc/scopes

misc/scopes

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
comment.line.number-sign.python
2+
comment.regexp
3+
constant.character.escape.regexp
4+
constant.character.format.python
5+
constant.character.python
6+
constant.character.set.regexp
7+
constant.character.unicode.regexp
8+
constant.language.python
9+
constant.numeric.bin.python
10+
constant.numeric.dec.python
11+
constant.numeric.float.python
12+
constant.numeric.hex.python
13+
constant.numeric.oct.python
14+
constant.numeric.python
15+
constant.other.caps.python
16+
constant.other.set.regexp
17+
entity.name.function.decorator.python
18+
entity.name.function.python
19+
entity.name.tag.backreference.regexp
20+
entity.name.tag.named.backreference.regexp
21+
entity.name.tag.named.group.regexp
22+
entity.name.type.class.python
23+
entity.other.inherited-class.python
24+
invalid.deprecated.backtick.python
25+
invalid.deprecated.prefix.python
26+
invalid.illegal.annotation.python
27+
invalid.illegal.character.python
28+
invalid.illegal.dec.python
29+
invalid.illegal.decorator.python
30+
invalid.illegal.line.continuation.python
31+
invalid.illegal.name.python
32+
invalid.illegal.newline.python
33+
invalid.illegal.prefix.python
34+
keyword.codetag.notation.python
35+
keyword.control.flow.python
36+
keyword.invalid.illegal.name.python
37+
keyword.operator.assignment.python
38+
keyword.operator.conditional.negative.regexp
39+
keyword.operator.conditional.regexp
40+
keyword.operator.disjunction.regexp
41+
keyword.operator.lookahead.negative.regexp
42+
keyword.operator.lookahead.regexp
43+
keyword.operator.lookbehind.negative.regexp
44+
keyword.operator.lookbehind.regexp
45+
keyword.operator.negation.regexp
46+
keyword.operator.python
47+
keyword.operator.quantifier.regexp
48+
meta.backreference.named.regexp
49+
meta.backreference.regexp
50+
meta.character.set.regexp
51+
meta.class.inheritance.python
52+
meta.class.python
53+
meta.expression.python
54+
meta.function-call.arguments.python
55+
meta.function-call.python
56+
meta.function.decorator.python
57+
meta.function.parameters.python
58+
meta.function.python
59+
meta.item-access.python
60+
meta.lambda-function.python
61+
meta.named.regexp
62+
punctuation.character.set.begin.regexp
63+
punctuation.character.set.end.regexp
64+
punctuation.comments.begin.regexp
65+
punctuation.comments.end.regexp
66+
punctuation.definition.arguments.begin.python
67+
punctuation.definition.arguments.end.python
68+
punctuation.definition.comment.python
69+
punctuation.definition.dict.begin.python
70+
punctuation.definition.dict.end.python
71+
punctuation.definition.inheritance.begin.python
72+
punctuation.definition.inheritance.end.python
73+
punctuation.definition.list.begin.python
74+
punctuation.definition.list.end.python
75+
punctuation.definition.parameters.begin.python
76+
punctuation.definition.parameters.end.python
77+
punctuation.definition.string.begin.python
78+
punctuation.definition.string.end.python
79+
punctuation.parenthesis.backreference.named.begin.regexp
80+
punctuation.parenthesis.backreference.named.end.regexp
81+
punctuation.parenthesis.begin.python
82+
punctuation.parenthesis.begin.regexp
83+
punctuation.parenthesis.conditional.begin.regexp
84+
punctuation.parenthesis.conditional.end.regexp
85+
punctuation.parenthesis.end.python
86+
punctuation.parenthesis.end.regexp
87+
punctuation.parenthesis.lookahead.begin.regexp
88+
punctuation.parenthesis.lookahead.end.regexp
89+
punctuation.parenthesis.lookbehind.begin.regexp
90+
punctuation.parenthesis.lookbehind.end.regexp
91+
punctuation.parenthesis.named.begin.regexp
92+
punctuation.parenthesis.named.end.regexp
93+
punctuation.parenthesis.non-capturing.begin.regexp
94+
punctuation.parenthesis.non-capturing.end.regexp
95+
punctuation.section.class.begin.python
96+
punctuation.section.function.begin.python
97+
punctuation.section.function.lambda.begin.python
98+
punctuation.separator.annotation.python
99+
punctuation.separator.annotation.result.python
100+
punctuation.separator.arguments.python
101+
punctuation.separator.inheritance.python
102+
punctuation.separator.parameters.python
103+
separator.continuation.line.python
104+
storage.modifier.declaration.python
105+
storage.modifier.flag.regexp
106+
storage.type.class.python
107+
storage.type.format.python
108+
storage.type.function.async.python
109+
storage.type.function.lambda.python
110+
storage.type.function.python
111+
storage.type.imaginary.number.python
112+
storage.type.number.python
113+
storage.type.string.python
114+
string.quoted.binary.multi.python
115+
string.quoted.binary.single.python
116+
string.quoted.docstring.multi.python
117+
string.quoted.docstring.python
118+
string.quoted.docstring.raw.multi.python
119+
string.quoted.docstring.raw.python
120+
string.quoted.multi.python
121+
string.quoted.raw.binary.multi.python
122+
string.quoted.raw.binary.single.python
123+
string.quoted.raw.multi.python
124+
string.quoted.raw.single.python
125+
string.quoted.single.python
126+
string.regexp.quoted.python
127+
string.regexp.quoted.triple.python
128+
support.function.builtin.python
129+
support.function.magic.python
130+
support.other.escape.special.regexp
131+
support.other.format.python
132+
support.other.match.any.regexp
133+
support.other.match.begin.regexp
134+
support.other.match.end.regexp
135+
support.other.parenthesis.regexp
136+
support.type.exception.python
137+
support.type.metaclass.python
138+
support.type.python
139+
support.variable.magic.python
140+
variable.parameter.function-call.python
141+
variable.parameter.function.language.python

0 commit comments

Comments
 (0)