(tex-mode-syntax-table, tex-latex-indent-syntax-table):
[bpt/emacs.git] / lisp / skeleton.el
CommitLineData
f3611c70 1;;; skeleton.el --- Lisp language extension for writing statement skeletons
b578f267 2
8fb7ff73 3;; Copyright (C) 1993, 1994, 1995, 1996, 2003 by Free Software Foundation, Inc.
ac59aed8 4
3e910376 5;; Author: Daniel Pfeiffer <occitan@esperanto.org>
ac59aed8 6;; Maintainer: FSF
f3611c70 7;; Keywords: extensions, abbrev, languages, tools
ac59aed8
RS
8
9;; This file is part of GNU Emacs.
10
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 2, or (at your option)
14;; any later version.
15
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.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
ac59aed8
RS
25
26;;; Commentary:
27
f3611c70 28;; A very concise language extension for writing structured statement
ac59aed8
RS
29;; skeleton insertion commands for programming language modes. This
30;; originated in shell-script mode and was applied to ada-mode's
31;; commands which shrunk to one third. And these commands are now
32;; user configurable.
33
34;;; Code:
35
f3611c70 36;; page 1: statement skeleton language definition & interpreter
ac59aed8
RS
37;; page 2: paired insertion
38;; page 3: mirror-mode, an example for setting up paired insertion
39
40
25ab24bc 41(defvar skeleton-transformation 'identity
f3611c70 42 "*If non-nil, function applied to literal strings before they are inserted.
ac59aed8
RS
43It should take strings and characters and return them transformed, or nil
44which means no transformation.
45Typical examples might be `upcase' or `capitalize'.")
46
47; this should be a fourth argument to defvar
48(put 'skeleton-transformation 'variable-interactive
49 "aTransformation function: ")
50
51
017d787a
RS
52(defvar skeleton-autowrap t
53 "Controls wrapping behaviour of functions created with `define-skeleton'.
54When the region is visible (due to `transient-mark-mode' or marking a region
4ba4c353 55with the mouse) and this is non-nil and the function was called without an
017d787a
RS
56explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
57region.
58
59We will probably delete this variable in a future Emacs version
60unless we get a substantial number of complaints about the auto-wrap
61feature.")
ac59aed8 62
d21584d6
SM
63(defvar skeleton-end-newline t
64 "If non-nil, make sure that the skeleton inserted ends with a newline.
65This just influences the way the default `skeleton-end-hook' behaves.")
66
da6a884f
KH
67(defvar skeleton-end-hook
68 (lambda ()
d21584d6 69 (or (eolp) (not skeleton-end-newline) (newline-and-indent)))
da6a884f 70 "Hook called at end of skeleton but before going to point of interest.
d21584d6
SM
71By default this moves out anything following to next line,
72 unless `skeleton-end-newline' is set to nil.
da6a884f
KH
73The variables `v1' and `v2' are still set when calling this.")
74
75
f3611c70
KH
76;;;###autoload
77(defvar skeleton-filter 'identity
017d787a 78 "Function for transforming a skeleton proxy's aliases' variable value.")
f3611c70 79
f3611c70 80(defvar skeleton-untabify t
4ba4c353 81 "When non-nil untabifies when deleting backwards with element -ARG.")
f3611c70 82
4bfd70e9 83(defvar skeleton-newline-indent-rigidly nil
4ba4c353 84 "When non-nil, indent rigidly under current line for element `\\n'.
4bfd70e9 85Else use mode's `indent-line-function'.")
f3611c70
KH
86
87(defvar skeleton-further-elements ()
88 "A buffer-local varlist (see `let') of mode specific skeleton elements.
89These variables are bound while interpreting a skeleton. Their value may
90in turn be any valid skeleton element if they are themselves to be used as
91skeleton elements.")
92(make-variable-buffer-local 'skeleton-further-elements)
93
94
ac59aed8
RS
95(defvar skeleton-subprompt
96 (substitute-command-keys
97 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
f3611c70
KH
98 "*Replacement for %s in prompts of recursive subskeletons.")
99
ac59aed8 100
ac59aed8
RS
101(defvar skeleton-debug nil
102 "*If non-nil `define-skeleton' will override previous definition.")
103
157b7809
RS
104(defvar skeleton-positions nil
105 "List of positions marked with @, after skeleton insertion.
106The list describes the most recent skeleton insertion, and its elements
107are integer buffer positions in the reverse order of the insertion order.")
a6dccb51 108
4bfd70e9
KH
109;; reduce the number of compiler warnings
110(defvar skeleton)
111(defvar skeleton-modified)
112(defvar skeleton-point)
113(defvar skeleton-regions)
ac59aed8 114
7076c5cd
SM
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))
ac59aed8 119;;;###autoload
f3611c70 120(defmacro define-skeleton (command documentation &rest skeleton)
ac59aed8 121 "Define a user-configurable COMMAND that enters a statement skeleton.
8fb7ff73
SM
122DOCUMENTATION is that of the command.
123SKELETON is as defined under `skeleton-insert'."
7076c5cd 124 (declare (debug (&define name stringp skeleton-edebug-spec)))
ac59aed8 125 (if skeleton-debug
f3611c70 126 (set command skeleton))
773500ab 127 `(progn
8fb7ff73
SM
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)
28895aea
RS
131 (defun ,command (&optional str arg)
132 ,(concat documentation
8fb7ff73 133 (if (string-match "\n\\'" documentation)
28895aea
RS
134 "" "\n")
135 "\n"
136 "This is a skeleton command (see `skeleton-insert').
137Normally the skeleton text is inserted at point, with nothing \"inside\".
138If there is a highlighted region, the skeleton text is wrapped
139around the region text.
140
141A prefix argument ARG says to wrap the skeleton around the next ARG words.
53d393c9 142A prefix argument of -1 says to wrap around region, even if not highlighted.
28895aea 143A prefix argument of zero says to wrap around zero words---that is, nothing.
53d393c9 144This is a way of overriding the use of a highlighted region.")
28895aea
RS
145 (interactive "*P\nP")
146 (skeleton-proxy-new ',skeleton str arg))))
f3611c70 147
28895aea
RS
148;;;###autoload
149(defun skeleton-proxy-new (skeleton &optional str arg)
8fb7ff73 150 "Insert SKELETON.
28895aea
RS
151Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
152If no ARG was given, but the region is visible, ARG defaults to -1 depending
153on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
154This command can also be an abbrev expansion (3rd and 4th columns in
155\\[edit-abbrevs] buffer: \"\" command-name).
f3611c70 156
8fb7ff73
SM
157Optional first argument STR may also be a string which will be the value
158of `str' whereas the skeleton's interactor is then ignored."
159 (skeleton-insert (funcall skeleton-filter 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 -1))
168 (if (stringp str)
169 str))
170 ;; Return non-nil to tell expand-abbrev that expansion has happened.
171 ;; Otherwise the no-self-insert is ignored.
172 t)
ac59aed8 173
ac59aed8 174;;;###autoload
93c36a6d 175(defun skeleton-insert (skeleton &optional regions str)
f3611c70 176 "Insert the complex statement skeleton SKELETON describes very concisely.
ac59aed8 177
93c36a6d
RS
178With optional second argument REGIONS, wrap first interesting point
179\(`_') in skeleton around next REGIONS words, if REGIONS is positive.
180If REGIONS is negative, wrap REGIONS preceding interregions into first
181REGIONS interesting positions \(successive `_'s) in skeleton.
f3611c70 182
93c36a6d
RS
183An interregion is the stretch of text between two contiguous marked
184points. If you marked A B C [] (where [] is the cursor) in
185alphabetical order, the 3 interregions are simply the last 3 regions.
186But if you marked B A [] C, the interregions are B-A, A-[], []-C.
187
188The optional third argument STR, if specified, is the value for the
189variable `str' within the skeleton. When this is non-nil, the
190interactor gets ignored, and this should be a valid skeleton element.
4bfd70e9 191
f3611c70
KH
192SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
193not needed, a prompt-string or an expression for complex read functions.
ac59aed8
RS
194
195If ELEMENT is a string or a character it gets inserted (see also
196`skeleton-transformation'). Other possibilities are:
197
4bfd70e9 198 \\n go to next line and indent according to mode
3bb34a02 199 _ interesting point, interregion here
b7d05949
JB
200 - interesting point, no interregion interaction, overrides
201 interesting point set by _
f3611c70 202 > indent line (or interregion if > _) according to major mode
157b7809 203 @ add position to `skeleton-positions'
5b83f9c0
SM
204 & do next ELEMENT iff previous moved point
205 | do next ELEMENT iff previous didn't move point
f3611c70 206 -num delete num preceding characters (see `skeleton-untabify')
ac59aed8
RS
207 resume: skipped, continue here if quit is signaled
208 nil skipped
209
b7d05949
JB
210After termination, point will be positioned at the last occurrence of -
211or at the first occurrence of _ or at the end of the inserted text.
3bb34a02 212
f3611c70
KH
213Further elements can be defined via `skeleton-further-elements'. ELEMENT may
214itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
215different inputs. The SKELETON is processed as often as the user enters a
216non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
217continues after `resume:' and positions at `_' if any. If INTERACTOR in such
218a subskeleton is a prompt-string which contains a \".. %s ..\" it is
93c36a6d 219formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
4bfd70e9 220strings with the subskeleton being repeated once for each string.
ac59aed8 221
93c36a6d 222Quoted Lisp expressions are evaluated for their side-effects.
017d787a 223Other Lisp expressions are evaluated and the value treated as above.
4ba4c353 224Note that expressions may not return t since this implies an
f3611c70
KH
225endless loop. Modes can define other symbols by locally setting them
226to any valid skeleton element. The following local variables are
227available:
ac59aed8 228
f3611c70 229 str first time: read a string according to INTERACTOR
ac59aed8 230 then: insert previously read string once more
4ba4c353 231 help help-form during interaction with the user or nil
773500ab 232 input initial input (string or cons with index) while reading str
017d787a 233 v1, v2 local variables for memorizing anything you want
4bfd70e9
KH
234
235When done with skeleton, but before going back to `_'-point call
4ba4c353 236`skeleton-end-hook' if that is non-nil."
93c36a6d
RS
237 (let ((skeleton-regions regions))
238 (and skeleton-regions
239 (setq skeleton-regions
240 (if (> skeleton-regions 0)
25ab24bc 241 (list (copy-marker (point) t)
93c36a6d
RS
242 (save-excursion (forward-word skeleton-regions)
243 (point-marker)))
244 (setq skeleton-regions (- skeleton-regions))
245 ;; copy skeleton-regions - 1 elements from `mark-ring'
246 (let ((l1 (cons (mark-marker) mark-ring))
25ab24bc 247 (l2 (list (copy-marker (point) t))))
93c36a6d 248 (while (and l1 (> skeleton-regions 0))
25ab24bc
SM
249 (push (copy-marker (pop l1) t) l2)
250 (setq skeleton-regions (1- skeleton-regions)))
93c36a6d
RS
251 (sort l2 '<))))
252 (goto-char (car skeleton-regions))
253 (setq skeleton-regions (cdr skeleton-regions)))
254 (let ((beg (point))
255 skeleton-modified skeleton-point resume: help input v1 v2)
256 (setq skeleton-positions nil)
257 (unwind-protect
258 (eval `(let ,skeleton-further-elements
259 (skeleton-internal-list skeleton str)))
260 (run-hooks 'skeleton-end-hook)
261 (sit-for 0)
262 (or (pos-visible-in-window-p beg)
263 (progn
264 (goto-char beg)
265 (recenter 0)))
266 (if skeleton-point
267 (goto-char skeleton-point))))))
268
5b75ef8b 269(defun skeleton-read (prompt &optional initial-input recursive)
773500ab 270 "Function for reading a string from the minibuffer within skeletons.
f8a5751b
RS
271
272PROMPT must be a string or a form that evaluates to a string.
273It may contain a `%s' which will be replaced by `skeleton-subprompt'.
4ba4c353
JB
274If non-nil second arg INITIAL-INPUT or variable `input' is a string or
275cons with index to insert before reading. If third arg RECURSIVE is non-nil
773500ab
KH
276i.e. we are handling the iterator of a subskeleton, returns empty string if
277user didn't modify input.
278While reading, the value of `minibuffer-help-form' is variable `help' if that
93c36a6d 279is non-nil or a default string."
da6a884f
KH
280 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
281 (if recursive "\
ac59aed8
RS
282As long as you provide input you will insert another subskeleton.
283
284If you enter the empty string, the loop inserting subskeletons is
285left, and the current one is removed as far as it has been entered.
286
287If you quit, the current subskeleton is removed as far as it has been
288entered. No more of the skeleton will be inserted, except maybe for a
f3611c70 289syntactically necessary termination."
93c36a6d 290 "\
f3611c70 291You are inserting a skeleton. Standard text gets inserted into the buffer
da6a884f
KH
292automatically, and you are prompted to fill in the variable parts.")))
293 (eolp (eolp)))
294 ;; since Emacs doesn't show main window's cursor, do something noticeable
295 (or eolp
296 (open-line 1))
297 (unwind-protect
93c36a6d
RS
298 (setq prompt (if (stringp prompt)
299 (read-string (format prompt skeleton-subprompt)
300 (setq initial-input
301 (or initial-input
302 (symbol-value 'input))))
303 (eval prompt)))
da6a884f
KH
304 (or eolp
305 (delete-char 1))))
773500ab 306 (if (and recursive
93c36a6d
RS
307 (or (null prompt)
308 (string= prompt "")
309 (equal prompt initial-input)
310 (equal prompt (car-safe initial-input))))
ac59aed8 311 (signal 'quit t)
5b75ef8b 312 prompt))
ac59aed8 313
4bfd70e9 314(defun skeleton-internal-list (skeleton &optional str recursive)
f3611c70
KH
315 (let* ((start (save-excursion (beginning-of-line) (point)))
316 (column (current-column))
25ab24bc 317 (line (buffer-substring start (line-end-position)))
f3611c70 318 opoint)
4bfd70e9
KH
319 (or str
320 (setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
da8249b4 321 (when (and (eq (cadr skeleton) '\n) (not recursive)
25ab24bc 322 (save-excursion (skip-chars-backward " \t") (bolp)))
5b83f9c0 323 (setq skeleton (cons nil (cons '> (cddr skeleton)))))
4bfd70e9 324 (while (setq skeleton-modified (eq opoint (point))
773500ab
KH
325 opoint (point)
326 skeleton (cdr skeleton))
327 (condition-case quit
8fb7ff73 328 (skeleton-internal-1 (car skeleton) nil recursive)
773500ab
KH
329 (quit
330 (if (eq (cdr quit) 'recursive)
4bfd70e9
KH
331 (setq recursive 'quit
332 skeleton (memq 'resume: skeleton))
25ab24bc
SM
333 ;; Remove the subskeleton as far as it has been shown
334 ;; the subskeleton shouldn't have deleted outside current line.
da6a884f 335 (end-of-line)
773500ab
KH
336 (delete-region start (point))
337 (insert line)
338 (move-to-column column)
339 (if (cdr quit)
340 (setq skeleton ()
341 recursive nil)
342 (signal 'quit 'recursive)))))))
343 ;; maybe continue loop or go on to next outer resume: section
344 (if (eq recursive 'quit)
345 (signal 'quit 'recursive)
346 recursive))
f3611c70 347
8fb7ff73 348(defun skeleton-internal-1 (element &optional literal recursive)
25ab24bc
SM
349 (cond
350 ((char-or-string-p element)
351 (if (and (integerp element) ; -num
352 (< element 0))
353 (if skeleton-untabify
354 (backward-delete-char-untabify (- element))
355 (delete-backward-char (- element)))
8fb7ff73 356 (insert (if (not literal)
25ab24bc
SM
357 (funcall skeleton-transformation element)
358 element))))
359 ((or (eq element '\n) ; actually (eq '\n 'n)
360 ;; The sequence `> \n' is handled specially so as to indent the first
361 ;; line after inserting the newline (to get the proper indentation).
362 (and (eq element '>) (eq (nth 1 skeleton) '\n) (pop skeleton)))
363 (let ((pos (if (eq element '>) (point))))
364 (cond
365 ((and skeleton-regions (eq (nth 1 skeleton) '_))
366 (or (eolp) (newline))
367 (if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
368 (indent-region (line-beginning-position)
369 (car skeleton-regions) nil))
370 ;; \n as last element only inserts \n if not at eol.
da8249b4 371 ((and (null (cdr skeleton)) (not recursive) (eolp))
25ab24bc
SM
372 (if pos (indent-according-to-mode)))
373 (skeleton-newline-indent-rigidly
374 (let ((pt (point)))
375 (newline)
376 (indent-to (save-excursion
377 (goto-char pt)
378 (if pos (indent-according-to-mode))
379 (current-indentation)))))
380 (t (if pos (reindent-then-newline-and-indent)
381 (newline)
382 (indent-according-to-mode))))))
383 ((eq element '>)
384 (if (and skeleton-regions (eq (nth 1 skeleton) '_))
385 (indent-region (line-beginning-position)
386 (car skeleton-regions) nil)
387 (indent-according-to-mode)))
388 ((eq element '_)
389 (if skeleton-regions
390 (progn
391 (goto-char (pop skeleton-regions))
392 (and (<= (current-column) (current-indentation))
393 (eq (nth 1 skeleton) '\n)
8fb7ff73
SM
394 (end-of-line 0)))
395 (or skeleton-point
396 (setq skeleton-point (point)))))
397 ((eq element '-)
398 (setq skeleton-point (point)))
399 ((eq element '&)
400 (when skeleton-modified (pop skeleton)))
401 ((eq element '|)
402 (unless skeleton-modified (pop skeleton)))
403 ((eq element '@)
404 (push (point) skeleton-positions))
405 ((eq 'quote (car-safe element))
406 (eval (nth 1 element)))
c93992b3
SM
407 ((and (consp element)
408 (or (stringp (car element)) (listp (car element))))
409 ;; Don't forget: `symbolp' is also true for nil.
25ab24bc 410 (if (symbolp (car-safe (car element)))
c93992b3
SM
411 (while (and (skeleton-internal-list element nil t)
412 ;; If the interactor is nil, don't infinite loop.
413 (car element)))
25ab24bc
SM
414 (setq literal (car element))
415 (while literal
416 (skeleton-internal-list element (car literal))
417 (setq literal (cdr literal)))))
418 ((null element))
8fb7ff73 419 (t (skeleton-internal-1 (eval element) t recursive))))
25ab24bc 420\f
f3611c70 421;; Maybe belongs into simple.el or elsewhere
25ab24bc
SM
422;; ;;;###autoload
423;; (define-skeleton local-variables-section
ff85d4f3
RS
424;; "Insert a local variables section. Use current comment syntax if any."
425;; (completing-read "Mode: " obarray
426;; (lambda (symbol)
427;; (if (commandp symbol)
428;; (string-match "-mode$" (symbol-name symbol))))
429;; t)
430;; '(save-excursion
431;; (if (re-search-forward page-delimiter nil t)
1cd7adc6 432;; (error "Not on last page")))
ff85d4f3
RS
433;; comment-start "Local Variables:" comment-end \n
434;; comment-start "mode: " str
435;; & -5 | '(kill-line 0) & -1 | comment-end \n
436;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
437;; obarray
438;; (lambda (symbol)
439;; (or (eq symbol 'eval)
440;; (user-variable-p symbol)))
441;; t)
442;; comment-start str ": "
443;; (read-from-minibuffer "Expression: " nil read-expression-map nil
444;; 'read-expression-history) | _
445;; comment-end \n)
446;; resume:
28895aea 447;; comment-start "End:" comment-end \n)
ac59aed8 448\f
bc35d5b3 449;; Variables and command for automatically inserting pairs like () or "".
ac59aed8 450
bc35d5b3 451(defvar skeleton-pair nil
ac59aed8 452 "*If this is nil pairing is turned off, no matter what else is set.
bc35d5b3
RS
453Otherwise modes with `skeleton-pair-insert-maybe' on some keys
454will attempt to insert pairs of matching characters.")
ac59aed8
RS
455
456
bc35d5b3
RS
457(defvar skeleton-pair-on-word nil
458 "*If this is nil, paired insertion is inhibited before or inside a word.")
ac59aed8
RS
459
460
5b83f9c0 461(defvar skeleton-pair-filter (lambda () nil)
bc35d5b3 462 "Attempt paired insertion if this function returns nil, before inserting.
ac59aed8
RS
463This allows for context-sensitive checking whether pairing is appropriate.")
464
465
bc35d5b3
RS
466(defvar skeleton-pair-alist ()
467 "An override alist of pairing partners matched against `last-command-char'.
468Each alist element, which looks like (ELEMENT ...), is passed to
469`skeleton-insert' with no interactor. Variable `str' does nothing.
ac59aed8 470
f3611c70 471Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
ac59aed8 472
c93992b3
SM
473(defvar skeleton-pair-default-alist '((?( _ ?)) (?\))
474 (?[ _ ?]) (?\])
475 (?{ _ ?}) (?\})
476 (?< _ ?>) (?\>)
477