Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/MovementTest.VI.Multiline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void ViMoveToFirstLogicalLine_MustDing_ForSingleLine()
ViJumpMustDing(buffer, keys);
}

[Fact]
[SkippableFact]
public void ViMoveToFirstNonBlankOfLogicalLineThenJumpToEndOfLogicalLine()
{
TestSetup(KeyMode.Vi);
Expand All @@ -77,7 +77,7 @@ public void ViMoveToFirstNonBlankOfLogicalLineThenJumpToEndOfLogicalLine()
));
}

[Fact]
[SkippableFact]
public void ViMoveToFirstNonBlankOfLogicalLine_NoOp_OnEmptyLine()
{
TestSetup(KeyMode.Vi);
Expand All @@ -87,13 +87,13 @@ public void ViMoveToFirstNonBlankOfLogicalLine_NoOp_OnEmptyLine()
const string buffer = "\"\n\n\"";

Test(buffer, Keys(
_.DQuote, _.Enter, _.Enter, _.DQuote, _.Escape, _.K,
_.DQuote, _.Enter, _.Enter, _.DQuote, _.Escape, _.k,
CheckThat(() => AssertCursorLeftTopIs(continuationPrefixLength + 0, 1)),
_.Underbar, CheckThat(() => AssertCursorLeftTopIs(continuationPrefixLength + 0, 1))
));
}

[Fact]
[SkippableFact]
public void ViMoveToEndOfLine_NoOp_OnEmptyLine()
{
TestSetup(KeyMode.Vi);
Expand All @@ -103,7 +103,7 @@ public void ViMoveToEndOfLine_NoOp_OnEmptyLine()
const string buffer = "\"\n\n\"";

Test(buffer, Keys(
_.DQuote, _.Enter, _.Enter, _.DQuote, _.Escape, _.K,
_.DQuote, _.Enter, _.Enter, _.DQuote, _.Escape, _.k,
CheckThat(() => AssertCursorLeftTopIs(continuationPrefixLength + 0, 1)),
_.Dollar, CheckThat(() => AssertCursorLeftTopIs(continuationPrefixLength + 0, 1))
));
Expand Down