diff options
| author | tam5 <arimiller92@gmail.com> | 2018-12-15 21:38:29 -0500 |
|---|---|---|
| committer | tam5 <arimiller92@gmail.com> | 2018-12-16 14:07:31 -0500 |
| commit | 1a4bc20f158aa9f4e4811a6363cc65ea24f167ce (patch) | |
| tree | d77563753755500573b10ca1c520b94b73f90bd5 /test/evil-surround-test.el | |
| parent | 897203ca5fce1c6cc33bf0ee4ef2a7e211063b02 (diff) | |
add csw, csW, css and csp shortcuts1.0.3
Diffstat (limited to 'test/evil-surround-test.el')
| -rw-r--r-- | test/evil-surround-test.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/evil-surround-test.el b/test/evil-surround-test.el index df8a03f..df71b11 100644 --- a/test/evil-surround-test.el +++ b/test/evil-surround-test.el @@ -37,6 +37,18 @@ "one 'two' three" ("ds'") "one two three")) + (ert-info ("shortcut surrounding") + (evil-test-buffer + "One, and two. Also three.\n\n" + (turn-on-evil-surround-mode) + ("csw)") + "(One), and two. Also three.\n\n" + ("csW'") + "'(One),' and two. Also three.\n\n" + ("css.") + ".'(One),' and two. Also three..\n\n" + ("csp0") + "0.'(One),' and two. Also three..0\n\n")) (ert-info ("examples from readme") (evil-test-buffer :visual-start nil |
