Auto merge of #12006 - lnicola:toggle-inlay-hints, r=lnicola

fix: Remove old inlay hints settings

Closes #11998
This commit is contained in:
bors 2022-04-16 05:10:17 +00:00
commit 66c232d03b
3 changed files with 8 additions and 21 deletions

View File

@ -797,8 +797,8 @@ For example:
[source,json] [source,json]
---- ----
{ {
"key": "ctrl+i", "key": "ctrl+alt+d",
"command": "rust-analyzer.toggleInlayHints", "command": "rust-analyzer.openDocs",
"when": "inRustProject" "when": "inRustProject"
} }
---- ----

View File

@ -298,12 +298,12 @@ export function serverVersion(ctx: Ctx): Cmd {
}; };
} }
export function toggleInlayHints(ctx: Ctx): Cmd { export function toggleInlayHints(_ctx: Ctx): Cmd {
return async () => { return async () => {
await vscode const scope = vscode.ConfigurationTarget.Global;
.workspace const config = vscode.workspace.getConfiguration("editor.inlayHints");
.getConfiguration(`${ctx.config.rootSection}.inlayHints`) const value = !config.get("enabled");
.update('enable', !ctx.config.inlayHints.enable, vscode.ConfigurationTarget.Global); await config.update('enabled', value, scope);
}; };
} }

View File

@ -97,19 +97,6 @@ export class Config {
get serverExtraEnv() { return this.get<Env | null>("server.extraEnv") ?? {}; } get serverExtraEnv() { return this.get<Env | null>("server.extraEnv") ?? {}; }
get traceExtension() { return this.get<boolean>("trace.extension"); } get traceExtension() { return this.get<boolean>("trace.extension"); }
get inlayHints() {
return {
enable: this.get<boolean>("inlayHints.enable"),
typeHints: this.get<boolean>("inlayHints.typeHints"),
parameterHints: this.get<boolean>("inlayHints.parameterHints"),
chainingHints: this.get<boolean>("inlayHints.chainingHints"),
closureReturnTypeHints: this.get<boolean>("inlayHints.closureReturnTypeHints"),
hideNamedConstructorHints: this.get<boolean>("inlayHints.hideNamedConstructorHints"),
smallerHints: this.get<boolean>("inlayHints.smallerHints"),
maxLength: this.get<null | number>("inlayHints.maxLength"),
};
}
get cargoRunner() { get cargoRunner() {
return this.get<string | undefined>("cargoRunner"); return this.get<string | undefined>("cargoRunner");
} }