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

IGoToLinePresenterFactory.cs « GoToLine « Extras « TextUICocoa « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f64ad6fe5bbfa352ea744ee6a1fb745ee014c90d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//

using Microsoft.VisualStudio.Text.Editor;

namespace Microsoft.VisualStudio.Text.Extras.GoToLine
{
    public interface IGoToLinePresenterFactory
    {
        bool TryGetGoToLinePresenter(ITextView textView, out IGoToLinePresenter goToLinePresenter);
    }
}