We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 839dccd commit 4e06f1dCopy full SHA for 4e06f1d
src/extension.ts
@@ -209,7 +209,7 @@ function registerCommands(
209
commands.registerCommand("sourcery.chat.toggleCodeLens", () => {
210
const config = vscode.workspace.getConfiguration();
211
const currentValue = config.get("sourcery.codeLens");
212
- config.update("sourcery.codeLens", !currentValue);
+ config.update("sourcery.codeLens", !currentValue, vscode.ConfigurationTarget.Global);
213
})
214
);
215
0 commit comments