Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / skeleton.el
blobf24e64a0947279dc9d09e3204a527898128464cf
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons -*- coding: utf-8 -*-
3 ;; Copyright (C) 1993-1996, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
6 ;; Maintainer: FSF
7 ;; Keywords: extensions, abbrev, languages, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; A very concise language extension for writing structured statement
27 ;; skeleton insertion commands for programming language modes. This
28 ;; originated in shell-script mode and was applied to ada-mode's
29 ;; commands which shrunk to one third. And these commands are now
30 ;; user configurable.
32 ;;; Code:
34 (eval-when-compile (require 'cl-lib))
36 ;; page 1: statement skeleton language definition & interpreter
37 ;; page 2: paired insertion
38 ;; page 3: mirror-mode, an example for setting up paired insertion
41 (defvar skeleton-transformation-function 'identity
42 "If non-nil, function applied to literal strings before they are inserted.
43 It should take strings and characters and return them transformed, or nil
44 which means no transformation.
45 Typical examples might be `upcase' or `capitalize'.")
46 (defvaralias 'skeleton-transformation 'skeleton-transformation-function)
48 ; this should be a fourth argument to defvar
49 (put 'skeleton-transformation-function 'variable-interactive
50 "aTransformation function: ")
53 (defvar skeleton-autowrap t
54 "Controls wrapping behavior of functions created with `define-skeleton'.
55 When the region is visible (due to `transient-mark-mode' or marking a region
56 with the mouse) and this is non-nil and the function was called without an
57 explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
58 region.
60 We will probably delete this variable in a future Emacs version
61 unless we get a substantial number of complaints about the auto-wrap
62 feature.")
64 (defvar skeleton-end-newline t
65 "If non-nil, make sure that the skeleton inserted ends with a newline.
66 This just influences the way the default `skeleton-end-hook' behaves.")
68 (defvar skeleton-end-hook
69 (lambda ()
70 (or (eolp) (not skeleton-end-newline) (newline-and-indent)))
71 "Hook called at end of skeleton but before going to point of interest.
72 By default this moves out anything following to next line,
73 unless `skeleton-end-newline' is set to nil.
74 The variables `v1' and `v2' are still set when calling this.")
77 ;;;###autoload
78 (defvar skeleton-filter-function 'identity
79 "Function for transforming a skeleton proxy's aliases' variable value.")
80 (defvaralias 'skeleton-filter 'skeleton-filter-function)
82 (defvar skeleton-untabify nil ; bug#12223
83 "When non-nil untabifies when deleting backwards with element -ARG.")
85 (defvar skeleton-newline-indent-rigidly nil
86 "When non-nil, indent rigidly under current line for element `\\n'.
87 Else use mode's `indent-line-function'.")
89 (defvar-local skeleton-further-elements ()
90 "A buffer-local varlist (see `let') of mode specific skeleton elements.
91 These variables are bound while interpreting a skeleton. Their value may
92 in turn be any valid skeleton element if they are themselves to be used as
93 skeleton elements.")
95 (defvar skeleton-subprompt
96 (substitute-command-keys
97 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
98 "Replacement for %s in prompts of recursive subskeletons.")
101 (defvar skeleton-debug nil
102 "If non-nil `define-skeleton' will override previous definition.")
104 (defvar skeleton-positions nil
105 "List of positions marked with @, after skeleton insertion.
106 The list describes the most recent skeleton insertion, and its elements
107 are integer buffer positions in the reverse order of the insertion order.")
109 ;; reduce the number of compiler warnings
110 (defvar skeleton-il)
111 (defvar skeleton-modified)
112 (defvar skeleton-point)
113 (defvar skeleton-regions)
115 (def-edebug-spec skeleton-edebug-spec
116 ([&or null stringp (stringp &rest stringp) [[&not atom] def-form]]
117 &rest &or "n" "_" "-" ">" "@" "&" "!" "resume:"
118 ("quote" def-form) skeleton-edebug-spec def-form))
119 ;;;###autoload
120 (defmacro define-skeleton (command documentation &rest skeleton)
121 "Define a user-configurable COMMAND that enters a statement skeleton.
122 DOCUMENTATION is that of the command.
123 SKELETON is as defined under `skeleton-insert'."
124 (declare (doc-string 2) (debug (&define name stringp skeleton-edebug-spec)))
125 (if skeleton-debug
126 (set command skeleton))
127 `(progn
128 ;; Tell self-insert-command that this function, if called by an
129 ;; abbrev, should cause the self-insert to be skipped.
130 (put ',command 'no-self-insert t)
131 (defun ,command (&optional str arg)
132 ,(concat documentation
133 (if (string-match "\n\\'" documentation)
134 "" "\n")
135 "\n"
136 "This is a skeleton command (see `skeleton-insert').
137 Normally the skeleton text is inserted at point, with nothing \"inside\".
138 If there is a highlighted region, the skeleton text is wrapped
139 around the region text.
141 A prefix argument ARG says to wrap the skeleton around the next ARG words.
142 A prefix argument of -1 says to wrap around region, even if not highlighted.
143 A prefix argument of zero says to wrap around zero words---that is, nothing.
144 This is a way of overriding the use of a highlighted region.")
145 (interactive "*P\nP")
146 (skeleton-proxy-new ',skeleton str arg))))
148 ;;;###autoload
149 (defun skeleton-proxy-new (skeleton &optional str arg)
150 "Insert SKELETON.
151 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
152 If no ARG was given, but the region is visible, ARG defaults to -1 depending
153 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
154 This command can also be an abbrev expansion (3rd and 4th columns in
155 \\[edit-abbrevs] buffer: \"\" command-name).
157 Optional second argument STR may also be a string which will be the value
158 of `str' whereas the skeleton's interactor is then ignored."
159 (skeleton-insert (funcall skeleton-filter-function skeleton)
160 ;; Pretend C-x a e passed its prefix arg to us
161 (if (or arg current-prefix-arg)
162 (prefix-numeric-value (or arg
163 current-prefix-arg))
164 (and skeleton-autowrap
165 (or (eq last-command 'mouse-drag-region)
166 (and transient-mark-mode mark-active))
167 ;; Deactivate the mark, in case one of the
168 ;; elements of the skeleton is sensitive
169 ;; to such situations (e.g. it is itself a
170 ;; skeleton).
171 (progn (deactivate-mark)
172 -1)))
173 (if (stringp str)
174 str))
175 ;; Return non-nil to tell expand-abbrev that expansion has happened.
176 ;; Otherwise the no-self-insert is ignored.
179 ;;;###autoload
180 (defun skeleton-insert (skeleton &optional regions str)
181 "Insert the complex statement skeleton SKELETON describes very concisely.
183 With optional second argument REGIONS, wrap first interesting point
184 \(`_') in skeleton around next REGIONS words, if REGIONS is positive.
185 If REGIONS is negative, wrap REGIONS preceding interregions into first
186 REGIONS interesting positions \(successive `_'s) in skeleton.
188 An interregion is the stretch of text between two contiguous marked
189 points. If you marked A B C [] (where [] is the cursor) in
190 alphabetical order, the 3 interregions are simply the last 3 regions.
191 But if you marked B A [] C, the interregions are B-A, A-[], []-C.
193 The optional third argument STR, if specified, is the value for the
194 variable `str' within the skeleton. When this is non-nil, the
195 interactor gets ignored, and this should be a valid skeleton element.
197 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
198 not needed, a prompt-string or an expression for complex read functions.
200 If ELEMENT is a string or a character it gets inserted (see also
201 `skeleton-transformation-function'). Other possibilities are:
203 \\n go to next line and indent according to mode
204 _ interesting point, interregion here
205 - interesting point, no interregion interaction, overrides
206 interesting point set by _
207 > indent line (or interregion if > _) according to major mode
208 @ add position to `skeleton-positions'
209 & do next ELEMENT if previous moved point
210 | do next ELEMENT if previous didn't move point
211 -num delete num preceding characters (see `skeleton-untabify')
212 resume: skipped, continue here if quit is signaled
213 nil skipped
215 After termination, point will be positioned at the last occurrence of -
216 or at the first occurrence of _ or at the end of the inserted text.
218 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
219 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
220 different inputs. The SKELETON is processed as often as the user enters a
221 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
222 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
223 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
224 formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
225 strings with the subskeleton being repeated once for each string.
227 Quoted Lisp expressions are evaluated for their side-effects.
228 Other Lisp expressions are evaluated and the value treated as above.
229 Note that expressions may not return t since this implies an
230 endless loop. Modes can define other symbols by locally setting them
231 to any valid skeleton element. The following local variables are
232 available:
234 str first time: read a string according to INTERACTOR
235 then: insert previously read string once more
236 help help-form during interaction with the user or nil
237 input initial input (string or cons with index) while reading str
238 v1, v2 local variables for memorizing anything you want
240 When done with skeleton, but before going back to `_'-point call
241 `skeleton-end-hook' if that is non-nil."
242 (let ((skeleton-regions regions))
243 (and skeleton-regions
244 (setq skeleton-regions
245 (if (> skeleton-regions 0)
246 (list (copy-marker (point) t)
247 (save-excursion (forward-word skeleton-regions)
248 (point-marker)))
249 (setq skeleton-regions (- skeleton-regions))
250 ;; copy skeleton-regions - 1 elements from `mark-ring'
251 (let ((l1 (cons (mark-marker) mark-ring))
252 (l2 (list (copy-marker (point) t))))
253 (while (and l1 (> skeleton-regions 0))
254 (push (copy-marker (pop l1) t) l2)
255 (setq skeleton-regions (1- skeleton-regions)))
256 (sort l2 '<))))
257 (goto-char (car skeleton-regions))
258 (setq skeleton-regions (cdr skeleton-regions)))
259 (let ((beg (point))
260 skeleton-modified skeleton-point resume: help input v1 v2)
261 (setq skeleton-positions nil)
262 (unwind-protect
263 (cl-progv
264 (mapcar #'car skeleton-further-elements)
265 (mapcar (lambda (x) (eval (cadr x))) skeleton-further-elements)
266 (skeleton-internal-list skeleton str))
267 (run-hooks 'skeleton-end-hook)
268 (sit-for 0)
269 (or (pos-visible-in-window-p beg)
270 (progn
271 (goto-char beg)
272 (recenter 0)))
273 (if skeleton-point
274 (goto-char skeleton-point))))))
276 (defun skeleton-read (prompt &optional initial-input recursive)
277 "Function for reading a string from the minibuffer within skeletons.
279 PROMPT must be a string or a form that evaluates to a string.
280 It may contain a `%s' which will be replaced by `skeleton-subprompt'.
281 If non-nil second arg INITIAL-INPUT or variable `input' is a string or
282 cons with index to insert before reading. If third arg RECURSIVE is non-nil
283 i.e. we are handling the iterator of a subskeleton, returns empty string if
284 user didn't modify input.
285 While reading, the value of `minibuffer-help-form' is variable `help' if that
286 is non-nil or a default string."
287 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
288 (if recursive "\
289 As long as you provide input you will insert another subskeleton.
291 If you enter the empty string, the loop inserting subskeletons is
292 left, and the current one is removed as far as it has been entered.
294 If you quit, the current subskeleton is removed as far as it has been
295 entered. No more of the skeleton will be inserted, except maybe for a
296 syntactically necessary termination."
298 You are inserting a skeleton. Standard text gets inserted into the buffer
299 automatically, and you are prompted to fill in the variable parts.")))
300 (eolp (eolp)))
301 ;; since Emacs doesn't show main window's cursor, do something noticeable
302 (or eolp
303 ;; We used open-line before, but that can do a lot more than we want,
304 ;; since it runs self-insert-command. E.g. it may remove spaces
305 ;; before point.
306 (save-excursion (insert "\n")))
307 (unwind-protect
308 (setq prompt (if (stringp prompt)
309 (read-string (format prompt skeleton-subprompt)
310 (setq initial-input
311 (or initial-input
312 (symbol-value 'input))))
313 (eval prompt)))
314 (or eolp
315 (delete-char 1))))
316 (if (and recursive
317 (or (null prompt)
318 (string= prompt "")
319 (equal prompt initial-input)
320 (equal prompt (car-safe initial-input))))
321 (signal 'quit t)
322 prompt))
324 (defun skeleton-internal-list (skeleton-il &optional str recursive)
325 (let* ((start (line-beginning-position))
326 (column (current-column))
327 (line (buffer-substring start (line-end-position)))
328 opoint)
329 (or str
330 (setq str `(setq str
331 (skeleton-read ',(car skeleton-il) nil ,recursive))))
332 (when (and (eq (cadr skeleton-il) '\n) (not recursive)
333 (save-excursion (skip-chars-backward " \t") (bolp)))
334 (setq skeleton-il (cons nil (cons '> (cddr skeleton-il)))))
335 (while (setq skeleton-modified (eq opoint (point))
336 opoint (point)
337 skeleton-il (cdr skeleton-il))
338 (condition-case quit
339 (skeleton-internal-1 (car skeleton-il) nil recursive)
340 (quit
341 (if (eq (cdr quit) 'recursive)
342 (setq recursive 'quit
343 skeleton-il (memq 'resume: skeleton-il))
344 ;; Remove the subskeleton as far as it has been shown
345 ;; the subskeleton shouldn't have deleted outside current line.
346 (end-of-line)
347 (delete-region start (point))
348 (insert line)
349 (move-to-column column)
350 (if (cdr quit)
351 (setq skeleton-il ()
352 recursive nil)
353 (signal 'quit 'recursive)))))))
354 ;; maybe continue loop or go on to next outer resume: section
355 (if (eq recursive 'quit)
356 (signal 'quit 'recursive)
357 recursive))
360 (defun skeleton-internal-1 (element &optional literal recursive)
361 (cond
362 ((or (integerp element) (stringp element))
363 (if (and (integerp element) ; -num
364 (< element 0))
365 (if skeleton-untabify
366 (backward-delete-char-untabify (- element))
367 (delete-char element))
368 (insert (if (not literal)
369 (funcall skeleton-transformation-function element)
370 element))))
371 ((or (eq element '\n) ; actually (eq '\n 'n)
372 ;; The sequence `> \n' is handled specially so as to indent the first
373 ;; line after inserting the newline (to get the proper indentation).
374 (and (eq element '>) (eq (nth 1 skeleton-il) '\n) (pop skeleton-il)))
375 (let ((pos (if (eq element '>) (point))))
376 (cond
377 ((and skeleton-regions (eq (nth 1 skeleton-il) '_))
378 (or (eolp) (insert "\n"))
379 (if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
380 (indent-region (line-beginning-position)
381 (car skeleton-regions) nil))
382 ;; \n as last element only inserts \n if not at eol.
383 ((and (null (cdr skeleton-il)) (not recursive) (eolp))
384 (if pos (indent-according-to-mode)))
385 (skeleton-newline-indent-rigidly
386 (let ((pt (point)))
387 (insert "\n")
388 (indent-to (save-excursion
389 (goto-char pt)
390 (if pos (indent-according-to-mode))
391 (current-indentation)))))
392 (t (if pos (reindent-then-newline-and-indent)
393 (insert "\n")
394 (indent-according-to-mode))))))
395 ((eq element '>)
396 (if (and skeleton-regions (eq (nth 1 skeleton-il) '_))
397 (indent-region (line-beginning-position)
398 (car skeleton-regions) nil)
399 (indent-according-to-mode)))
400 ((eq element '_)
401 (if skeleton-regions
402 (progn
403 (goto-char (pop skeleton-regions))
404 (and (<= (current-column) (current-indentation))
405 (eq (nth 1 skeleton-il) '\n)
406 (end-of-line 0)))
407 (or skeleton-point
408 (setq skeleton-point (point)))))
409 ((eq element '-)
410 (setq skeleton-point (point)))
411 ((eq element '&)
412 (when skeleton-modified (pop skeleton-il)))
413 ((eq element '|)
414 (unless skeleton-modified (pop skeleton-il)))
415 ((eq element '@)
416 (push (point) skeleton-positions))
417 ((eq 'quote (car-safe element))
418 (eval (nth 1 element)))
419 ((and (consp element)
420 (or (stringp (car element)) (listp (car element))))
421 ;; Don't forget: `symbolp' is also true for nil.
422 (if (symbolp (car-safe (car element)))
423 (while (and (skeleton-internal-list element nil t)
424 ;; If the interactor is nil, don't infinite loop.
425 (car element)))
426 (setq literal (car element))
427 (while literal
428 (skeleton-internal-list element (car literal))
429 (setq literal (cdr literal)))))
430 ((null element))
431 (t (skeleton-internal-1 (eval element) t recursive))))
433 ;; Maybe belongs into simple.el or elsewhere
434 ;; ;;;###autoload
435 ;; (define-skeleton local-variables-section
436 ;; "Insert a local variables section. Use current comment syntax if any."
437 ;; (completing-read "Mode: " obarray
438 ;; (lambda (symbol)
439 ;; (if (commandp symbol)
440 ;; (string-match "-mode$" (symbol-name symbol))))
441 ;; t)
442 ;; '(save-excursion
443 ;; (if (re-search-forward page-delimiter nil t)
444 ;; (error "Not on last page")))
445 ;; comment-start "Local Variables:" comment-end \n
446 ;; comment-start "mode: " str
447 ;; & -5 | '(kill-line 0) & -1 | comment-end \n
448 ;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
449 ;; obarray
450 ;; (lambda (symbol)
451 ;; (or (eq symbol 'eval)
452 ;; (custom-variable-p symbol)))
453 ;; t)
454 ;; comment-start str ": "
455 ;; (read-from-minibuffer "Expression: " nil read-expression-map nil
456 ;; 'read-expression-history) | _
457 ;; comment-end \n)
458 ;; resume:
459 ;; comment-start "End:" comment-end \n)
461 ;; Variables and command for automatically inserting pairs like () or "".
463 (defvar skeleton-pair nil
464 "If this is nil pairing is turned off, no matter what else is set.
465 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
466 will attempt to insert pairs of matching characters.")
469 (defvar skeleton-pair-on-word nil
470 "If this is nil, paired insertion is inhibited before or inside a word.")
473 (defvar skeleton-pair-filter-function (lambda () nil)
474 "Attempt paired insertion if this function returns nil, before inserting.
475 This allows for context-sensitive checking whether pairing is appropriate.")
478 (defvar skeleton-pair-alist ()
479 "An override alist of pairing partners matched against `last-command-event'.
480 Each alist element, which looks like (ELEMENT ...), is passed to
481 `skeleton-insert' with no interactor. Variable `str' does nothing.
483 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
485 (defvar skeleton-pair-default-alist '((?( _ ?)) (?\))
486 (?[ _ ?]) (?\])
487 (?{ _ ?}) (?\})
488 (?< _ ?>) (?\>)
489 (?« _ ?») (?\»)
490 (?` _ ?')))
492 ;;;###autoload
493 (defun skeleton-pair-insert-maybe (arg)
494 "Insert the character you type ARG times.
496 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
497 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
498 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
499 word, and if `skeleton-pair-filter-function' returns nil, pairing is performed.
500 Pairing is also prohibited if we are right after a quoting character
501 such as backslash.
503 If a match is found in `skeleton-pair-alist', that is inserted, else
504 the defaults are used. These are (), [], {}, <> and `' for the
505 symmetrical ones, and the same character twice for the others."
506 (interactive "*P")
507 (if (or arg (not skeleton-pair))
508 (self-insert-command (prefix-numeric-value arg))
509 (let* ((mark (and skeleton-autowrap
510 (or (eq last-command 'mouse-drag-region)
511 (and transient-mark-mode mark-active))))
512 (char last-command-event)
513 (skeleton (or (assq char skeleton-pair-alist)
514 (assq char skeleton-pair-default-alist)
515 `(,char _ ,char))))
516 (if (or (memq (char-syntax (preceding-char)) '(?\\ ?/))
517 (and (not mark)
518 (or overwrite-mode
519 (if (not skeleton-pair-on-word) (looking-at "\\w"))
520 (funcall skeleton-pair-filter-function))))
521 (self-insert-command (prefix-numeric-value arg))
522 ;; Newlines not desirable for inserting pairs. See bug#16138.
523 (let ((skeleton-end-newline nil))
524 (skeleton-insert (cons nil skeleton) (if mark -1)))))))
527 ;; A more serious example can be found in sh-script.el
528 ;; (defun mirror-mode ()
529 ;; "This major mode is an amusing little example of paired insertion.
530 ;;All printable characters do a paired self insert, while the other commands
531 ;;work normally."
532 ;; (interactive)
533 ;; (kill-all-local-variables)
534 ;; (make-local-variable 'skeleton-pair)
535 ;; (make-local-variable 'skeleton-pair-on-word)
536 ;; (make-local-variable 'skeleton-pair-filter-function)
537 ;; (make-local-variable 'skeleton-pair-alist)
538 ;; (setq major-mode 'mirror-mode
539 ;; mode-name "Mirror"
540 ;; skeleton-pair-on-word t
541 ;; ;; in the middle column insert one or none if odd window-width
542 ;; skeleton-pair-filter-function (lambda ()
543 ;; (if (>= (current-column)
544 ;; (/ (window-width) 2))
545 ;; ;; insert both on next line
546 ;; (next-line 1)
547 ;; ;; insert one or both?
548 ;; (= (* 2 (1+ (current-column)))
549 ;; (window-width))))
550 ;; ;; mirror these the other way round as well
551 ;; skeleton-pair-alist '((?) _ ?()
552 ;; (?] _ ?[)
553 ;; (?} _ ?{)
554 ;; (?> _ ?<)
555 ;; (?/ _ ?\\)
556 ;; (?\\ _ ?/)
557 ;; (?` ?` _ "''")
558 ;; (?' ?' _ "``"))
559 ;; ;; in this mode we exceptionally ignore the user, else it's no fun
560 ;; skeleton-pair t)
561 ;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
562 ;; (i 0))
563 ;; (use-local-map `(keymap ,map))
564 ;; (while (< i ? )
565 ;; (aset map i nil)
566 ;; (aset map (+ i 128) nil)
567 ;; (setq i (1+ i))))
568 ;; (run-mode-hooks 'mirror-mode-hook))
570 (provide 'skeleton)
572 ;;; skeleton.el ends here