Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 38 |
1 files changed, 33 insertions, 5 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 3fb001cb44..c387e72a0c 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -1935,6 +1935,11 @@ "description": "Style for const generics" }, { + "id": "const", + "description": "Style for consts", + "superType": "variable" + }, + { "id": "derive", "description": "Style for derives", "superType": "attribute" @@ -1980,20 +1985,25 @@ "superType": "punctuation" }, { - "id": "operator", - "description": "Style for operators", - "superType": "punctuation" - }, - { "id": "parenthesis", "description": "Style for ( or )", "superType": "punctuation" }, { + "id": "procMacro", + "description": "Style for proc macro code", + "superType": "macro" + }, + { "id": "punctuation", "description": "Style for generic punctuation" }, { + "id": "operator", + "description": "Style for operators", + "superType": "punctuation" + }, + { "id": "selfKeyword", "description": "Style for the self keyword", "superType": "keyword" @@ -2009,6 +2019,16 @@ "superType": "punctuation" }, { + "id": "static", + "description": "Style for statics", + "superType": "variable" + }, + { + "id": "toolModule", + "description": "Style for tool module attributes", + "superType": "decorator" + }, + { "id": "typeAlias", "description": "Style for type aliases", "superType": "type" @@ -2065,10 +2085,18 @@ "description": "Style for items that are defined outside of the current crate" }, { + "id": "macro", + "description": "Style for tokens inside of macro calls" + }, + { "id": "mutable", "description": "Style for mutable locals and statics as well as functions taking `&mut self`" }, { + "id": "procMacro", + "description": "Style for tokens inside of proc-macro calls" + }, + { "id": "public", "description": "Style for items that are from the current crate and are `pub`" }, |