Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts')
-rw-r--r--src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts b/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts
index 4a69955fd4a..c4ec1bbf5e3 100644
--- a/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts
+++ b/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.ts
@@ -24,6 +24,7 @@ import { ICommentThreadWidget } from 'vs/workbench/contrib/comments/common/comme
import { CommentContextKeys } from 'vs/workbench/contrib/comments/common/commentContextKeys';
import { ILanguageConfigurationService } from 'vs/editor/common/languages/languageConfigurationRegistry';
import { ILanguageFeaturesService } from 'vs/editor/common/services/languageFeatures';
+import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
export const ctxCommentEditorFocused = new RawContextKey<boolean>('commentEditorFocused', false);
@@ -79,7 +80,7 @@ export class SimpleCommentEditor extends CodeEditorWidget {
return EditorExtensionsRegistry.getEditorActions();
}
- public static getEditorOptions(): IEditorOptions {
+ public static getEditorOptions(configurationService: IConfigurationService): IEditorOptions {
return {
wordWrap: 'on',
glyphMargin: false,
@@ -103,6 +104,7 @@ export class SimpleCommentEditor extends CodeEditorWidget {
minimap: {
enabled: false
},
+ autoClosingBrackets: configurationService.getValue('editor.autoClosingBrackets'),
quickSuggestions: false
};
}