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

ISuggestionTag.cs « TextUIWpf « Internal « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9cbd516b2e1025091227016ca5a298ea5384e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  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 internal APIs that are subject to change without notice.
// Use at your own risk.
//
using Microsoft.VisualStudio.Text.Tagging;

namespace Microsoft.VisualStudio.Text.Editor
{
    /// <summary>
    /// Represents a suggestion tag, which is consumed by the suggestion margin
    /// to place suggestion visual element such as a Light Bulb.
    /// </summary>
    public interface ISuggestionTag : ITag
    {
    }
}