[HAVE_NTGUI] (do_scrolling, do_direct_scrolling): Update frame geometry.
[bpt/emacs.git] / lisp / skeleton.el
CommitLineData
f3611c70
KH
1;;; skeleton.el --- Lisp language extension for writing statement skeletons
2;; Copyright (C) 1993, 1994, 1995 by Free Software Foundation, Inc.
ac59aed8 3
f3611c70 4;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de, fax (+49 69) 7588-2389
ac59aed8 5;; Maintainer: FSF
f3611c70 6;; Keywords: extensions, abbrev, languages, tools
ac59aed8
RS
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
f3611c70 26;; A very concise language extension for writing structured statement
ac59aed8
RS
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
f3611c70 34;; page 1: statement skeleton language definition & interpreter
ac59aed8
RS
35;; page 2: paired insertion
36;; page 3: mirror-mode, an example for setting up paired insertion
37
38
39(defvar skeleton-transformation nil
f3611c70 40 "*If non-nil, function applied to literal strings before they are inserted.
ac59aed8
RS
41It should take strings and characters and return them transformed, or nil
42which means no transformation.
43Typical 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
da6a884f
KH
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.
55By default this moves out anything following to next line.
56The variables `v1' and `v2' are still set when calling this.")
57
58
f3611c70
KH
59;;;###autoload
60(defvar skeleton-filter 'identity
61 "Function for transforming a skeleton-proxy's aliases' variable value.")
62
f3611c70
KH
63(defvar skeleton-untabify t
64 "When non-`nil' untabifies when deleting backwards with element -ARG.")
65
4bfd70e9
KH
66(defvar skeleton-newline-indent-rigidly nil
67 "When non-`nil', indent rigidly under current line for element `\\n'.
68Else use mode's `indent-line-function'.")
f3611c70
KH
69
70(defvar skeleton-further-elements ()
71 "A buffer-local varlist (see `let') of mode specific skeleton elements.
72These variables are bound while interpreting a skeleton. Their value may
73in turn be any valid skeleton element if they are themselves to be used as
74skeleton elements.")
75(make-variable-buffer-local 'skeleton-further-elements)
76
77
ac59aed8
RS
78(defvar skeleton-subprompt
79 (substitute-command-keys
80 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
f3611c70
KH
81 "*Replacement for %s in prompts of recursive subskeletons.")
82
ac59aed8 83
f3611c70 84(defvar skeleton-abbrev-cleanup nil)
ac59aed8
RS
85
86
87(defvar skeleton-debug nil
88 "*If non-nil `define-skeleton' will override previous definition.")
89
4bfd70e9
KH
90;; reduce the number of compiler warnings
91(defvar skeleton)
92(defvar skeleton-modified)
93(defvar skeleton-point)
94(defvar skeleton-regions)
ac59aed8 95
ac59aed8 96;;;###autoload
f3611c70 97(defmacro define-skeleton (command documentation &rest skeleton)
ac59aed8
RS
98 "Define a user-configurable COMMAND that enters a statement skeleton.
99DOCUMENTATION is that of the command, while the variable of the same name,
f3611c70
KH
100which contains the skeleton, has a documentation to that effect.
101INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
ac59aed8 102 (if skeleton-debug
f3611c70 103 (set command skeleton))
773500ab
KH
104 `(progn
105 (defvar ,command ',skeleton ,documentation)
106 (defalias ',command 'skeleton-proxy)))
f3611c70
KH
107
108
ac59aed8 109
f3611c70
KH
110;; This command isn't meant to be called, only it's aliases with meaningful
111;; names are.
112;;;###autoload
4bfd70e9
KH
113(defun skeleton-proxy (&optional str arg)
114 "Insert skeleton defined by variable of same name (see `skeleton-insert').
f3611c70
KH
115Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
116This command can also be an abbrev expansion (3rd and 4th columns in
4bfd70e9
KH
117\\[edit-abbrevs] buffer: \"\" command-name).
118
119When called as a function, optional first argument STR may also be a string
120which will be the value of `str' whereas the skeleton's interactor is then
121ignored."
122 (interactive "*P\nP")
f3611c70
KH
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))))
4bfd70e9
KH
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)))
f3611c70 133 (skeleton-insert function
f3611c70
KH
134 (if (setq skeleton-abbrev-cleanup
135 (or (eq this-command 'self-insert-command)
da6a884f
KH
136 (eq this-command
137 'skeleton-pair-insert-maybe)))
f3611c70 138 ()
4bfd70e9 139 ;; Pretend C-x a e passed its prefix arg to us
f3611c70
KH
140 (if (or arg current-prefix-arg)
141 (prefix-numeric-value (or arg
4bfd70e9
KH
142 current-prefix-arg))))
143 (if (stringp str)
144 str))
f3611c70
KH
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))))
ac59aed8
RS
159
160
161;;;###autoload
da6a884f 162(defun skeleton-insert (skeleton &optional skeleton-regions str)
f3611c70 163 "Insert the complex statement skeleton SKELETON describes very concisely.
ac59aed8 164
f3611c70
KH
165With optional third REGIONS wrap first interesting point (`_') in skeleton
166around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
167wrap REGIONS preceding interregions into first REGIONS interesting positions
168\(successive `_'s) in skeleton. An interregion is the stretch of text between
169two contiguous marked points. If you marked A B C [] (where [] is the cursor)
170in alphabetical order, the 3 interregions are simply the last 3 regions. But
171if you marked B A [] C, the interregions are B-A, A-[], []-C.
172
4bfd70e9
KH
173Optional fourth STR is the value for the variable `str' within the skeleton.
174When this is non-`nil' the interactor gets ignored, and this should be a valid
175skeleton element.
176
f3611c70
KH
177SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
178not needed, a prompt-string or an expression for complex read functions.
ac59aed8
RS
179
180If ELEMENT is a string or a character it gets inserted (see also
181`skeleton-transformation'). Other possibilities are:
182
4bfd70e9 183 \\n go to next line and indent according to mode
f3611c70
KH
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')
ac59aed8
RS
189 resume: skipped, continue here if quit is signaled
190 nil skipped
191
f3611c70
KH
192Further elements can be defined via `skeleton-further-elements'. ELEMENT may
193itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
194different inputs. The SKELETON is processed as often as the user enters a
195non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
196continues after `resume:' and positions at `_' if any. If INTERACTOR in such
197a subskeleton is a prompt-string which contains a \".. %s ..\" it is
4bfd70e9
KH
198formatted with `skeleton-subprompt'. Such an INTERACTOR may also a list of
199strings with the subskeleton being repeated once for each string.
ac59aed8 200
f3611c70 201Quoted lisp-expressions are evaluated evaluated for their side-effect.
ac59aed8 202Other lisp-expressions are evaluated and the value treated as above.
f3611c70
KH
203Note that expressions may not return `t' since this impplies an
204endless loop. Modes can define other symbols by locally setting them
205to any valid skeleton element. The following local variables are
206available:
ac59aed8 207
f3611c70 208 str first time: read a string according to INTERACTOR
ac59aed8 209 then: insert previously read string once more
f3611c70 210 help help-form during interaction with the user or `nil'
773500ab 211 input initial input (string or cons with index) while reading str
4bfd70e9
KH
212 v1, v2 local variables for memorising anything you want
213
214When 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)
f3611c70 219 (list (point-marker)
4bfd70e9
KH
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'
f3611c70
KH
224 (let ((l1 (cons (mark-marker) mark-ring))
225 (l2 (list (point-marker))))
4bfd70e9 226 (while (and l1 (> skeleton-regions 0))
f3611c70 227 (setq l2 (cons (car l1) l2)
4bfd70e9 228 skeleton-regions (1- skeleton-regions)
f3611c70
KH
229 l1 (cdr l1)))
230 (sort l2 '<))))
4bfd70e9
KH
231 (goto-char (car skeleton-regions))
232 (setq skeleton-regions (cdr skeleton-regions)))
773500ab 233 (let ((beg (point))
4bfd70e9 234 skeleton-modified skeleton-point resume: help input v1 v2)
f3611c70 235 (unwind-protect
773500ab 236 (eval `(let ,skeleton-further-elements
4bfd70e9
KH
237 (skeleton-internal-list skeleton str)))
238 (run-hooks 'skeleton-end-hook)
773500ab
KH
239 (sit-for 0)
240 (or (pos-visible-in-window-p beg)
241 (progn
242 (goto-char beg)
243 (recenter 0)))
4bfd70e9
KH
244 (if skeleton-point
245 (goto-char skeleton-point)))))
f3611c70 246
f3611c70 247(defun skeleton-read (str &optional initial-input recursive)
773500ab 248 "Function for reading a string from the minibuffer within skeletons.
f3611c70 249PROMPT may contain a `%s' which will be replaced by `skeleton-subprompt'.
773500ab
KH
250If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or
251cons with index to insert before reading. If third arg RECURSIVE is non-`nil'
252i.e. we are handling the iterator of a subskeleton, returns empty string if
253user didn't modify input.
254While reading, the value of `minibuffer-help-form' is variable `help' if that
255is non-`nil' or a default string."
da6a884f
KH
256 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
257 (if recursive "\
ac59aed8
RS
258As long as you provide input you will insert another subskeleton.
259
260If you enter the empty string, the loop inserting subskeletons is
261left, and the current one is removed as far as it has been entered.
262
263If you quit, the current subskeleton is removed as far as it has been
264entered. No more of the skeleton will be inserted, except maybe for a
f3611c70 265syntactically necessary termination."
773500ab 266 "\
f3611c70 267You are inserting a skeleton. Standard text gets inserted into the buffer
da6a884f
KH
268automatically, 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))))
773500ab
KH
282 (if (and recursive
283 (or (null str)
284 (string= str "")
285 (equal str initial-input)
286 (equal str (car-safe initial-input))))
ac59aed8
RS
287 (signal 'quit t)
288 str))
289
4bfd70e9 290(defun skeleton-internal-list (skeleton &optional str recursive)
f3611c70
KH
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)
4bfd70e9
KH
296 (or str
297 (setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
298 (while (setq skeleton-modified (eq opoint (point))
773500ab
KH
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)
4bfd70e9
KH
305 (setq recursive 'quit
306 skeleton (memq 'resume: skeleton))
773500ab
KH
307 ;; remove the subskeleton as far as it has been shown
308 ;; the subskeleton shouldn't have deleted outside current line
da6a884f 309 (end-of-line)
773500ab
KH
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))
f3611c70
KH
321
322
323(defun skeleton-internal-1 (element &optional literal)
4bfd70e9
KH
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))))
c93d212a 334 ((eq element '\n) ; actually (eq '\n 'n)
4bfd70e9
KH
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))))
c93d212a 346 ((eq element '>)
4bfd70e9 347 (if (and skeleton-regions
f3611c70 348 (eq (nth 1 skeleton) '_))
4bfd70e9
KH
349 (indent-region (point) (car skeleton-regions) nil)
350 (indent-according-to-mode)))
c93d212a 351 ((eq element '_)
4bfd70e9 352 (if skeleton-regions
f3611c70 353 (progn
4bfd70e9 354 (goto-char (car skeleton-regions))
da6a884f
KH
355 (setq skeleton-regions (cdr skeleton-regions))
356 (and (<= (current-column) (current-indentation))
357 (eq (nth 1 skeleton) '\n)
358 (end-of-line 0)))
4bfd70e9
KH
359 (or skeleton-point
360 (setq skeleton-point (point)))))
c93d212a 361 ((eq element '&)
4bfd70e9 362 (if skeleton-modified
f3611c70 363 (setq skeleton (cdr skeleton))))
c93d212a 364 ((eq element '|)
4bfd70e9 365 (or skeleton-modified
f3611c70 366 (setq skeleton (cdr skeleton))))
4bfd70e9 367 ((eq 'quote (car-safe element))
f3611c70 368 (eval (nth 1 element)))
4bfd70e9
KH
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)))))
f3611c70
KH
377 ((null element))
378 ((skeleton-internal-1 (eval element) t))))
ac59aed8 379
4bfd70e9 380
f3611c70
KH
381;; Maybe belongs into simple.el or elsewhere
382
f3611c70
KH
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)
ac59aed8 409\f
bc35d5b3 410;; Variables and command for automatically inserting pairs like () or "".
ac59aed8 411
bc35d5b3 412(defvar skeleton-pair nil
ac59aed8 413 "*If this is nil pairing is turned off, no matter what else is set.
bc35d5b3
RS
414Otherwise modes with `skeleton-pair-insert-maybe' on some keys
415will attempt to insert pairs of matching characters.")
ac59aed8
RS
416
417
bc35d5b3
RS
418(defvar skeleton-pair-on-word nil
419 "*If this is nil, paired insertion is inhibited before or inside a word.")
ac59aed8
RS
420
421
bc35d5b3
RS
422(defvar skeleton-pair-filter (lambda ())
423 "Attempt paired insertion if this function returns nil, before inserting.
ac59aed8
RS
424This allows for context-sensitive checking whether pairing is appropriate.")
425
426
bc35d5b3
RS
427(defvar skeleton-pair-alist ()
428 "An override alist of pairing partners matched against `last-command-char'.
429Each alist element, which looks like (ELEMENT ...), is passed to
430`skeleton-insert' with no interactor. Variable `str' does nothing.
ac59aed8 431
f3611c70 432Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
ac59aed8
RS
433
434
ac59aed8 435;;;###autoload
bc35d5b3 436(defun skeleton-pair-insert-maybe (arg)
ac59aed8
RS
437 "Insert the character you type ARG times.
438
bc35d5b3
RS
439With 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
441word, and if `skeleton-pair-filter' returns nil, pairing is performed.
ac59aed8 442
bc35d5b3 443If a match is found in `skeleton-pair-alist', that is inserted, else
ac59aed8
RS
444the defaults are used. These are (), [], {}, <> and `' for the
445symmetrical ones, and the same character twice for the others."
446 (interactive "*P")
447 (if (or arg
773500ab 448 overwrite-mode
bc35d5b3
RS
449 (not skeleton-pair)
450 (if (not skeleton-pair-on-word) (looking-at "\\w"))
451 (funcall skeleton-pair-filter))
ac59aed8 452 (self-insert-command (prefix-numeric-value arg))
f3611c70
KH
453 (self-insert-command 1)
454 (if skeleton-abbrev-cleanup
455 ()
456 ;; (preceding-char) is stripped of any Meta-stuff in last-command-char
bc35d5b3 457 (if (setq arg (assq (preceding-char) skeleton-pair-alist))
da6a884f
KH
458 ;; typed char is inserted (car is no real interactor)
459 (let (skeleton-end-hook)
460 (skeleton-insert arg))
f3611c70
KH
461 (save-excursion
462 (insert (or (cdr (assq (preceding-char)
463 '((?( . ?))
464 (?[ . ?])
465 (?{ . ?})
466 (?< . ?>)
467 (?` . ?'))))
468 last-command-char)))))))
ac59aed8
RS
469
470\f
bc35d5b3
RS
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))
ac59aed8
RS
514
515;; skeleton.el ends here