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