latex-mode-expansions.feature (389B)
1 Feature: latex-mode expansions 2 Background: 3 Given there is no region selected 4 And I turn on latex-mode 5 6 Scenario: Mark simple math 7 When I insert "$E=mc^2$" 8 And I place the cursor before "=" 9 And I press "C-@" 10 Then the region should be "E" 11 And I press "C-@" 12 Then the region should be "E=mc" 13 And I press "C-@" 14 Then the region should be "$E=mc^2$"