diff options
| author | Philippe Vaucher <philippe.vaucher@gmail.com> | 2014-06-16 20:24:30 +0200 |
|---|---|---|
| committer | Philippe Vaucher <philippe.vaucher@gmail.com> | 2014-06-16 20:24:30 +0200 |
| commit | 7a2e79d7a87315c2fab74cf4f33ea9adf3ed0348 (patch) | |
| tree | df53aba9a6fb23b33f70b4dad92a3786285ea5ff | |
| parent | 8b59d17d5cb2ffa7b807ac0faa29d38d7dc51b64 (diff) | |
Fix forgotten leftovers when renaming
| -rwxr-xr-x | evil-surround.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-surround.el b/evil-surround.el index b00bb51..b75b9a8 100755 --- a/evil-surround.el +++ b/evil-surround.el @@ -226,7 +226,7 @@ Otherwise call `evil-surround-delete'." (define-key evil-operator-shortcut-map "s" 'evil-surround-line) (call-interactively 'evil-surround-region)))) -(evil-define-operator surround-region (beg end type char &optional force-new-line) +(evil-define-operator evil-surround-region (beg end type char &optional force-new-line) "Surround BEG and END with CHAR. When force-new-line is true, and region type is not line, the @@ -273,7 +273,7 @@ Becomes this: (goto-char (overlay-start overlay))) (delete-overlay overlay)))) -(evil-define-operator Surround-region (beg end type char) +(evil-define-operator evil-Surround-region (beg end type char) "Call surround-region, toggling force-new-line" (interactive "<R>c") (evil-surround-region beg end type char t)) |
