1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
;;; surround.el --- emulate surround.vim from Vim
;; Copyright (C) 2010, 2011 Tim Harper
;;
;; Author: Tim Harper <timcharper at gmail dot com>
;; Vegard Øye <vegard_oye at hotmail dot com>
;; Maintainer: Please send bug reports to the mailing list (below).
;; Created: July 23 2011
;; Version: 0.1
;; Keywords: emulation, vi, evil
;; Mailing list: <implementations-list at lists.ourproject.org>
;; Subscribe: http://tinyurl.com/implementations-list
;; Newsgroup: nntp://news.gmane.org/gmane.emacs.vim-emulation
;; Archives: http://dir.gmane.org/gmane.emacs.vim-emulation
;;
;; This file is not part of GNU Emacs.
;;; Commentary:
;; This package emulates surround.vim by Tim Pope.
;; The functionality is wrapped into a minor mode. To enable
;; it globally, add the following lines to ~/.emacs:
;;
;; (require 'surround)
;; (global-surround-mode 1)
;;
;; Alternatively, you can enable surround-mode along a major mode
;; by adding `turn-on-surround-mode' to the mode hook.
;;
;; This package uses Evil as its vi layer. It is available from:
;;
;; http://gitorious.org/evil
;;; Code:
(require 'evil)
(defgroup surround nil
"surround.vim for Emacs"
:prefix "surround-"
:group 'evil)
(defcustom surround-pairs-alist
'((?\( . ?\))
(?\[ . ?\])
(?{ . ?})
(?# . ("#{" . "}"))
(?b . ("(" . ")"))
(?B . ("{" . "}"))
(?t . surround-read-tag)
(?< . surround-read-tag))
"Association list of surround items.
Each item is of the form (TRIGGER . (LEFT . RIGHT)), all strings.
Alternatively, a function can be put in place of (LEFT . RIGHT).
This only affects inserting pairs, not deleting or changing them."
:group 'surround
:type '(repeat (cons (regexp :tag "Key")
(symbol :tag "Surround pair"))))
(defvar surround-read-tag-map
(let ((map (copy-keymap minibuffer-local-map)))
(define-key map ">" 'exit-minibuffer)
map)
"Keymap used by `surround-read-tag'.")
(defun surround-read-tag ()
"Read a XML tag from the minibuffer."
(let* ((input (read-from-minibuffer "<" "" surround-read-tag-map))
(match (string-match "\\([0-9a-z-]+\\)\\(.*?\\)[>]*$" input))
(tag (match-string 1 input))
(rest (match-string 2 input)))
(cons (format "<%s%s>" (or tag "") (or rest ""))
(format "</%s>" (or tag "")))))
(defun surround-pair (char)
"Return the surround pair of CHAR.
This is a cons cell (LEFT . RIGHT), both strings."
(let* ((open (or (car (rassoc char surround-pairs-alist)) char))
(close (or (cdr (assoc char surround-pairs-alist)) char)))
(cond
((functionp close)
(funcall close))
((consp close)
close)
((eq (char-syntax char) ?\()
;; add whitespace
(cons (format "%c " open) (format " %c" close)))
(t
(cons (format "%c" open) (format "%c" close))))))
(defun surround-outer-overlay (char)
"Return outer overlay for the delimited range represented by CHAR.
This overlay includes the delimiters.
See also `surround-inner-overlay'."
(let ((outer (lookup-key evil-motion-state-map
(format "a%c" char))))
(when (functionp outer)
(setq outer (funcall outer))
(when (evil-range-p outer)
(when (eq (char-syntax char) ?\()
(evil-add-whitespace-before-range outer "[ \t]")
(evil-add-whitespace-after-range outer "[ \t]"))
(setq outer (make-overlay (evil-range-beginning outer)
(evil-range-end outer)
nil nil t))))))
(defun surround-inner-overlay (char)
"Return inner overlay for the delimited range represented by CHAR.
This overlay excludes the delimiters.
See also `surround-outer-overlay'."
(let ((inner (lookup-key evil-motion-state-map
(format "i%c" char))))
(when (functionp inner)
(setq inner (funcall inner))
(when (evil-range-p inner)
(setq inner (make-overlay (evil-range-beginning inner)
(evil-range-end inner)
nil nil t))))))
(defun surround-delete (char &optional outer inner)
"Delete the surrounding delimiters represented by CHAR.
Alternatively, the text to delete can be represented with
the overlays OUTER and INNER, where OUTER includes the delimiters
and INNER excludes them. The intersection (i.e., difference)
between these overlays is what is deleted."
(interactive "c")
(cond
((and outer inner)
(delete-region (overlay-start outer) (overlay-start inner))
(delete-region (overlay-end inner) (overlay-end outer))
(goto-char (overlay-start outer)))
(t
;; no overlays specified: create them on the basis of CHAR
;; and delete after use
(let* ((outer (surround-outer-overlay char))
(inner (surround-inner-overlay char)))
(unwind-protect
(when (and outer inner)
(surround-delete char outer inner))
(when outer (delete-overlay outer))
(when inner (delete-overlay inner)))))))
(defun surround-change (char &optional outer inner)
"Change the surrounding delimiters represented by CHAR.
Alternatively, the text to delete can be represented with the
overlays OUTER and INNER, which are passed to `surround-delete'."
(interactive "c")
(cond
((and outer inner)
(surround-delete char outer inner)
(surround-region (overlay-start outer)
(overlay-end outer)
nil (read-char)))
(t
(let* ((outer (surround-outer-overlay char))
(inner (surround-inner-overlay char)))
(unwind-protect
(when (and outer inner)
(surround-change char outer inner))
(when outer (delete-overlay outer))
(when inner (delete-overlay inner)))))))
;; Dispatcher function in Operator-Pending state.
;; "cs" calls `surround-change', "ds" calls `surround-delete',
;; and "ys" calls `surround-region'.
(evil-define-command surround-edit (operation)
"Edit the surrounding delimiters represented by CHAR.
If OPERATION is `change', call `surround-change'.
if OPERATION is `surround', call `surround-region'.
Otherwise call `surround-delete'."
(interactive
(progn
;; abort the calling operator
(setq evil-inhibit-operator t)
(list (assoc-default evil-this-operator
'((evil-change . change)
(evil-delete . delete))))))
(cond
((eq operation 'change)
(call-interactively 'surround-change))
((eq operation 'delete)
(call-interactively 'surround-delete))
(t
(define-key evil-operator-shortcut-map "s" 'evil-line)
(call-interactively 'surround-region))))
(evil-define-operator surround-region (beg end type char)
"Surround BEG and END with CHAR."
(interactive (list (read-char))) ; CHAR
(let* ((overlay (make-overlay beg end nil nil t))
(pair (surround-pair char))
(open (car pair))
(close (cdr pair)))
(unwind-protect
(progn
(goto-char (overlay-start overlay))
(insert open)
(when (eq type 'line)
(indent-according-to-mode)
(newline-and-indent))
(goto-char (overlay-end overlay))
(insert close)
(when (eq type 'line)
(indent-according-to-mode)
(newline))
(goto-char (overlay-start overlay)))
(delete-overlay overlay))))
(define-minor-mode surround-mode
"Buffer-local minor mode to emulate surround.vim."
:keymap (make-sparse-keymap)
(evil-normalize-keymaps))
(defun turn-on-surround-mode ()
"Enable surround-mode in the current buffer."
(surround-mode 1))
(defun turn-off-surround-mode ()
"Disable surround-mode in the current buffer."
(surround-mode -1))
(define-globalized-minor-mode global-surround-mode
surround-mode turn-on-surround-mode
"Global minor mode to emulate surround.vim.")
(evil-define-key 'operator surround-mode-map "s" 'surround-edit)
(evil-define-key 'visual surround-mode-map "S" 'surround-region)
(provide 'surround)
;;; surround.el ends here
|