mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-13 10:17:02 +03:00
fix(prettier)
This commit is contained in:
parent
72067735ce
commit
2059ba86f5
@ -37,7 +37,6 @@ const packagejson: {
|
||||
};
|
||||
} = require('../package.json'); // out/../package.json
|
||||
|
||||
|
||||
let extensionContext: vscode.ExtensionContext;
|
||||
|
||||
/**
|
||||
|
@ -370,7 +370,9 @@ function overlapSetting(args: {
|
||||
codeValue = args.codeValueMapping[value];
|
||||
}
|
||||
|
||||
await vscode.workspace.getConfiguration('editor').update(args.codeName, codeValue, vscode.ConfigurationTarget.Global);
|
||||
await vscode.workspace
|
||||
.getConfiguration('editor')
|
||||
.update(args.codeName, codeValue, vscode.ConfigurationTarget.Global);
|
||||
}, 'config');
|
||||
},
|
||||
enumerable: true,
|
||||
|
@ -28,4 +28,4 @@ export class EditorIdentity {
|
||||
public toString() {
|
||||
return this.fileName + this.viewColumn;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user