Skip to content

Commit f8fc0ea

Browse files
committed
Auto merge of rust-lang#12289 - rust-lang:Veykril-patch-1, r=Veykril
fix: Fix incorrect config key in client config update Closes rust-lang/rust-analyzer#12288
2 parents 3bbdb0d + d43b9da commit f8fc0ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export async function updateConfig(config: vscode.WorkspaceConfiguration) {
172172
["hoverActions.run", "hover.actions.run.enable",],
173173
["inlayHints.chainingHints", "inlayHints.chainingHints.enable",],
174174
["inlayHints.closureReturnTypeHints", "inlayHints.closureReturnTypeHints.enable",],
175-
["inlayHints.hideNamedConstructorHints", "inlayHints.typeHints.hideNamedConstructorHints",],
175+
["inlayHints.hideNamedConstructorHints", "inlayHints.typeHints.hideNamedConstructor",],
176176
["inlayHints.parameterHints", "inlayHints.parameterHints.enable",],
177177
["inlayHints.reborrowHints", "inlayHints.reborrowHints.enable",],
178178
["inlayHints.typeHints", "inlayHints.typeHints.enable",],

0 commit comments

Comments
 (0)