annotate lisp/skeleton.el @ 17403:5c3cd24dd8ee libc-970412 libc-970413 libc-970414 libc-970415 libc-970416 libc-970417 release-1-0

Recognize OpenBSD systems correctly (from Niklas Hallqvist <niklas@appli.se>)
author Ian Lance Taylor <ian@cygnus.com>
date Fri, 11 Apr 1997 20:40:28 +0000
parents 5ff0874f1309
children f0fc645756a3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14006
diff changeset
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
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
5 ;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de, fax (+49 69) 7588-2389
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Maintainer: FSF
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
7 ;; Keywords: extensions, abbrev, languages, tools
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14006
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14006
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14006
diff changeset
24 ;; Boston, MA 02111-1307, USA.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
28 ;; A very concise language extension for writing structured statement
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;; skeleton insertion commands for programming language modes. This
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;; originated in shell-script mode and was applied to ada-mode's
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 ;; commands which shrunk to one third. And these commands are now
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;; user configurable.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;;; Code:
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
36 ;; page 1: statement skeleton language definition & interpreter
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;; page 2: paired insertion
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ;; page 3: mirror-mode, an example for setting up paired insertion
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 (defvar skeleton-transformation nil
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
42 "*If non-nil, function applied to literal strings before they are inserted.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 It should take strings and characters and return them transformed, or nil
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 which means no transformation.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 Typical examples might be `upcase' or `capitalize'.")
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 ; this should be a fourth argument to defvar
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 (put 'skeleton-transformation 'variable-interactive
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 "aTransformation function: ")
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62
13390
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
63 (defvar skeleton-end-hook
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
64 (lambda ()
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
65 (or (eolp) (newline-and-indent)))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
66 "Hook called at end of skeleton but before going to point of interest.
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
67 By default this moves out anything following to next line.
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
68 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
69
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
70
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
71 ;;;###autoload
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
72 (defvar skeleton-filter 'identity
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
73 "Function for transforming a skeleton proxy's aliases' variable value.")
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
74
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
75 (defvar skeleton-untabify t
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
76 "When non-`nil' untabifies when deleting backwards with element -ARG.")
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
77
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
78 (defvar skeleton-newline-indent-rigidly nil
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
79 "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
80 Else use mode's `indent-line-function'.")
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
81
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
82 (defvar skeleton-further-elements ()
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
83 "A buffer-local varlist (see `let') of mode specific skeleton elements.
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
84 These variables are bound while interpreting a skeleton. Their value may
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
85 in turn be any valid skeleton element if they are themselves to be used as
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
86 skeleton elements.")
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
87 (make-variable-buffer-local 'skeleton-further-elements)
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
88
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
89
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 (defvar skeleton-subprompt
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 (substitute-command-keys
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
93 "*Replacement for %s in prompts of recursive subskeletons.")
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
96 (defvar skeleton-abbrev-cleanup nil
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
97 "Variable used to delete the character that led to abbrev expansion.")
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
98
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 (defvar skeleton-debug nil
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 "*If non-nil `define-skeleton' will override previous definition.")
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102
16768
5ff0874f1309 (skeleton-positions): Renamed from skeleton-marks.
Richard M. Stallman <rms@gnu.org>
parents: 16767
diff changeset
103 (defvar skeleton-positions nil
5ff0874f1309 (skeleton-positions): Renamed from skeleton-marks.
Richard M. Stallman <rms@gnu.org>
parents: 16767
diff changeset
104 "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
105 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
106 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
107
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
108 ;; reduce the number of compiler warnings
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
109 (defvar skeleton)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
110 (defvar skeleton-modified)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
111 (defvar skeleton-point)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
112 (defvar skeleton-regions)
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 ;;;###autoload
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
115 (defmacro define-skeleton (command documentation &rest skeleton)
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 "Define a user-configurable COMMAND that enters a statement skeleton.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 DOCUMENTATION is that of the command, while the variable of the same name,
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
118 which contains the skeleton, has a documentation to that effect.
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
119 INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 (if skeleton-debug
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
121 (set command skeleton))
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
122 `(progn
15544
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
123 (defun ,command (&optional str arg)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
124 ,(concat documentation
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
125 (if (string-match "\n\\>" documentation)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
126 "" "\n")
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
127 "\n"
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
128 "This is a skeleton command (see `skeleton-insert').
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
129 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
130 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
131 around the region text.
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
132
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
133 A prefix argument ARG says to wrap the skeleton around the next ARG words.
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
134 A prefix argument of zero says to wrap around zero words---that is, nothing.
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
135 This is a way of overiding the use of a highlighted region.")
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
136 (interactive "*P\nP")
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
137 (skeleton-proxy-new ',skeleton str arg))))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
138
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
139 ;;;###autoload
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
140 (defun skeleton-proxy-new (skeleton &optional str arg)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
141 "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
142 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
143 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
144 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
145 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
146 \\[edit-abbrevs] buffer: \"\" command-name).
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147
15544
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
148 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
149 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
150 ignored."
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
151 (interactive "*P\nP")
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
152 (setq skeleton (funcall skeleton-filter skeleton))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
153 (if (not skeleton)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
154 (if (memq this-command '(self-insert-command
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
155 skeleton-pair-insert-maybe
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
156 expand-abbrev))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
157 (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
158 (skeleton-insert skeleton
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
159 (if (setq skeleton-abbrev-cleanup
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
160 (or (eq this-command 'self-insert-command)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
161 (eq this-command
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
162 'skeleton-pair-insert-maybe)))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
163 ()
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
164 ;; 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
165 (if (or arg current-prefix-arg)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
166 (prefix-numeric-value (or arg
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
167 current-prefix-arg))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
168 (and skeleton-autowrap
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
169 (or (eq last-command 'mouse-drag-region)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
170 (and transient-mark-mode mark-active))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
171 -1)))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
172 (if (stringp str)
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
173 str))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
174 (and skeleton-abbrev-cleanup
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
175 (setq skeleton-abbrev-cleanup (point))
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
176 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t))))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177
16427
3b9f64eb097b Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 15544
diff changeset
178 ;; This command isn't meant to be called, only its aliases with meaningful
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
179 ;; names are.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 ;;;###autoload
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
181 (defun skeleton-proxy (&optional str arg)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
182 "Insert skeleton defined by variable of same name (see `skeleton-insert').
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
183 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
184 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
185 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
186 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
187 \\[edit-abbrevs] buffer: \"\" command-name).
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
188
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
189 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
190 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
191 ignored."
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
192 (interactive "*P\nP")
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
193 (let ((function (nth 1 (backtrace-frame 1))))
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
194 (if (eq function 'nth) ; uncompiled Lisp function
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
195 (setq function (nth 1 (backtrace-frame 5)))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
196 (if (eq function 'byte-code) ; tracing byte-compiled function
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
197 (setq function (nth 1 (backtrace-frame 2)))))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
198 (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
199 (if (memq this-command '(self-insert-command
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
200 skeleton-pair-insert-maybe
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
201 expand-abbrev))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
202 (setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
203 (skeleton-insert function
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
204 (if (setq skeleton-abbrev-cleanup
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
205 (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
206 (eq this-command
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
207 'skeleton-pair-insert-maybe)))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
208 ()
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
209 ;; Pretend C-x a e passed its prefix arg to us
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
210 (if (or arg current-prefix-arg)
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
211 (prefix-numeric-value (or arg
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
212 current-prefix-arg))
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
213 (and skeleton-autowrap
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
214 (or (eq last-command 'mouse-drag-region)
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
215 (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
216 -1)))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
217 (if (stringp str)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
218 str))
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
219 (and skeleton-abbrev-cleanup
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
220 (setq skeleton-abbrev-cleanup (point))
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
221 (add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t)))))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
222
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
223
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
224 (defun skeleton-abbrev-cleanup (&rest list)
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
225 "Value for `post-command-hook' to remove char that expanded abbrev."
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
226 (if (integerp skeleton-abbrev-cleanup)
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
227 (progn
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
228 (delete-region skeleton-abbrev-cleanup (point))
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
229 (setq skeleton-abbrev-cleanup)
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
230 (remove-hook 'post-command-hook 'skeleton-abbrev-cleanup t))))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
231
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
232
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
233 ;;;###autoload
13390
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
234 (defun skeleton-insert (skeleton &optional skeleton-regions str)
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
235 "Insert the complex statement skeleton SKELETON describes very concisely.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
237 With optional third REGIONS wrap first interesting point (`_') in skeleton
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
238 around next REGIONS words, if REGIONS is positive. If REGIONS is negative,
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
239 wrap REGIONS preceding interregions into first REGIONS interesting positions
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
240 \(successive `_'s) in skeleton. An interregion is the stretch of text between
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
241 two contiguous marked points. If you marked A B C [] (where [] is the cursor)
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
242 in alphabetical order, the 3 interregions are simply the last 3 regions. But
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
243 if you marked B A [] C, the interregions are B-A, A-[], []-C.
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
244
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
245 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
246 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
247 skeleton element.
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
248
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
249 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
250 not needed, a prompt-string or an expression for complex read functions.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 If ELEMENT is a string or a character it gets inserted (see also
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 `skeleton-transformation'). Other possibilities are:
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
255 \\n go to next line and indent according to mode
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
256 _ interesting point, interregion here, point after termination
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
257 > 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
258 @ add position to `skeleton-positions'
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
259 & do next ELEMENT if previous moved point
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
260 | do next ELEMENT if previous didn't move point
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
261 -num delete num preceding characters (see `skeleton-untabify')
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 resume: skipped, continue here if quit is signaled
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 nil skipped
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
265 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
266 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
267 different inputs. The SKELETON is processed as often as the user enters a
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
268 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
269 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
270 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
271 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
272 strings with the subskeleton being repeated once for each string.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
274 Quoted Lisp expressions are evaluated evaluated for their side-effect.
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
275 Other Lisp expressions are evaluated and the value treated as above.
14006
f448cb91a38c (skeleton-insert): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 13390
diff changeset
276 Note that expressions may not return `t' since this implies an
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
277 endless loop. Modes can define other symbols by locally setting them
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
278 to any valid skeleton element. The following local variables are
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
279 available:
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
281 str first time: read a string according to INTERACTOR
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 then: insert previously read string once more
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
283 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
284 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
285 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
286
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
287 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
288 `skeleton-end-hook' if that is non-`nil'."
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
289 (and skeleton-regions
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
290 (setq skeleton-regions
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
291 (if (> skeleton-regions 0)
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
292 (list (point-marker)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
293 (save-excursion (forward-word skeleton-regions)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
294 (point-marker)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
295 (setq skeleton-regions (- skeleton-regions))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
296 ;; copy skeleton-regions - 1 elements from `mark-ring'
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
297 (let ((l1 (cons (mark-marker) mark-ring))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
298 (l2 (list (point-marker))))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
299 (while (and l1 (> skeleton-regions 0))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
300 (setq l2 (cons (car l1) l2)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
301 skeleton-regions (1- skeleton-regions)
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
302 l1 (cdr l1)))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
303 (sort l2 '<))))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
304 (goto-char (car skeleton-regions))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
305 (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
306 (let ((beg (point))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
307 skeleton-modified skeleton-point resume: help input v1 v2)
16768
5ff0874f1309 (skeleton-positions): Renamed from skeleton-marks.
Richard M. Stallman <rms@gnu.org>
parents: 16767
diff changeset
308 (setq skeleton-positions nil)
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
309 (unwind-protect
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
310 (eval `(let ,skeleton-further-elements
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
311 (skeleton-internal-list skeleton str)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
312 (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
313 (sit-for 0)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
314 (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
315 (progn
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
316 (goto-char beg)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
317 (recenter 0)))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
318 (if skeleton-point
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
319 (goto-char skeleton-point)))))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
321 (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
322 "Function for reading a string from the minibuffer within skeletons.
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
323 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
324 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
325 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
326 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
327 user didn't modify input.
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
328 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
329 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
330 (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
331 (if recursive "\
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 As long as you provide input you will insert another subskeleton.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334 If you enter the empty string, the loop inserting subskeletons is
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 left, and the current one is removed as far as it has been entered.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 If you quit, the current subskeleton is removed as far as it has been
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 entered. No more of the skeleton will be inserted, except maybe for a
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
339 syntactically necessary termination."
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
340 "\
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
341 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
342 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
343 (eolp (eolp)))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
344 ;; 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
345 (or eolp
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
346 (open-line 1))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
347 (unwind-protect
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
348 (setq str (if (stringp str)
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
349 (read-string (format str skeleton-subprompt)
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
350 (setq initial-input
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
351 (or initial-input
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
352 (symbol-value 'input))))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
353 (eval str)))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
354 (or eolp
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
355 (delete-char 1))))
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
356 (if (and recursive
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
357 (or (null str)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
358 (string= str "")
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
359 (equal str initial-input)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
360 (equal str (car-safe initial-input))))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 (signal 'quit t)
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 str))
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
364 (defun skeleton-internal-list (skeleton &optional str recursive)
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
365 (let* ((start (save-excursion (beginning-of-line) (point)))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
366 (column (current-column))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
367 (line (buffer-substring start
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
368 (save-excursion (end-of-line) (point))))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
369 opoint)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
370 (or str
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
371 (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
372 (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
373 opoint (point)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
374 skeleton (cdr skeleton))
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
375 (condition-case quit
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
376 (skeleton-internal-1 (car skeleton))
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
377 (quit
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
378 (if (eq (cdr quit) 'recursive)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
379 (setq recursive 'quit
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
380 skeleton (memq 'resume: skeleton))
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
381 ;; 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
382 ;; 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
383 (end-of-line)
12862
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
384 (delete-region start (point))
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
385 (insert line)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
386 (move-to-column column)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
387 (if (cdr quit)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
388 (setq skeleton ()
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
389 recursive nil)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
390 (signal 'quit 'recursive)))))))
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
391 ;; 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
392 (if (eq recursive 'quit)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
393 (signal 'quit 'recursive)
9d994b0faaa3 (skeleton-pair-insert-maybe): Plain insert in Ovwrt mode
Karl Heuer <kwzh@gnu.org>
parents: 12619
diff changeset
394 recursive))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
397 (defun skeleton-internal-1 (element &optional literal)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
398 (cond ((char-or-string-p element)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
399 (if (and (integerp element) ; -num
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
400 (< element 0))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
401 (if skeleton-untabify
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
402 (backward-delete-char-untabify (- element))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
403 (delete-backward-char (- element)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
404 (insert-before-markers (if (and skeleton-transformation
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
405 (not literal))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
406 (funcall skeleton-transformation element)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
407 element))))
7393
e4a565cee722 (mirror-mode): Commented out.
Richard M. Stallman <rms@gnu.org>
parents: 6463
diff changeset
408 ((eq element '\n) ; actually (eq '\n 'n)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
409 (if (and skeleton-regions
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
410 (eq (nth 1 skeleton) '_))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
411 (progn
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
412 (or (eolp)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
413 (newline))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
414 (indent-region (point) (car skeleton-regions) nil))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
415 (if skeleton-newline-indent-rigidly
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
416 (indent-to (prog1 (current-indentation)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
417 (newline)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
418 (newline)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
419 (indent-according-to-mode))))
7393
e4a565cee722 (mirror-mode): Commented out.
Richard M. Stallman <rms@gnu.org>
parents: 6463
diff changeset
420 ((eq element '>)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
421 (if (and skeleton-regions
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
422 (eq (nth 1 skeleton) '_))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
423 (indent-region (point) (car skeleton-regions) nil)
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
424 (indent-according-to-mode)))
7393
e4a565cee722 (mirror-mode): Commented out.
Richard M. Stallman <rms@gnu.org>
parents: 6463
diff changeset
425 ((eq element '_)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
426 (if skeleton-regions
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
427 (progn
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
428 (goto-char (car skeleton-regions))
13390
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
429 (setq skeleton-regions (cdr skeleton-regions))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
430 (and (<= (current-column) (current-indentation))
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
431 (eq (nth 1 skeleton) '\n)
333a77bb4ae8 (skeleton-end-hook): Now defvared and responsible for
Karl Heuer <kwzh@gnu.org>
parents: 12886
diff changeset
432 (end-of-line 0)))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
433 (or skeleton-point
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
434 (setq skeleton-point (point)))))
7393
e4a565cee722 (mirror-mode): Commented out.
Richard M. Stallman <rms@gnu.org>
parents: 6463
diff changeset
435 ((eq element '&)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
436 (if skeleton-modified
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
437 (setq skeleton (cdr skeleton))))
7393
e4a565cee722 (mirror-mode): Commented out.
Richard M. Stallman <rms@gnu.org>
parents: 6463
diff changeset
438 ((eq element '|)
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
439 (or skeleton-modified
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
440 (setq skeleton (cdr skeleton))))
16767
6d837bb21c55 (skeleton-marks): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16427
diff changeset
441 ((eq element '@)
16768
5ff0874f1309 (skeleton-positions): Renamed from skeleton-marks.
Richard M. Stallman <rms@gnu.org>
parents: 16767
diff changeset
442 (setq skeleton-positions (cons (point) skeleton-positions)))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
443 ((eq 'quote (car-safe element))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
444 (eval (nth 1 element)))
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
445 ((or (stringp (car-safe element))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
446 (consp (car-safe element)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
447 (if (symbolp (car-safe (car element)))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
448 (while (skeleton-internal-list element nil t))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
449 (setq literal (car element))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
450 (while literal
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
451 (skeleton-internal-list element (car literal))
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
452 (setq literal (cdr literal)))))
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
453 ((null element))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
454 ((skeleton-internal-1 (eval element) t))))
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
455
12886
4029ded28f9d (skeleton-newline-indent-rigidly): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 12862
diff changeset
456
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
457 ;; Maybe belongs into simple.el or elsewhere
15506
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
458 ;; ;###autoload
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
459 ;;; (define-skeleton local-variables-section
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
460 ;; "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
461 ;; (completing-read "Mode: " obarray
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
462 ;; (lambda (symbol)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
463 ;; (if (commandp symbol)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
464 ;; (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
465 ;; t)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
466 ;; '(save-excursion
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
467 ;; (if (re-search-forward page-delimiter nil t)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
468 ;; (error "Not on last page.")))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
469 ;; 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
470 ;; comment-start "mode: " str
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
471 ;; & -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
472 ;; ( (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
473 ;; obarray
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
474 ;; (lambda (symbol)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
475 ;; (or (eq symbol 'eval)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
476 ;; (user-variable-p symbol)))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
477 ;; t)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
478 ;; comment-start str ": "
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
479 ;; (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
480 ;; 'read-expression-history) | _
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
481 ;; comment-end \n)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
482 ;; resume:
15544
ef2b47c6c225 (skeleton-proxy-new): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15506
diff changeset
483 ;; comment-start "End:" comment-end \n)
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
485 ;; Variables and command for automatically inserting pairs like () or "".
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
487 (defvar skeleton-pair nil
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488 "*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
489 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
490 will attempt to insert pairs of matching characters.")
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
493 (defvar skeleton-pair-on-word nil
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
494 "*If this is nil, paired insertion is inhibited before or inside a word.")
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
497 (defvar skeleton-pair-filter (lambda ())
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
498 "Attempt paired insertion if this function returns nil, before inserting.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 This allows for context-sensitive checking whether pairing is appropriate.")
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
502 (defvar skeleton-pair-alist ()
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
503 "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
504 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
505 `skeleton-insert' with no interactor. Variable `str' does nothing.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506
12501
6c57be2d372f partly rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents: 7394
diff changeset
507 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 ;;;###autoload
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
511 (defun skeleton-pair-insert-maybe (arg)
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 "Insert the character you type ARG times.
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513
15506
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
514 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
515 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
516 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
517 word, and if `skeleton-pair-filter' returns nil, pairing is performed.
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518
12619
9d4a4e914215 (local-variables-section): Delete autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 12501
diff changeset
519 If a match is found in `skeleton-pair-alist', that is inserted, else
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 the defaults are used. These are (), [], {}, <> and `' for the
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 symmetrical ones, and the same character twice for the others."
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 (interactive "*P")
15506
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
523 (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
524 (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
525 (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
526 (skeleton-end-hook))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
527 (if (or arg
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
528 (not skeleton-pair)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
529 (and (not mark)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
530 (or overwrite-mode
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
531 (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
532 (funcall skeleton-pair-filter))))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
533 (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
534 (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
535 (or skeleton-abbrev-cleanup
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
536 (skeleton-insert
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
537 (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
538 (assq last-command-char '((?( _ ?))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
539 (?[ _ ?])
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
540 (?{ _ ?})
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
541 (?< _ ?>)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
542 (?` _ ?')))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
543 `(,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
544 (if mark -1))))))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546
15506
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
547 ;; 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
548 ;;; (defun mirror-mode ()
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
549 ;; "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
550 ;;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
551 ;;work normally."
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
552 ;; (interactive)
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
553 ;; (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
554 ;; (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
555 ;; (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
556 ;; (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
557 ;; (make-local-variable 'skeleton-pair-alist)
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
558 ;; (setq major-mode 'mirror-mode
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
559 ;; mode-name "Mirror"
15506
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
560 ;; skeleton-pair-on-word t
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
561 ;; ;; 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
562 ;; skeleton-pair-filter (lambda ()
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
563 ;; (if (>= (current-column)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
564 ;; (/ (window-width) 2))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
565 ;; ;; 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
566 ;; (next-line 1)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
567 ;; ;; insert one or both?
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
568 ;; (= (* 2 (1+ (current-column)))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
569 ;; (window-width))))
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
570 ;; ;; 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
571 ;; skeleton-pair-alist '((?) _ ?()
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
572 ;; (?] _ ?[)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
573 ;; (?} _ ?{)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
574 ;; (?> _ ?<)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
575 ;; (?/ _ ?\\)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
576 ;; (?\\ _ ?/)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
577 ;; (?` ?` _ "''")
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
578 ;; (?' ?' _ "``"))
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
579 ;; ;; 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
580 ;; skeleton-pair t)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
581 ;; (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
582 ;; (i 0))
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
583 ;; (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
584 ;; (while (< i ? )
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
585 ;; (aset map i nil)
1a66dbb1a470 (local-variables-section): Adapted comment to outline minor mode.
Richard M. Stallman <rms@gnu.org>
parents: 15489
diff changeset
586 ;; (aset map (+ i 128) nil)
15489
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
587 ;; (setq i (1+ i))))
5393431269db (skeleton-autowrap): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 15441
diff changeset
588 ;; (run-hooks 'mirror-mode-hook))
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589
14724
4a757fa8b402 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
590 (provide 'skeleton)
4a757fa8b402 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
591
6463
380e8fcde9a2 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 ;; skeleton.el ends here