diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-04-05 14:46:07 +0200 |
|---|---|---|
| committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-04-06 09:57:50 +0200 |
| commit | 48bc0ca745a0ebdd61b7db3935582bf5ec95042b (patch) | |
| tree | 2a9f6b1f5a9995c3bddf7a1ef829cb6890413b7d /editors/code | |
| parent | 6207ac90da7e607218457bf872fa32df6b78f224 (diff) | |
| download | rust-48bc0ca745a0ebdd61b7db3935582bf5ec95042b.tar.gz rust-48bc0ca745a0ebdd61b7db3935582bf5ec95042b.zip | |
Make control token modifier less ambiguous
In textmate, keyword.control is used for all kinds of things; in fact, the default scope mapping for keyword is keyword.control! So let's add a less ambiguous controlFlow modifier See Microsoft/vscode#94367
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/package.json | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 595d6e378c1..8ca8c76cce4 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -512,7 +512,7 @@ "description": "Style for compile-time constants" }, { - "id": "control", + "id": "controlFlow", "description": "Style for control flow keywords" }, { @@ -546,9 +546,6 @@ "keyword.unsafe": [ "keyword.other.unsafe" ], - "keyword.control": [ - "keyword.control" - ], "variable.constant": [ "entity.name.constant" ] |
