diff --git a/src/commands/index.ts b/src/commands/index.ts index 5e877b027..12501b405 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -205,7 +205,7 @@ export function registerCommands (): void { } for (const [ key, value ] of Object.entries(settings)) { - await vscode.workspace.getConfiguration().update(key, value); + await vscode.workspace.getConfiguration().update(key, value, true); } });