mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode a416c77e56ef0314ae00633faa04878151610de8 (#8600)
* Merge from vscode a416c77e56ef0314ae00633faa04878151610de8 * distro * fix tests * fix tests
This commit is contained in:
@@ -263,6 +263,13 @@ function migrateOptions(options: IEditorOptions): void {
|
||||
} else if (<any>autoIndent === false) {
|
||||
options.autoIndent = 'advanced';
|
||||
}
|
||||
|
||||
const matchBrackets = options.matchBrackets;
|
||||
if (<any>matchBrackets === true) {
|
||||
options.matchBrackets = 'always';
|
||||
} else if (<any>matchBrackets === false) {
|
||||
options.matchBrackets = 'never';
|
||||
}
|
||||
}
|
||||
|
||||
function deepCloneAndMigrateOptions(_options: IEditorOptions): IEditorOptions {
|
||||
|
||||
Reference in New Issue
Block a user