]> code.delx.au - gnu-emacs/blob - lisp/skeleton.el
(xscheme-control-g-synchronization-p): Doc fix.
[gnu-emacs] / lisp / skeleton.el
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons
2 ;; Copyright (C) 1993, 1994, 1995 by Free Software Foundation, Inc.
3
4 ;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de, fax (+49 69) 7588-2389
5 ;; Maintainer: FSF
6 ;; Keywords: extensions, abbrev, languages, tools
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Commentary:
25
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.
31
32 ;;; Code:
33
34 ;; page 1: statement skeleton language definition & interpreter
35 ;; page 2: paired insertion
36 ;; page 3: mirror-mode, an example for setting up paired insertion
37
38
39 (defvar skeleton-transformation nil
40 "*If non-nil, function applied to literal strings before they are inserted.
41 It should take strings and characters and return them transformed, or nil
42 which means no transformation.
43 Typical examples might be `upcase' or `capitalize'.")
44
45 ; this should be a fourth argument to defvar
46 (put 'skeleton-transformation 'variable-interactive
47 "aTransformation function: ")
48
49
50
51 (defvar skeleton-end-hook
52 (lambda ()
53 (or (eolp) (newline-and-indent)))
54 "Hook called at end of skeleton but before going to point of interest.
55 By default this moves out anything following to next line.
56 The variables `v1' and `v2' are still set when calling this.")
57
58
59 ;;;###autoload
60 (defvar skeleton-filter 'identity
61 "Function for transforming a skeleton-proxy's aliases' variable value.")
62
63 (defvar skeleton-untabify t
64 "When non-`nil' untabifies when deleting backwards with element -ARG.")
65
66 (defvar skeleton-newline-indent-rigidly nil
67 "When non-`nil', indent rigidly under current line for element `\\n'.
68 Else use mode's `indent-line-function'.")
69
70 (defvar skeleton-further-elements ()
71 "A buffer-local varlist (see `let') of mode specific skeleton elements.
72 These variables are bound while interpreting a skeleton. Their value may
73 in turn be any valid skeleton element if they are themselves to be used as
74 skeleton elements.")
75 (make-variable-buffer-local 'skeleton-further-elements)
76
77
78 (defvar skeleton-subprompt
79 (substitute-command-keys
80 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
81 "*Replacement for %s in prompts of recursive subskeletons.")
82
83
84 (defvar skeleton-abbrev-cleanup nil)
85
86
87 (defvar skeleton-debug nil
88 "*If non-nil `define-skeleton' will override previous definition.")
89
90 ;; reduce the number of compiler warnings
91 (defvar skeleton)
92 (defvar skeleton-modified)
93 (defvar skeleton-point)
94 (defvar skeleton-regions)
95
96 ;;;###autoload
97 (defmacro define-skeleton (command documentation &rest skeleton)
98 "Define a user-configurable COMMAND that enters a statement skeleton.
99 DOCUMENTATION is that of the command, while the variable of the same name,
100 which contains the skeleton, has a documentation to that effect.
101 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
102 (if skeleton-debug
103 (set command skeleton))
104 `(progn
105 (defvar ,command ',skeleton ,documentation)
106 (defalias ',command 'skeleton-proxy)))
107
108
109
110 ;; This command isn't meant to be called, only it's aliases with meaningful
111 ;; names are.
112 ;;;###autoload
113 (defun skeleton-proxy (&optional str arg)
114 "Insert skeleton defined by variable of same name (see `skeleton-insert').
115 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
116 This command can also be an abbrev expansion (3rd and 4th columns in
117 \\[edit-abbrevs] buffer: \"\" command-name).
118
119 When called as a function, optional first argument STR may also be a string
120 which will be the value of `str' whereas the skeleton's interactor is then
121 ignored."
122 (interactive "*P\nP")
123 (let ((function (nth 1 (backtrace-frame 1))))
124 (if (eq function 'nth) ; uncompiled lisp function
125 (setq function (nth 1 (backtrace-frame 5)))
126 (if (eq function 'byte-code) ; tracing byte-compiled function
127 (setq function (nth 1 (backtrace-frame 2)))))
128 (if (not (setq function (funcall skeleton-filter (symbol-value function))))
129 (if (memq this-command '(self-insert-command
130 skeleton-pair-insert-maybe
131 expand-abbrev))
132 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
133 (skeleton-insert function
134 (if (setq skeleton-abbrev-cleanup
135 (or (eq this-command 'self-insert-command)
136 (eq this-command
137 'skeleton-pair-insert-maybe)))
138 ()
139 ;; Pretend C-x a e passed its prefix arg to us
140 (if (or arg current-prefix-arg)
141 (prefix-numeric-value (or arg
142 current-prefix-arg))))
143 (if (stringp str)
144 str))
145 (if skeleton-abbrev-cleanup
146 (setq deferred-action-list t
147 deferred-action-function 'skeleton-abbrev-cleanup
148 skeleton-abbrev-cleanup (point))))))
149
150
151 (defun skeleton-abbrev-cleanup (&rest list)
152 "Value for `post-command-hook' to remove char that expanded abbrev."
153 (if (integerp skeleton-abbrev-cleanup)
154 (progn
155 (delete-region skeleton-abbrev-cleanup (point))
156 (setq deferred-action-list ()
157 deferred-action-function nil
158 skeleton-abbrev-cleanup nil))))
159
160
161 ;;;###autoload
162 (defun skeleton-insert (skeleton &optional skeleton-regions str)
163 "Insert the complex statement skeleton SKELETON describes very concisely.
164
165 With optional third REGIONS wrap first interesting point (`_') in skeleton
166 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
167 wrap REGIONS preceding interregions into first REGIONS interesting positions
168 \(successive `_'s) in skeleton. An interregion is the stretch of text between
169 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
170 in alphabetical order, the 3 interregions are simply the last 3 regions. But
171 if you marked B A [] C, the interregions are B-A, A-[], []-C.
172
173 Optional fourth STR is the value for the variable `str' within the skeleton.
174 When this is non-`nil' the interactor gets ignored, and this should be a valid
175 skeleton element.
176
177 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
178 not needed, a prompt-string or an expression for complex read functions.
179
180 If ELEMENT is a string or a character it gets inserted (see also
181 `skeleton-transformation'). Other possibilities are:
182
183 \\n go to next line and indent according to mode
184 _ interesting point, interregion here, point after termination
185 > indent line (or interregion if > _) according to major mode
186 & do next ELEMENT if previous moved point
187 | do next ELEMENT if previous didn't move point
188 -num delete num preceding characters (see `skeleton-untabify')
189 resume: skipped, continue here if quit is signaled
190 nil skipped
191
192 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
193 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
194 different inputs. The SKELETON is processed as often as the user enters a
195 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
196 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
197 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
198 formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
199 strings with the subskeleton being repeated once for each string.
200
201 Quoted lisp-expressions are evaluated evaluated for their side-effect.
202 Other lisp-expressions are evaluated and the value treated as above.
203 Note that expressions may not return `t' since this implies an
204 endless loop. Modes can define other symbols by locally setting them
205 to any valid skeleton element. The following local variables are
206 available:
207
208 str first time: read a string according to INTERACTOR
209 then: insert previously read string once more
210 help help-form during interaction with the user or `nil'
211 input initial input (string or cons with index) while reading str
212 v1, v2 local variables for memorising anything you want
213
214 When done with skeleton, but before going back to `_'-point call
215 `skeleton-end-hook' if that is non-`nil'."
216 (and skeleton-regions
217 (setq skeleton-regions
218 (if (> skeleton-regions 0)
219 (list (point-marker)
220 (save-excursion (forward-word skeleton-regions)
221 (point-marker)))
222 (setq skeleton-regions (- skeleton-regions))
223 ;; copy skeleton-regions - 1 elements from `mark-ring'
224 (let ((l1 (cons (mark-marker) mark-ring))
225 (l2 (list (point-marker))))
226 (while (and l1 (> skeleton-regions 0))
227 (setq l2 (cons (car l1) l2)
228 skeleton-regions (1- skeleton-regions)
229 l1 (cdr l1)))
230 (sort l2 '<))))
231 (goto-char (car skeleton-regions))
232 (setq skeleton-regions (cdr skeleton-regions)))
233 (let ((beg (point))
234 skeleton-modified skeleton-point resume: help input v1 v2)
235 (unwind-protect
236 (eval `(let ,skeleton-further-elements
237 (skeleton-internal-list skeleton str)))
238 (run-hooks 'skeleton-end-hook)
239 (sit-for 0)
240 (or (pos-visible-in-window-p beg)
241 (progn
242 (goto-char beg)
243 (recenter 0)))
244 (if skeleton-point
245 (goto-char skeleton-point)))))
246
247 (defun skeleton-read (str &optional initial-input recursive)
248 "Function for reading a string from the minibuffer within skeletons.
249 PROMPT may contain a `%s' which will be replaced by `skeleton-subprompt'.
250 If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or
251 cons with index to insert before reading. If third arg RECURSIVE is non-`nil'
252 i.e. we are handling the iterator of a subskeleton, returns empty string if
253 user didn't modify input.
254 While reading, the value of `minibuffer-help-form' is variable `help' if that
255 is non-`nil' or a default string."
256 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
257 (if recursive "\
258 As long as you provide input you will insert another subskeleton.
259
260 If you enter the empty string, the loop inserting subskeletons is
261 left, and the current one is removed as far as it has been entered.
262
263 If you quit, the current subskeleton is removed as far as it has been
264 entered. No more of the skeleton will be inserted, except maybe for a
265 syntactically necessary termination."
266 "\
267 You are inserting a skeleton. Standard text gets inserted into the buffer
268 automatically, and you are prompted to fill in the variable parts.")))
269 (eolp (eolp)))
270 ;; since Emacs doesn't show main window's cursor, do something noticeable
271 (or eolp
272 (open-line 1))
273 (unwind-protect
274 (setq str (if (stringp str)
275 (read-string (format str skeleton-subprompt)
276 (setq initial-input
277 (or initial-input
278 (symbol-value 'input))))
279 (eval str)))
280 (or eolp
281 (delete-char 1))))
282 (if (and recursive
283 (or (null str)
284 (string= str "")
285 (equal str initial-input)
286 (equal str (car-safe initial-input))))
287 (signal 'quit t)
288 str))
289
290 (defun skeleton-internal-list (skeleton &optional str recursive)
291 (let* ((start (save-excursion (beginning-of-line) (point)))
292 (column (current-column))
293 (line (buffer-substring start
294 (save-excursion (end-of-line) (point))))
295 opoint)
296 (or str
297 (setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
298 (while (setq skeleton-modified (eq opoint (point))
299 opoint (point)
300 skeleton (cdr skeleton))
301 (condition-case quit
302 (skeleton-internal-1 (car skeleton))
303 (quit
304 (if (eq (cdr quit) 'recursive)
305 (setq recursive 'quit
306 skeleton (memq 'resume: skeleton))
307 ;; remove the subskeleton as far as it has been shown
308 ;; the subskeleton shouldn't have deleted outside current line
309 (end-of-line)
310 (delete-region start (point))
311 (insert line)
312 (move-to-column column)
313 (if (cdr quit)
314 (setq skeleton ()
315 recursive nil)
316 (signal 'quit 'recursive)))))))
317 ;; maybe continue loop or go on to next outer resume: section
318 (if (eq recursive 'quit)
319 (signal 'quit 'recursive)
320 recursive))
321
322
323 (defun skeleton-internal-1 (element &optional literal)
324 (cond ((char-or-string-p element)
325 (if (and (integerp element) ; -num
326 (< element 0))
327 (if skeleton-untabify
328 (backward-delete-char-untabify (- element))
329 (delete-backward-char (- element)))
330 (insert-before-markers (if (and skeleton-transformation
331 (not literal))
332 (funcall skeleton-transformation element)
333 element))))
334 ((eq element '\n) ; actually (eq '\n 'n)
335 (if (and skeleton-regions
336 (eq (nth 1 skeleton) '_))
337 (progn
338 (or (eolp)
339 (newline))
340 (indent-region (point) (car skeleton-regions) nil))
341 (if skeleton-newline-indent-rigidly
342 (indent-to (prog1 (current-indentation)
343 (newline)))
344 (newline)
345 (indent-according-to-mode))))
346 ((eq element '>)
347 (if (and skeleton-regions
348 (eq (nth 1 skeleton) '_))
349 (indent-region (point) (car skeleton-regions) nil)
350 (indent-according-to-mode)))
351 ((eq element '_)
352 (if skeleton-regions
353 (progn
354 (goto-char (car skeleton-regions))
355 (setq skeleton-regions (cdr skeleton-regions))
356 (and (<= (current-column) (current-indentation))
357 (eq (nth 1 skeleton) '\n)
358 (end-of-line 0)))
359 (or skeleton-point
360 (setq skeleton-point (point)))))
361 ((eq element '&)
362 (if skeleton-modified
363 (setq skeleton (cdr skeleton))))
364 ((eq element '|)
365 (or skeleton-modified
366 (setq skeleton (cdr skeleton))))
367 ((eq 'quote (car-safe element))
368 (eval (nth 1 element)))
369 ((or (stringp (car-safe element))
370 (consp (car-safe element)))
371 (if (symbolp (car-safe (car element)))
372 (while (skeleton-internal-list element nil t))
373 (setq literal (car element))
374 (while literal
375 (skeleton-internal-list element (car literal))
376 (setq literal (cdr literal)))))
377 ((null element))
378 ((skeleton-internal-1 (eval element) t))))
379
380
381 ;; Maybe belongs into simple.el or elsewhere
382
383 (define-skeleton local-variables-section
384 "Insert a local variables section. Use current comment syntax if any."
385 ()
386 '(save-excursion
387 (if (re-search-forward page-delimiter nil t)
388 (error "Not on last page.")))
389 comment-start "Local Variables:" comment-end \n
390 comment-start "mode: "
391 (completing-read "Mode: " obarray
392 (lambda (symbol)
393 (if (commandp symbol)
394 (string-match "-mode$" (symbol-name symbol))))
395 t)
396 & -5 | '(kill-line 0) & -1 | comment-end \n
397 ( (completing-read (format "Variable, %s: " skeleton-subprompt)
398 obarray
399 (lambda (symbol)
400 (or (eq symbol 'eval)
401 (user-variable-p symbol)))
402 t)
403 comment-start str ": "
404 (read-from-minibuffer "Expression: " nil read-expression-map nil
405 'read-expression-history) | _
406 comment-end \n)
407 resume:
408 comment-start "End:" comment-end)
409 \f
410 ;; Variables and command for automatically inserting pairs like () or "".
411
412 (defvar skeleton-pair nil
413 "*If this is nil pairing is turned off, no matter what else is set.
414 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
415 will attempt to insert pairs of matching characters.")
416
417
418 (defvar skeleton-pair-on-word nil
419 "*If this is nil, paired insertion is inhibited before or inside a word.")
420
421
422 (defvar skeleton-pair-filter (lambda ())
423 "Attempt paired insertion if this function returns nil, before inserting.
424 This allows for context-sensitive checking whether pairing is appropriate.")
425
426
427 (defvar skeleton-pair-alist ()
428 "An override alist of pairing partners matched against `last-command-char'.
429 Each alist element, which looks like (ELEMENT ...), is passed to
430 `skeleton-insert' with no interactor. Variable `str' does nothing.
431
432 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
433
434
435 ;;;###autoload
436 (defun skeleton-pair-insert-maybe (arg)
437 "Insert the character you type ARG times.
438
439 With no ARG, if `skeleton-pair' is non-nil, and if
440 `skeleton-pair-on-word' is non-nil or we are not before or inside a
441 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
442
443 If a match is found in `skeleton-pair-alist', that is inserted, else
444 the defaults are used. These are (), [], {}, <> and `' for the
445 symmetrical ones, and the same character twice for the others."
446 (interactive "*P")
447 (if (or arg
448 overwrite-mode
449 (not skeleton-pair)
450 (if (not skeleton-pair-on-word) (looking-at "\\w"))
451 (funcall skeleton-pair-filter))
452 (self-insert-command (prefix-numeric-value arg))
453 (self-insert-command 1)
454 (if skeleton-abbrev-cleanup
455 ()
456 ;; (preceding-char) is stripped of any Meta-stuff in last-command-char
457 (if (setq arg (assq (preceding-char) skeleton-pair-alist))
458 ;; typed char is inserted (car is no real interactor)
459 (let (skeleton-end-hook)
460 (skeleton-insert arg))
461 (save-excursion
462 (insert (or (cdr (assq (preceding-char)
463 '((?( . ?))
464 (?[ . ?])
465 (?{ . ?})
466 (?< . ?>)
467 (?` . ?'))))
468 last-command-char)))))))
469
470 \f
471 ;;; ;; A more serious example can be found in sh-script.el
472 ;;; ;; The quote before (defun prevents this from being byte-compiled.
473 ;;;(defun mirror-mode ()
474 ;;; "This major mode is an amusing little example of paired insertion.
475 ;;;All printable characters do a paired self insert, while the other commands
476 ;;;work normally."
477 ;;; (interactive)
478 ;;; (kill-all-local-variables)
479 ;;; (make-local-variable 'pair)
480 ;;; (make-local-variable 'pair-on-word)
481 ;;; (make-local-variable 'pair-filter)
482 ;;; (make-local-variable 'pair-alist)
483 ;;; (setq major-mode 'mirror-mode
484 ;;; mode-name "Mirror"
485 ;;; pair-on-word t
486 ;;; ;; in the middle column insert one or none if odd window-width
487 ;;; pair-filter (lambda ()
488 ;;; (if (>= (current-column)
489 ;;; (/ (window-width) 2))
490 ;;; ;; insert both on next line
491 ;;; (next-line 1)
492 ;;; ;; insert one or both?
493 ;;; (= (* 2 (1+ (current-column)))
494 ;;; (window-width))))
495 ;;; ;; mirror these the other way round as well
496 ;;; pair-alist '((?) _ ?()
497 ;;; (?] _ ?[)
498 ;;; (?} _ ?{)
499 ;;; (?> _ ?<)
500 ;;; (?/ _ ?\\)
501 ;;; (?\\ _ ?/)
502 ;;; (?` ?` _ "''")
503 ;;; (?' ?' _ "``"))
504 ;;; ;; in this mode we exceptionally ignore the user, else it's no fun
505 ;;; pair t)
506 ;;; (let ((map (make-keymap))
507 ;;; (i ? ))
508 ;;; (use-local-map map)
509 ;;; (setq map (car (cdr map)))
510 ;;; (while (< i ?\^?)
511 ;;; (aset map i 'skeleton-pair-insert-maybe)
512 ;;; (setq i (1+ i))))
513 ;;; (run-hooks 'mirror-mode-hook))
514
515 ;; skeleton.el ends here