-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax highlight.txt
152 lines (134 loc) · 4.75 KB
/
syntax highlight.txt
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
tm sc
comment.line.number-sign.python
constant.language.python
constant.numeric.complex.python
constant.numeric.float.python
constant.numeric.integer.decimal.python
constant.numeric.integer.hexadecimal.python
constant.numeric.integer.long.decimal.python
constant.numeric.integer.long.hexadecimal.python
constant.numeric.integer.long.octal.python
constant.numeric.integer.octal.python
entity.name.function.decorator.python
entity.name.type.class.python
invalid.deprecated.operator.python
invalid.illegal.missing-inheritance.python
invalid.illegal.missing-parameters.python
invalid.illegal.missing-section-begin.python
keyword.control.flow.python
keyword.control.import.from.python
keyword.control.import.python
keyword.operator.arithmetic.python
keyword.operator.assignment.augmented.python
keyword.operator.assignment.python
keyword.operator.comparison.python
keyword.operator.logical.python
keyword.other.python
meta.class.old-style.python
meta.class.python
meta.empty-dictionary.python
meta.empty-list.python
meta.empty-tuple.python
meta.function-call.arguments.python
meta.function-call.python
meta.function.decorator.python
meta.function.inline.python
meta.function.python
meta.item-access.arguments.python
meta.item-access.python
meta.structure.dictionary.python
meta.structure.list.python
meta.structure.tuple.python
punctuation.definition.arguments.begin.python
punctuation.definition.arguments.end.python
punctuation.definition.comment.python
punctuation.definition.dictionary.begin.python
punctuation.definition.dictionary.end.python
punctuation.definition.inheritance.begin.python
punctuation.definition.inheritance.end.python
punctuation.definition.list.begin.python
punctuation.definition.list.end.python
punctuation.definition.parameters.begin.python
punctuation.definition.parameters.end.python
punctuation.definition.tuple.begin.python
punctuation.definition.tuple.end.python
punctuation.section.class.begin.python
punctuation.section.function.begin.python
storage.modifier.global.python
storage.type.class.python
storage.type.function.inline.python
storage.type.function.python
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.associations": {
"typings": "typescript",
"static": "resource",
"static_cdn": "resource",
"static_root": "resource",
"media": "video",
"media_cdn": "video",
"media_root": "video",
"templates": "jinja",
"utilities": "tools",
"utils": "tools",
".mypy_cache": "circleci",
".cache": "circleci",
"__pycache__": "circleci",
".idea": "circleci",
},
"python.linting.pylintEnabled": false,
"python.linting.mypyEnabled": true,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pep8Enabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.lintOnSave": true,
"editor.fontSize": 16,
"workbench.colorTheme": "Chromodynamics",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
"[python]": {
},
"material-icon-theme.activeIconPack": "react_redux",
"editor.tokenColorCustomizations": {
"comments": {
"foreground": "#707270"
},
"textMateRules": [{
"scope": "entity.name.function",
"settings": {
"foreground": "#2ee22e"
}
},
{
"scope": "meta.function-call.python",
"settings": {
"foreground": "#e22ed9"
}
},
{
"scope": "meta.function-call.arguments.python",
"settings": {
"foreground": "#312ee2"
}
},
{
"scope": "meta.empty-tuple.python",
"settings": {
"foreground": "#e22ed9"
}
},
{
"scope": "meta.empty-list.python",
"settings": {
"foreground": "#312ee2"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#A6E22E",
"fontStyle": "underline"
}
}]
},