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