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:
authorSandy Armstrong <sandy@xamarin.com>2019-08-29 23:20:49 +0300
committerSandy Armstrong <sandy@xamarin.com>2019-08-29 23:20:49 +0300
commit93e3c4b719d9dd2abda1117da7c8658b83543f25 (patch)
tree83a9fbe7add2b998e03b4b94f856ee3ff519fc7d
parentcc54ccf435221210660b51f0f9ca49c0c99407fa (diff)
Sync with vs-editor-core@4d02fdddf
-rw-r--r--src/Editor/Text/Impl/EditorOperations/EditorOperations.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Editor/Text/Impl/EditorOperations/EditorOperations.cs b/src/Editor/Text/Impl/EditorOperations/EditorOperations.cs
index 2791b72..3b44210 100644
--- a/src/Editor/Text/Impl/EditorOperations/EditorOperations.cs
+++ b/src/Editor/Text/Impl/EditorOperations/EditorOperations.cs
@@ -5255,9 +5255,9 @@ namespace Microsoft.VisualStudio.Text.Operations.Implementation
// lines themsleves (unlike in JoinSelectedLines),
// so this is much nicer!
var l = string.Concat(text);
- var span = Span.FromBounds(lines.First().Start, lines.Last().End);
+ var span2 = Span.FromBounds(lines.First().Start, lines.Last().End);
- return ReplaceHelper(span, l);
+ return ReplaceHelper(span2, l);
}, SelectionUpdate.Ignore, true);
});
}
@@ -5343,9 +5343,9 @@ namespace Microsoft.VisualStudio.Text.Operations.Implementation
// moved the starting point, to match the first non-whitespace
// character, so we can just create a new span which will
// be used for replacing
- var span = Span.FromBounds(startPosition,
+ var span2 = Span.FromBounds(startPosition,
lastLine.EndIncludingLineBreak.Position);
- return ReplaceHelper(span, newLine);
+ return ReplaceHelper(span2, newLine);
}, SelectionUpdate.Ignore, true);
});
}