diff --git a/features/mark-more.feature b/features/mark-more.feature index 189b22c..c8cd3ff 100644 --- a/features/mark-more.feature +++ b/features/mark-more.feature @@ -94,3 +94,22 @@ Feature: Marking multiple parts of the buffer And I type "more" Then I should have 2 cursors And I should see "Here's more, more and text" + + Scenario: Marking without an active region + When I insert: + """ + aaa + bbb + ccc + """ + And I go to the front of the word "bbb" + And I press "C->" + And I type "_" + Then I should have 2 cursors + And I should see: + """ + aaa + _bbb + _ccc + """ +