mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-17 02:08:30 +00:00
Merge #2706
2706: Fix color name r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
1327aed7f6
2 changed files with 2 additions and 2 deletions
|
@ -312,7 +312,7 @@
|
|||
],
|
||||
"colors": [
|
||||
{
|
||||
"id": "rust-analyzer.inlayHint",
|
||||
"id": "rust_analyzer.inlayHint",
|
||||
"description": "Color for inlay hints",
|
||||
"defaults": {
|
||||
"dark": "#A0A0A0F0",
|
||||
|
|
|
@ -36,7 +36,7 @@ interface InlayHint {
|
|||
|
||||
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
|
||||
after: {
|
||||
color: new vscode.ThemeColor('rust-analyzer.inlayHint'),
|
||||
color: new vscode.ThemeColor('rust_analyzer.inlayHint'),
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue