]> code.delx.au - gnu-emacs/blob - lisp/skeleton.el
17acbbe4f20973579b6f5d5b15be9fa85f035d5f
[gnu-emacs] / lisp / skeleton.el
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons
2
3 ;; Copyright (C) 1993, 1994, 1995, 1996 by Free Software Foundation, Inc.
4
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
6 ;; Maintainer: FSF
7 ;; Keywords: extensions, abbrev, languages, tools
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
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.
25
26 ;;; Commentary:
27
28 ;; A very concise language extension for writing structured statement
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
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
39
40
41 (defvar skeleton-transformation '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
47 ; this should be a fourth argument to defvar
48 (put 'skeleton-transformation 'variable-interactive
49 "aTransformation function: ")
50
51
52 (defvar skeleton-autowrap t
53 "Controls wrapping behaviour of functions created with `define-skeleton'.
54 When the region is visible (due to `transient-mark-mode' or marking a region
55 with the mouse) and this is non-nil and the function was called without an
56 explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
57 region.
58
59 We will probably delete this variable in a future Emacs version
60 unless we get a substantial number of complaints about the auto-wrap
61 feature.")
62
63 (defvar skeleton-end-newline t
64 "If non-nil, make sure that the skeleton inserted ends with a newline.
65 This just influences the way the default `skeleton-end-hook' behaves.")
66
67 (defvar skeleton-end-hook
68 (lambda ()
69 (or (eolp) (not skeleton-end-newline) (newline-and-indent)))
70 "Hook called at end of skeleton but before going to point of interest.
71 By default this moves out anything following to next line,
72 unless `skeleton-end-newline' is set to nil.
73 The variables `v1' and `v2' are still set when calling this.")
74
75
76 ;;;###autoload
77 (defvar skeleton-filter 'identity
78 "Function for transforming a skeleton proxy's aliases' variable value.")
79
80 (defvar skeleton-untabify t
81 "When non-nil untabifies when deleting backwards with element -ARG.")
82
83 (defvar skeleton-newline-indent-rigidly nil
84 "When non-nil, indent rigidly under current line for element `\\n'.
85 Else use mode's `indent-line-function'.")
86
87 (defvar skeleton-further-elements ()
88 "A buffer-local varlist (see `let') of mode specific skeleton elements.
89 These variables are bound while interpreting a skeleton. Their value may
90 in turn be any valid skeleton element if they are themselves to be used as
91 skeleton elements.")
92 (make-variable-buffer-local 'skeleton-further-elements)
93
94
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.")
99
100
101 (defvar skeleton-abbrev-cleanup nil
102 "Variable used to delete the character that led to abbrev expansion.")
103
104
105 (defvar skeleton-debug nil
106 "*If non-nil `define-skeleton' will override previous definition.")
107
108 (defvar skeleton-positions nil
109 "List of positions marked with @, after skeleton insertion.
110 The list describes the most recent skeleton insertion, and its elements
111 are integer buffer positions in the reverse order of the insertion order.")
112
113 ;; reduce the number of compiler warnings
114 (defvar skeleton)
115 (defvar skeleton-modified)
116 (defvar skeleton-point)
117 (defvar skeleton-regions)
118
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, while the variable of the same name,
123 which contains the skeleton, has a documentation to that effect.
124 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
125 (if skeleton-debug
126 (set command skeleton))
127 `(progn
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.
137
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))))
144
145 ;;;###autoload
146 (defun skeleton-proxy-new (skeleton &optional str arg)
147 "Insert skeleton defined by variable of same name (see `skeleton-insert').
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).
153
154 When called as a function, optional first argument STR may also be a string
155 which will be the value of `str' whereas the skeleton's interactor is then
156 ignored."
157 (interactive "*P\nP")
158 (setq skeleton (funcall skeleton-filter skeleton))
159 (if (not skeleton)
160 (if (memq this-command '(self-insert-command
161 skeleton-pair-insert-maybe
162 expand-abbrev))
163 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
164 (skeleton-insert skeleton
165 (if (setq skeleton-abbrev-cleanup
166 (or (eq this-command 'self-insert-command)
167 (eq this-command
168 'skeleton-pair-insert-maybe)))
169 ()
170 ;; Pretend C-x a e passed its prefix arg to us
171 (if (or arg current-prefix-arg)
172 (prefix-numeric-value (or arg
173 current-prefix-arg))
174 (and skeleton-autowrap
175 (or (eq last-command 'mouse-drag-region)
176 (and transient-mark-mode mark-active))
177 -1)))
178 (if (stringp str)
179 str))
180 (and skeleton-abbrev-cleanup
181 (setq skeleton-abbrev-cleanup (point))
182 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t))))
183
184 ;; This command isn't meant to be called, only its aliases with meaningful
185 ;; names are.
186 ;;;###autoload
187 (defun skeleton-proxy (&optional str arg)
188 "Insert skeleton defined by variable of same name (see `skeleton-insert').
189 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
190 If no ARG was given, but the region is visible, ARG defaults to -1 depending
191 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
192 This command can also be an abbrev expansion (3rd and 4th columns in
193 \\[edit-abbrevs] buffer: \"\" command-name).
194
195 When called as a function, optional first argument STR may also be a string
196 which will be the value of `str' whereas the skeleton's interactor is then
197 ignored."
198 (interactive "*P\nP")
199 (let ((function (nth 1 (backtrace-frame 1))))
200 (if (eq function 'nth) ; uncompiled Lisp function
201 (setq function (nth 1 (backtrace-frame 5)))
202 (if (eq function 'byte-code) ; tracing byte-compiled function
203 (setq function (nth 1 (backtrace-frame 2)))))
204 (if (not (setq function (funcall skeleton-filter (symbol-value function))))
205 (if (memq this-command '(self-insert-command
206 skeleton-pair-insert-maybe
207 expand-abbrev))
208 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
209 (skeleton-insert function
210 (if (setq skeleton-abbrev-cleanup
211 (or (eq this-command 'self-insert-command)
212 (eq this-command
213 'skeleton-pair-insert-maybe)))
214 ()
215 ;; Pretend C-x a e passed its prefix arg to us
216 (if (or arg current-prefix-arg)
217 (prefix-numeric-value (or arg
218 current-prefix-arg))
219 (and skeleton-autowrap
220 (or (eq last-command 'mouse-drag-region)
221 (and transient-mark-mode mark-active))
222 -1)))
223 (if (stringp str)
224 str))
225 (and skeleton-abbrev-cleanup
226 (setq skeleton-abbrev-cleanup (point))
227 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t)))))
228
229
230 (defun skeleton-abbrev-cleanup (&rest list)
231 "Value for `post-command-hook' to remove char that expanded abbrev."
232 (if (integerp skeleton-abbrev-cleanup)
233 (progn
234 (delete-region skeleton-abbrev-cleanup (point))
235 (setq skeleton-abbrev-cleanup)
236 (remove-hook 'post-command-hook 'skeleton-abbrev-cleanup t))))
237
238
239 ;;;###autoload
240 (defun skeleton-insert (skeleton &optional regions str)
241 "Insert the complex statement skeleton SKELETON describes very concisely.
242
243 With optional second argument REGIONS, wrap first interesting point
244 \(`_') in skeleton around next REGIONS words, if REGIONS is positive.
245 If REGIONS is negative, wrap REGIONS preceding interregions into first
246 REGIONS interesting positions \(successive `_'s) in skeleton.
247
248 An interregion is the stretch of text between two contiguous marked
249 points. If you marked A B C [] (where [] is the cursor) in
250 alphabetical order, the 3 interregions are simply the last 3 regions.
251 But if you marked B A [] C, the interregions are B-A, A-[], []-C.
252
253 The optional third argument STR, if specified, is the value for the
254 variable `str' within the skeleton. When this is non-nil, the
255 interactor gets ignored, and this should be a valid skeleton element.
256
257 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
258 not needed, a prompt-string or an expression for complex read functions.
259
260 If ELEMENT is a string or a character it gets inserted (see also
261 `skeleton-transformation'). Other possibilities are:
262
263 \\n go to next line and indent according to mode
264 _ interesting point, interregion here
265 - interesting point, no interregion interaction, overrides
266 interesting point set by _
267 > indent line (or interregion if > _) according to major mode
268 @ add position to `skeleton-positions'
269 & do next ELEMENT iff previous moved point
270 | do next ELEMENT iff previous didn't move point
271 -num delete num preceding characters (see `skeleton-untabify')
272 resume: skipped, continue here if quit is signaled
273 nil skipped
274
275 After termination, point will be positioned at the last occurrence of -
276 or at the first occurrence of _ or at the end of the inserted text.
277
278 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
279 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
280 different inputs. The SKELETON is processed as often as the user enters a
281 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
282 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
283 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
284 formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
285 strings with the subskeleton being repeated once for each string.
286
287 Quoted Lisp expressions are evaluated for their side-effects.
288 Other Lisp expressions are evaluated and the value treated as above.
289 Note that expressions may not return t since this implies an
290 endless loop. Modes can define other symbols by locally setting them
291 to any valid skeleton element. The following local variables are
292 available:
293
294 str first time: read a string according to INTERACTOR
295 then: insert previously read string once more
296 help help-form during interaction with the user or nil
297 input initial input (string or cons with index) while reading str
298 v1, v2 local variables for memorizing anything you want
299
300 When done with skeleton, but before going back to `_'-point call
301 `skeleton-end-hook' if that is non-nil."
302 (let ((skeleton-regions regions))
303 (and skeleton-regions
304 (setq skeleton-regions
305 (if (> skeleton-regions 0)
306 (list (copy-marker (point) t)
307 (save-excursion (forward-word skeleton-regions)
308 (point-marker)))
309 (setq skeleton-regions (- skeleton-regions))
310 ;; copy skeleton-regions - 1 elements from `mark-ring'
311 (let ((l1 (cons (mark-marker) mark-ring))
312 (l2 (list (copy-marker (point) t))))
313 (while (and l1 (> skeleton-regions 0))
314 (push (copy-marker (pop l1) t) l2)
315 (setq skeleton-regions (1- skeleton-regions)))
316 (sort l2 '<))))
317 (goto-char (car skeleton-regions))
318 (setq skeleton-regions (cdr skeleton-regions)))
319 (let ((beg (point))
320 skeleton-modified skeleton-point resume: help input v1 v2)
321 (setq skeleton-positions nil)
322 (unwind-protect
323 (eval `(let ,skeleton-further-elements
324 (skeleton-internal-list skeleton str)))
325 (run-hooks 'skeleton-end-hook)
326 (sit-for 0)
327 (or (pos-visible-in-window-p beg)
328 (progn
329 (goto-char beg)
330 (recenter 0)))
331 (if skeleton-point
332 (goto-char skeleton-point))))))
333
334 (defun skeleton-read (prompt &optional initial-input recursive)
335 "Function for reading a string from the minibuffer within skeletons.
336
337 PROMPT must be a string or a form that evaluates to a string.
338 It may contain a `%s' which will be replaced by `skeleton-subprompt'.
339 If non-nil second arg INITIAL-INPUT or variable `input' is a string or
340 cons with index to insert before reading. If third arg RECURSIVE is non-nil
341 i.e. we are handling the iterator of a subskeleton, returns empty string if
342 user didn't modify input.
343 While reading, the value of `minibuffer-help-form' is variable `help' if that
344 is non-nil or a default string."
345 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
346 (if recursive "\
347 As long as you provide input you will insert another subskeleton.
348
349 If you enter the empty string, the loop inserting subskeletons is
350 left, and the current one is removed as far as it has been entered.
351
352 If you quit, the current subskeleton is removed as far as it has been
353 entered. No more of the skeleton will be inserted, except maybe for a
354 syntactically necessary termination."
355 "\
356 You are inserting a skeleton. Standard text gets inserted into the buffer
357 automatically, and you are prompted to fill in the variable parts.")))
358 (eolp (eolp)))
359 ;; since Emacs doesn't show main window's cursor, do something noticeable
360 (or eolp
361 (open-line 1))
362 (unwind-protect
363 (setq prompt (if (stringp prompt)
364 (read-string (format prompt skeleton-subprompt)
365 (setq initial-input
366 (or initial-input
367 (symbol-value 'input))))
368 (eval prompt)))
369 (or eolp
370 (delete-char 1))))
371 (if (and recursive
372 (or (null prompt)
373 (string= prompt "")
374 (equal prompt initial-input)
375 (equal prompt (car-safe initial-input))))
376 (signal 'quit t)
377 prompt))
378
379 (defun skeleton-internal-list (skeleton &optional str recursive)
380 (let* ((start (save-excursion (beginning-of-line) (point)))
381 (column (current-column))
382 (line (buffer-substring start (line-end-position)))
383 opoint)
384 (or str
385 (setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
386 (when (and (eq (cadr skeleton) '\n) (not recursive)
387 (save-excursion (skip-chars-backward " \t") (bolp)))
388 (setq skeleton (cons nil (cons '> (cddr skeleton)))))
389 (while (setq skeleton-modified (eq opoint (point))
390 opoint (point)
391 skeleton (cdr skeleton))
392 (condition-case quit
393 (skeleton-internal-1 (car skeleton))
394 (quit
395 (if (eq (cdr quit) 'recursive)
396 (setq recursive 'quit
397 skeleton (memq 'resume: skeleton))
398 ;; Remove the subskeleton as far as it has been shown
399 ;; the subskeleton shouldn't have deleted outside current line.
400 (end-of-line)
401 (delete-region start (point))
402 (insert line)
403 (move-to-column column)
404 (if (cdr quit)
405 (setq skeleton ()
406 recursive nil)
407 (signal 'quit 'recursive)))))))
408 ;; maybe continue loop or go on to next outer resume: section
409 (if (eq recursive 'quit)
410 (signal 'quit 'recursive)
411 recursive))
412
413 (defun skeleton-internal-1 (element &optional literal)
414 (cond
415 ((char-or-string-p element)
416 (if (and (integerp element) ; -num
417 (< element 0))
418 (if skeleton-untabify
419 (backward-delete-char-untabify (- element))
420 (delete-backward-char (- element)))
421 (insert (if (and skeleton-transformation
422 (not literal))
423 (funcall skeleton-transformation element)
424 element))))
425 ((or (eq element '\n) ; actually (eq '\n 'n)
426 ;; The sequence `> \n' is handled specially so as to indent the first
427 ;; line after inserting the newline (to get the proper indentation).
428 (and (eq element '>) (eq (nth 1 skeleton) '\n) (pop skeleton)))
429 (let ((pos (if (eq element '>) (point))))
430 (cond
431 ((and skeleton-regions (eq (nth 1 skeleton) '_))
432 (or (eolp) (newline))
433 (if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
434 (indent-region (line-beginning-position)
435 (car skeleton-regions) nil))
436 ;; \n as last element only inserts \n if not at eol.
437 ((and (null (cdr skeleton)) (not recursive) (eolp))
438 (if pos (indent-according-to-mode)))
439 (skeleton-newline-indent-rigidly
440 (let ((pt (point)))
441 (newline)
442 (indent-to (save-excursion
443 (goto-char pt)
444 (if pos (indent-according-to-mode))
445 (current-indentation)))))
446 (t (if pos (reindent-then-newline-and-indent)
447 (newline)
448 (indent-according-to-mode))))))
449 ((eq element '>)
450 (if (and skeleton-regions (eq (nth 1 skeleton) '_))
451 (indent-region (line-beginning-position)
452 (car skeleton-regions) nil)
453 (indent-according-to-mode)))
454 ((eq element '_)
455 (if skeleton-regions
456 (progn
457 (goto-char (pop skeleton-regions))
458 (and (<= (current-column) (current-indentation))
459 (eq (nth 1 skeleton) '\n)
460 (end-of-line 0)))
461 (or skeleton-point
462 (setq skeleton-point (point)))))
463 ((eq element '-)
464 (setq skeleton-point (point)))
465 ((eq element '&)
466 (when skeleton-modified (pop skeleton)))
467 ((eq element '|)
468 (unless skeleton-modified (pop skeleton)))
469 ((eq element '@)
470 (push (point) skeleton-positions))
471 ((eq 'quote (car-safe element))
472 (eval (nth 1 element)))
473 ((or (stringp (car-safe element))
474 (consp (car-safe element)))
475 (if (symbolp (car-safe (car element)))
476 (while (skeleton-internal-list element nil t))
477 (setq literal (car element))
478 (while literal
479 (skeleton-internal-list element (car literal))
480 (setq literal (cdr literal)))))
481 ((null element))
482 (t (skeleton-internal-1 (eval element) t))))
483 \f
484 ;; Maybe belongs into simple.el or elsewhere
485 ;; ;;;###autoload
486 ;; (define-skeleton local-variables-section
487 ;; "Insert a local variables section. Use current comment syntax if any."
488 ;; (completing-read "Mode: " obarray
489 ;; (lambda (symbol)
490 ;; (if (commandp symbol)
491 ;; (string-match "-mode$" (symbol-name symbol))))
492 ;; t)
493 ;; '(save-excursion
494 ;; (if (re-search-forward page-delimiter nil t)
495 ;; (error "Not on last page")))
496 ;; comment-start "Local Variables:" comment-end \n
497 ;; comment-start "mode: " str
498 ;; & -5 | '(kill-line 0) & -1 | comment-end \n
499 ;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
500 ;; obarray
501 ;; (lambda (symbol)
502 ;; (or (eq symbol 'eval)
503 ;; (user-variable-p symbol)))
504 ;; t)
505 ;; comment-start str ": "
506 ;; (read-from-minibuffer "Expression: " nil read-expression-map nil
507 ;; 'read-expression-history) | _
508 ;; comment-end \n)
509 ;; resume:
510 ;; comment-start "End:" comment-end \n)
511 \f
512 ;; Variables and command for automatically inserting pairs like () or "".
513
514 (defvar skeleton-pair nil
515 "*If this is nil pairing is turned off, no matter what else is set.
516 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
517 will attempt to insert pairs of matching characters.")
518
519
520 (defvar skeleton-pair-on-word nil
521 "*If this is nil, paired insertion is inhibited before or inside a word.")
522
523
524 (defvar skeleton-pair-filter (lambda () nil)
525 "Attempt paired insertion if this function returns nil, before inserting.
526 This allows for context-sensitive checking whether pairing is appropriate.")
527
528
529 (defvar skeleton-pair-alist ()
530 "An override alist of pairing partners matched against `last-command-char'.
531 Each alist element, which looks like (ELEMENT ...), is passed to
532 `skeleton-insert' with no interactor. Variable `str' does nothing.
533
534 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
535
536
537 ;;;###autoload
538 (defun skeleton-pair-insert-maybe (arg)
539 "Insert the character you type ARG times.
540
541 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
542 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
543 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
544 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
545 Pairing is also prohibited if we are right after a quoting character
546 such as backslash.
547
548 If a match is found in `skeleton-pair-alist', that is inserted, else
549 the defaults are used. These are (), [], {}, <> and `' for the
550 symmetrical ones, and the same character twice for the others."
551 (interactive "*P")
552 (let ((mark (and skeleton-autowrap
553 (or (eq last-command 'mouse-drag-region)
554 (and transient-mark-mode mark-active))))
555 (skeleton-end-hook))
556 (if (or arg
557 (not skeleton-pair)
558 (memq (char-syntax (preceding-char)) '(?\\ ?/))
559 (and (not mark)
560 (or overwrite-mode
561 (if (not skeleton-pair-on-word) (looking-at "\\w"))
562 (funcall skeleton-pair-filter))))
563 (self-insert-command (prefix-numeric-value arg))
564 (setq last-command-char (logand last-command-char 255))
565 (or skeleton-abbrev-cleanup
566 (skeleton-insert
567 (cons nil (or (assq last-command-char skeleton-pair-alist)
568 (assq last-command-char '((?( _ ?))
569 (?[ _ ?])
570 (?{ _ ?})
571 (?< _ ?>)
572 (?` _ ?')))
573 `(,last-command-char _ ,last-command-char)))
574 (if mark -1))))))
575
576 \f
577 ;; A more serious example can be found in sh-script.el
578 ;;; (defun mirror-mode ()
579 ;; "This major mode is an amusing little example of paired insertion.
580 ;;All printable characters do a paired self insert, while the other commands
581 ;;work normally."
582 ;; (interactive)
583 ;; (kill-all-local-variables)
584 ;; (make-local-variable 'skeleton-pair)
585 ;; (make-local-variable 'skeleton-pair-on-word)
586 ;; (make-local-variable 'skeleton-pair-filter)
587 ;; (make-local-variable 'skeleton-pair-alist)
588 ;; (setq major-mode 'mirror-mode
589 ;; mode-name "Mirror"
590 ;; skeleton-pair-on-word t
591 ;; ;; in the middle column insert one or none if odd window-width
592 ;; skeleton-pair-filter (lambda ()
593 ;; (if (>= (current-column)
594 ;; (/ (window-width) 2))
595 ;; ;; insert both on next line
596 ;; (next-line 1)
597 ;; ;; insert one or both?
598 ;; (= (* 2 (1+ (current-column)))
599 ;; (window-width))))
600 ;; ;; mirror these the other way round as well
601 ;; skeleton-pair-alist '((?) _ ?()
602 ;; (?] _ ?[)
603 ;; (?} _ ?{)
604 ;; (?> _ ?<)
605 ;; (?/ _ ?\\)
606 ;; (?\\ _ ?/)
607 ;; (?` ?` _ "''")
608 ;; (?' ?' _ "``"))
609 ;; ;; in this mode we exceptionally ignore the user, else it's no fun
610 ;; skeleton-pair t)
611 ;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
612 ;; (i 0))
613 ;; (use-local-map `(keymap ,map))
614 ;; (while (< i ? )
615 ;; (aset map i nil)
616 ;; (aset map (+ i 128) nil)
617 ;; (setq i (1+ i))))
618 ;; (run-hooks 'mirror-mode-hook))
619
620 (provide 'skeleton)
621
622 ;;; skeleton.el ends here