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