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

GoToDefinitionCommandArgs.cs « Commands « Commanding « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5df4e954e0909cb7da75435951ff23671221268 (plain)
1
2
3
4
5
6
7
8
9
namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
{
    public sealed class GoToDefinitionCommandArgs : EditorCommandArgs
    {
        public GoToDefinitionCommandArgs(ITextView textView, ITextBuffer subjectBuffer) : base(textView, subjectBuffer)
        {
        }
    }
}