We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ab1a3 commit 5fc0db5Copy full SHA for 5fc0db5
plugin/core/protocol.py
@@ -104,6 +104,7 @@ class SemanticTokenTypes:
104
Number = "number"
105
Regexp = "regexp"
106
Operator = "operator"
107
+ Decorator = "decorator"
108
109
110
class SemanticTokenModifiers:
plugin/core/views.py
@@ -155,7 +155,8 @@
155
"string": "string.lsp",
156
"number": "constant.numeric.lsp",
157
"regexp": "string.regexp.lsp",
158
- "operator": "keyword.operator.lsp"
+ "operator": "keyword.operator.lsp",
159
+ "decorator": "variable.annotation.lsp",
160
}
161
162
0 commit comments