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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs')
-rw-r--r--src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs b/src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs
index e3c0727..41c4722 100644
--- a/src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs
+++ b/src/Editor/Text/Def/TextUICocoa/Extras/GoToLine/GoToLineCommandArgs.cs
@@ -11,21 +11,24 @@ namespace Microsoft.VisualStudio.Text.Extras.GoToLine
public class GoToLineCommandArgs : EditorCommandArgs
{
public int? LineNumber { get; private set; }
+ public int? ColumnNumber { get; private set; }
public GoToLineCommandArgs(
ITextView textView,
ITextBuffer subjectBuffer)
- : this(textView, subjectBuffer, null)
+ : this(textView, subjectBuffer, null, null)
{
}
public GoToLineCommandArgs(
ITextView textView,
ITextBuffer subjectBuffer,
- int? lineNumber)
+ int? lineNumber,
+ int? columnNumber)
: base(textView, subjectBuffer)
{
LineNumber = lineNumber;
+ ColumnNumber = columnNumber;
}
}
} \ No newline at end of file