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

PreviewEditorCommandArgs.cs « Extras « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcb173dae7a88b7268805568addb45a58dbb649e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
{
    public sealed class ProvideEditorFeedbackCommandArgs : EditorCommandArgs
    {
        public ProvideEditorFeedbackCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }

    public sealed class DisableEditorPreviewCommandArgs : EditorCommandArgs
    {
        public DisableEditorPreviewCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }

    public sealed class LearnAboutTheEditorCommandArgs : EditorCommandArgs
    {
        public LearnAboutTheEditorCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }
}