mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Fix color name
This commit is contained in:
parent
6896ffab60
commit
0eb254854d
2 changed files with 2 additions and 2 deletions
|
@ -312,7 +312,7 @@
|
||||||
],
|
],
|
||||||
"colors": [
|
"colors": [
|
||||||
{
|
{
|
||||||
"id": "rust-analyzer.inlayHint",
|
"id": "rust_analyzer.inlayHint",
|
||||||
"description": "Color for inlay hints",
|
"description": "Color for inlay hints",
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"dark": "#A0A0A0F0",
|
"dark": "#A0A0A0F0",
|
||||||
|
|
|
@ -36,7 +36,7 @@ interface InlayHint {
|
||||||
|
|
||||||
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
|
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
|
||||||
after: {
|
after: {
|
||||||
color: new vscode.ThemeColor('rust-analyzer.inlayHint'),
|
color: new vscode.ThemeColor('rust_analyzer.inlayHint'),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue