diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2022-05-17 14:56:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-17 14:56:08 +0200 |
| commit | d43b9dae5660aba0d18b2499c40af9dbb6bef571 (patch) | |
| tree | e1ece5728d99abe254bb91ad65628711ae933f92 | |
| parent | 3bbdb0dbb6348cfabab8802883e47ad82c1719ff (diff) | |
| download | rust-d43b9dae5660aba0d18b2499c40af9dbb6bef571.tar.gz rust-d43b9dae5660aba0d18b2499c40af9dbb6bef571.zip | |
Fix incorrect config key in client config update
Closes https://github.com/rust-lang/rust-analyzer/issues/12288
| -rw-r--r-- | editors/code/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 952a88acff7..9837fd16f57 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -172,7 +172,7 @@ export async function updateConfig(config: vscode.WorkspaceConfiguration) { ["hoverActions.run", "hover.actions.run.enable",], ["inlayHints.chainingHints", "inlayHints.chainingHints.enable",], ["inlayHints.closureReturnTypeHints", "inlayHints.closureReturnTypeHints.enable",], - ["inlayHints.hideNamedConstructorHints", "inlayHints.typeHints.hideNamedConstructorHints",], + ["inlayHints.hideNamedConstructorHints", "inlayHints.typeHints.hideNamedConstructor",], ["inlayHints.parameterHints", "inlayHints.parameterHints.enable",], ["inlayHints.reborrowHints", "inlayHints.reborrowHints.enable",], ["inlayHints.typeHints", "inlayHints.typeHints.enable",], |
