-
Notifications
You must be signed in to change notification settings - Fork 35.9k
Closed
Labels
*out-of-scopePosted issue is not in scope of VS CodePosted issue is not in scope of VS CodeextensionsIssues concerning extensionsIssues concerning extensionsfeature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
- VSCode Version: 1.20.1
- OS Version: Windows 10
Steps to Reproduce: Add this events to an extension code:
export function activate(context: vscode.ExtensionContext) {
vscode.workspace.getConfiguration().update('test', 'some text', ConfigurationTarget.Workspace);
}
export function deactivate(context: vscode.ExtensionContext) {
vscode.workspace.getConfiguration().update('test', '', ConfigurationTarget.Workspace);
}
When it activates it updates but on deactivation it doesn't work. Im debugging and the code is running but with no effect. I also tried with ConfigurationTarget.Global.
akosyakov, jdoklovic, jbriggs22, luispDesktop, jgurbano and 9 more
Metadata
Metadata
Assignees
Labels
*out-of-scopePosted issue is not in scope of VS CodePosted issue is not in scope of VS CodeextensionsIssues concerning extensionsIssues concerning extensionsfeature-requestRequest for new features or functionalityRequest for new features or functionality