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

BraceCompletionEnabledOption.cs « BraceCompletion « Impl « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b36dd5f31500afc359b7ef3ca41ccd8c2100fc82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain implementations details that are subject to change without notice.
// Use at your own risk.
//
namespace Microsoft.VisualStudio.Text.BraceCompletion.Implementation
{
    using Microsoft.VisualStudio.Text.Editor;
    using Microsoft.VisualStudio.Utilities;
    using System.ComponentModel.Composition;

    [Export(typeof(EditorOptionDefinition))]
    [Name(DefaultTextViewOptions.BraceCompletionEnabledOptionName)]
    public sealed class BraceCompletionEnabledOption : EditorOptionDefinition<bool>
    {
        public override EditorOptionKey<bool> Key { get { return DefaultTextViewOptions.BraceCompletionEnabledOptionId; } }
        public override bool Default { get { return true; } }
    }
}