multiple-cursors.el/features/mark-multiple-integration.feature
2012-06-06 08:45:20 +02:00

14 lines
525 B
Gherkin

Feature: Mark multiple integration
In order to quickly and precisely get multiple cursors
As an Emacs user with mark-multiple
I want to mark multiple regions and then go to multiple-cursors-mode
Scenario: Mark two words and change them
Given there is no region selected
And delete-selection-mode is active
When I insert "This text contains the word text twice"
And I select "text"
And I press "C->"
And I type "sentence"
Then I should see "This sentence contains the word sentence twice"