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