forked from emacs-evil/evil-surround
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evil-surround.el
executable file
·383 lines (331 loc) · 13.8 KB
/
evil-surround.el
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
;;; evil-surround.el --- emulate surround.vim from Vim
;; Copyright (C) 2010, 2011 Tim Harper
;; Licensed under the same terms as Emacs.
;;
;; 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
;; Package-Requires: ((evil "1.2.12"))
;; 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
;; Keywords: emulation, vi, evil
;;
;; 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 'evil-surround)
;; (global-evil-surround-mode 1)
;;
;; Alternatively, you can enable evil-surround-mode along a major mode
;; by adding `turn-on-evil-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 evil-surround-pairs-alist
'((?\( . ("( " . " )"))
(?\[ . ("[ " . " ]"))
(?\{ . ("{ " . " }"))
(?\) . ("(" . ")"))
(?\] . ("[" . "]"))
(?\} . ("{" . "}"))
(?# . ("#{" . "}"))
(?b . ("(" . ")"))
(?B . ("{" . "}"))
(?> . ("<" . ">"))
(?t . evil-surround-read-tag)
(?< . evil-surround-read-tag)
(?f . evil-surround-function))
"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"))))
(make-variable-buffer-local 'evil-surround-pairs-alist)
(defcustom evil-surround-operator-alist
'((evil-change . change)
(evil-delete . delete))
"Association list of operators to their fundamental operation.
Each item is of the form (OPERATOR . OPERATION)."
:group 'surround
:type '(repeat (cons (symbol :tag "Operator")
(symbol :tag "Operation"))))
(defvar evil-surround-read-tag-map
(let ((map (copy-keymap minibuffer-local-map)))
(define-key map ">" 'exit-minibuffer)
map)
"Keymap used by `evil-surround-read-tag'.")
(defun evil-surround-function ()
"Read a functionname from the minibuffer and wrap selection in function call"
(let ((fname (read-from-minibuffer "" "" )))
(cons (format "%s(" (or fname ""))
")")))
(defun evil-surround-read-tag ()
"Read a XML tag from the minibuffer."
(let* ((input (read-from-minibuffer "<" "" evil-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 evil-surround-valid-char-p (char)
"Returns whether CHAR is a valid surround char or not."
(not (memq char '(?\C-\[ ?\C-?))))
(defun evil-surround-pair (char)
"Return the evil-surround pair of char.
This is a cons cell (LEFT . RIGHT), both strings."
(let ((pair (assoc-default char evil-surround-pairs-alist)))
(cond
((functionp pair)
(funcall pair))
((consp pair)
pair)
(t
(cons (format "%c" char) (format "%c" char))))))
(defun evil-surround-outer-overlay (char)
"Return outer overlay for the delimited range represented by CHAR.
This overlay includes the delimiters.
See also `evil-surround-inner-overlay'."
(let ((outer (lookup-key evil-outer-text-objects-map (string char))))
(when (functionp outer)
(setq outer (funcall outer))
(when (evil-range-p outer)
(evil-surround-trim-whitespace-from-range outer "[[:space:]]")
(setq outer (make-overlay (evil-range-beginning outer)
(evil-range-end outer)
nil nil t))))))
(defun evil-surround-trim-whitespace-from-range (range &optional regexp)
"Given an evil-range, trim whitespace around range by shrinking the range such that it neither begins nor ends with whitespace. Does not modify the buffer."
(let ((regexp (or regexp "[ \f\t\n\r\v]")))
(save-excursion
(save-match-data
(goto-char (evil-range-beginning range))
(while (looking-at regexp) (forward-char))
(evil-set-range-beginning range (point))
(goto-char (evil-range-end range))
(while (looking-back regexp) (backward-char))
(evil-set-range-end range (point))))))
(defun evil-surround-inner-overlay (char)
"Return inner overlay for the delimited range represented by CHAR.
This overlay excludes the delimiters.
See also `evil-surround-outer-overlay'."
(let ((inner (lookup-key evil-inner-text-objects-map (string char))))
(when (functionp inner)
(setq inner (funcall inner))
(when (evil-range-p inner)
(when (eq (char-syntax char) ?\()
(evil-surround-trim-whitespace-from-range inner "[[:space:]]"))
(setq inner (make-overlay (evil-range-beginning inner)
(evil-range-end inner)
nil nil t))))))
(evil-define-motion evil-surround-line (count)
"Move COUNT - 1 lines down but return exclusive character motion."
:type exclusive
(let ((beg (line-beginning-position)))
(evil-line count)
(end-of-line)
(let ((range (evil-range beg (point) 'exclusive)))
(evil-expand-range range)
range)))
;;;###autoload (autoload 'evil-surround-delete "evil-surround" nil t)
(evil-define-command evil-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 (evil-surround-outer-overlay char))
(inner (evil-surround-inner-overlay char)))
(unwind-protect
(when (and outer inner)
(evil-surround-delete char outer inner))
(when outer (delete-overlay outer))
(when inner (delete-overlay inner)))))))
;;;###autoload (autoload 'evil-surround-change "evil-surround" nil t)
(evil-define-command evil-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 `evil-surround-delete'."
(interactive "<C>")
(cond
((and outer inner)
(evil-surround-delete char outer inner)
(let ((key (evil-read-key)))
(evil-surround-region (overlay-start outer)
(overlay-end outer)
nil (if (evil-surround-valid-char-p key) key char))))
(t
(let* ((outer (evil-surround-outer-overlay char))
(inner (evil-surround-inner-overlay char)))
(unwind-protect
(when (and outer inner)
(evil-surround-change char outer inner))
(when outer (delete-overlay outer))
(when inner (delete-overlay inner)))))))
(defun evil-surround-interactive-setup ()
(setq evil-inhibit-operator t)
(list (assoc-default evil-this-operator
evil-surround-operator-alist)))
(defun evil-surround-setup-surround-line-operators ()
(define-key evil-operator-shortcut-map "s" 'evil-surround-line)
(define-key evil-operator-shortcut-map "S" 'evil-surround-line))
(defun evil-surround-column-at (pos)
(save-excursion (goto-char pos) (current-column)))
(defun evil-surround-block (beg end char)
"Surrounds a block selection with a character, as if `evil-surround-region'
were called on each segment in each line. This skips lines where EOL < BEG's
column."
(let ((beg-col (evil-surround-column-at beg))
(end-col (evil-surround-column-at end)))
(evil-apply-on-block
(lambda (ibeg iend)
(unless (< (evil-surround-column-at ibeg) (min beg-col end-col))
(evil-surround-region ibeg iend t char)))
beg end nil)))
(defun evil-surround-call-with-repeat (callback)
"Record keystrokes to repeat surround-region operator and it's motion.
This is necessary because `evil-yank' operator is not repeatable (:repeat nil)"
(evil-repeat-start)
(evil-repeat-record "y")
(evil-repeat-record (this-command-keys))
(call-interactively callback)
(evil-repeat-keystrokes 'post)
(evil-repeat-stop))
;; Dispatcher function in Operator-Pending state.
;; "cs" calls `evil-surround-change', "ds" calls `evil-surround-delete',
;; and "ys" calls `evil-surround-region'.
(evil-define-command evil-surround-edit (operation)
"Edit the surrounding delimiters represented by CHAR.
If OPERATION is `change', call `evil-surround-change'.
if OPERATION is `delete', call `evil-surround-delete'.
Otherwise call `evil-surround-region'."
(interactive (evil-surround-interactive-setup))
(message "%s" operation)
(cond
((eq operation 'change)
(call-interactively 'evil-surround-change))
((eq operation 'delete)
(call-interactively 'evil-surround-delete))
(t
(evil-surround-setup-surround-line-operators)
(evil-surround-call-with-repeat 'evil-surround-region))))
(evil-define-command evil-Surround-edit (operation)
"Like evil-surround-edit, but for surrounding with additional new-lines.
It does nothing for change / delete."
(interactive (evil-surround-interactive-setup))
(message "%s" operation)
(cond
((eq operation 'change) nil)
((eq operation 'delete) nil)
(t
(evil-surround-setup-surround-line-operators)
(evil-surround-call-with-repeat 'evil-Surround-region))))
(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
following: (vertical bars indicate region start/end points)
do |:thing|
Becomes this:
do {
:thing
}"
(interactive "<R><C>")
(when (evil-surround-valid-char-p char)
(let* ((overlay (make-overlay beg end nil nil t))
(pair (or (and (boundp 'pair) pair) (evil-surround-pair char)))
(open (car pair))
(close (cdr pair))
(beg-pos (overlay-start overlay)))
(unwind-protect
(progn
(goto-char beg-pos)
(cond ((eq type 'block)
(evil-surround-block beg end char))
((eq type 'line)
(setq force-new-line
(or force-new-line
;; Force newline if not invoked from an operator, e.g. VS)
(eq evil-this-operator 'evil-surround-region)
;; Or on multi-line operator surrounds (like 'ysj]')
(/= (line-number-at-pos) (line-number-at-pos (1- end)))))
(back-to-indentation)
(setq beg-pos (point))
(insert open)
(when force-new-line (newline-and-indent))
(goto-char (overlay-end overlay))
(if force-new-line
(when (eobp)
(newline-and-indent))
(backward-char)
(evil-last-non-blank)
(forward-char))
(insert close)
(when (or force-new-line
(/= (line-number-at-pos) (line-number-at-pos beg-pos)))
(indent-region beg-pos (point))
(newline-and-indent)))
(force-new-line
(insert open)
(newline-and-indent)
(let ((pt (point)))
(goto-char (overlay-end overlay))
(newline-and-indent)
(insert close)
(indent-region pt (point))))
(t
(insert open)
(goto-char (overlay-end overlay))
(insert close)))
(goto-char beg-pos))
(delete-overlay overlay)))))
(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))
;;;###autoload
(define-minor-mode evil-surround-mode
"Buffer-local minor mode to emulate surround.vim."
:keymap (make-sparse-keymap)
(evil-normalize-keymaps))
;;;###autoload
(defun turn-on-evil-surround-mode ()
"Enable evil-surround-mode in the current buffer."
(evil-surround-mode 1))
;;;###autoload
(defun turn-off-evil-surround-mode ()
"Disable evil-surround-mode in the current buffer."
(evil-surround-mode -1))
;;;###autoload
(define-globalized-minor-mode global-evil-surround-mode
evil-surround-mode turn-on-evil-surround-mode
"Global minor mode to emulate surround.vim.")
(evil-define-key 'operator evil-surround-mode-map "s" 'evil-surround-edit)
(evil-define-key 'operator evil-surround-mode-map "S" 'evil-Surround-edit)
(evil-define-key 'visual evil-surround-mode-map "S" 'evil-surround-region)
(evil-define-key 'visual evil-surround-mode-map "gS" 'evil-Surround-region)
(provide 'evil-surround)
;;; evil-surround.el ends here