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 4e06f1d commit f1c940aCopy full SHA for f1c940a
src/extension.ts
@@ -209,7 +209,11 @@ 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, vscode.ConfigurationTarget.Global);
+ config.update(
213
+ "sourcery.codeLens",
214
+ !currentValue,
215
+ vscode.ConfigurationTarget.Global
216
+ );
217
})
218
);
219
0 commit comments