1995-07-07 19:21:17 +00:00
|
|
|
|
;;; skeleton.el --- Lisp language extension for writing statement skeletons
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; Copyright (C) 1993, 1994, 1995, 1996 by Free Software Foundation, Inc.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; Author: Daniel.Pfeiffer@Informatik.START.dbp.de, fax (+49 69) 7588-2389
|
1994-03-22 05:43:25 +00:00
|
|
|
|
;; Maintainer: FSF
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; Keywords: extensions, abbrev, languages, tools
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; A very concise language extension for writing structured statement
|
1994-03-22 05:43:25 +00:00
|
|
|
|
;; skeleton insertion commands for programming language modes. This
|
|
|
|
|
;; originated in shell-script mode and was applied to ada-mode's
|
|
|
|
|
;; commands which shrunk to one third. And these commands are now
|
|
|
|
|
;; user configurable.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; page 1: statement skeleton language definition & interpreter
|
1994-03-22 05:43:25 +00:00
|
|
|
|
;; page 2: paired insertion
|
|
|
|
|
;; page 3: mirror-mode, an example for setting up paired insertion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defvar skeleton-transformation nil
|
1995-07-07 19:21:17 +00:00
|
|
|
|
"*If non-nil, function applied to literal strings before they are inserted.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
It should take strings and characters and return them transformed, or nil
|
|
|
|
|
which means no transformation.
|
|
|
|
|
Typical examples might be `upcase' or `capitalize'.")
|
|
|
|
|
|
|
|
|
|
; this should be a fourth argument to defvar
|
|
|
|
|
(put 'skeleton-transformation 'variable-interactive
|
|
|
|
|
"aTransformation function: ")
|
|
|
|
|
|
|
|
|
|
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(defvar skeleton-autowrap t
|
|
|
|
|
"Controls wrapping behaviour of functions created with `define-skeleton'.
|
|
|
|
|
When the region is visible (due to `transient-mark-mode' or marking a region
|
|
|
|
|
with the mouse) and this is non-`nil' and the function was called without an
|
|
|
|
|
explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
|
|
|
|
|
region.
|
|
|
|
|
|
|
|
|
|
We will probably delete this variable in a future Emacs version
|
|
|
|
|
unless we get a substantial number of complaints about the auto-wrap
|
|
|
|
|
feature.")
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(defvar skeleton-end-hook
|
|
|
|
|
(lambda ()
|
|
|
|
|
(or (eolp) (newline-and-indent)))
|
|
|
|
|
"Hook called at end of skeleton but before going to point of interest.
|
|
|
|
|
By default this moves out anything following to next line.
|
|
|
|
|
The variables `v1' and `v2' are still set when calling this.")
|
|
|
|
|
|
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar skeleton-filter 'identity
|
1996-06-22 17:42:15 +00:00
|
|
|
|
"Function for transforming a skeleton proxy's aliases' variable value.")
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
|
|
|
|
(defvar skeleton-untabify t
|
|
|
|
|
"When non-`nil' untabifies when deleting backwards with element -ARG.")
|
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(defvar skeleton-newline-indent-rigidly nil
|
|
|
|
|
"When non-`nil', indent rigidly under current line for element `\\n'.
|
|
|
|
|
Else use mode's `indent-line-function'.")
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
|
|
|
|
(defvar skeleton-further-elements ()
|
|
|
|
|
"A buffer-local varlist (see `let') of mode specific skeleton elements.
|
|
|
|
|
These variables are bound while interpreting a skeleton. Their value may
|
|
|
|
|
in turn be any valid skeleton element if they are themselves to be used as
|
|
|
|
|
skeleton elements.")
|
|
|
|
|
(make-variable-buffer-local 'skeleton-further-elements)
|
|
|
|
|
|
|
|
|
|
|
1994-03-22 05:43:25 +00:00
|
|
|
|
(defvar skeleton-subprompt
|
|
|
|
|
(substitute-command-keys
|
|
|
|
|
"RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
|
1995-07-07 19:21:17 +00:00
|
|
|
|
"*Replacement for %s in prompts of recursive subskeletons.")
|
|
|
|
|
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(defvar skeleton-abbrev-cleanup nil
|
|
|
|
|
"Variable used to delete the character that led to abbrev expansion.")
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defvar skeleton-debug nil
|
|
|
|
|
"*If non-nil `define-skeleton' will override previous definition.")
|
|
|
|
|
|
1996-12-28 19:33:20 +00:00
|
|
|
|
(defvar skeleton-positions nil
|
|
|
|
|
"List of positions marked with @, after skeleton insertion.
|
|
|
|
|
The list describes the most recent skeleton insertion, and its elements
|
|
|
|
|
are integer buffer positions in the reverse order of the insertion order.")
|
1996-12-28 19:31:17 +00:00
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
;; reduce the number of compiler warnings
|
|
|
|
|
(defvar skeleton)
|
|
|
|
|
(defvar skeleton-modified)
|
|
|
|
|
(defvar skeleton-point)
|
|
|
|
|
(defvar skeleton-regions)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(defmacro define-skeleton (command documentation &rest skeleton)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
"Define a user-configurable COMMAND that enters a statement skeleton.
|
|
|
|
|
DOCUMENTATION is that of the command, while the variable of the same name,
|
1995-07-07 19:21:17 +00:00
|
|
|
|
which contains the skeleton, has a documentation to that effect.
|
|
|
|
|
INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'."
|
1994-03-22 05:43:25 +00:00
|
|
|
|
(if skeleton-debug
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(set command skeleton))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
`(progn
|
1996-06-28 08:11:18 +00:00
|
|
|
|
(defun ,command (&optional str arg)
|
|
|
|
|
,(concat documentation
|
|
|
|
|
(if (string-match "\n\\>" documentation)
|
|
|
|
|
"" "\n")
|
|
|
|
|
"\n"
|
|
|
|
|
"This is a skeleton command (see `skeleton-insert').
|
|
|
|
|
Normally the skeleton text is inserted at point, with nothing \"inside\".
|
|
|
|
|
If there is a highlighted region, the skeleton text is wrapped
|
|
|
|
|
around the region text.
|
|
|
|
|
|
|
|
|
|
A prefix argument ARG says to wrap the skeleton around the next ARG words.
|
1997-04-23 17:37:06 +00:00
|
|
|
|
A prefix argument of -1 says to wrap around region, even if not highlighted.
|
1996-06-28 08:11:18 +00:00
|
|
|
|
A prefix argument of zero says to wrap around zero words---that is, nothing.
|
1997-04-23 17:37:06 +00:00
|
|
|
|
This is a way of overriding the use of a highlighted region.")
|
1996-06-28 08:11:18 +00:00
|
|
|
|
(interactive "*P\nP")
|
|
|
|
|
(skeleton-proxy-new ',skeleton str arg))))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
1996-06-28 08:11:18 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun skeleton-proxy-new (skeleton &optional str arg)
|
|
|
|
|
"Insert skeleton defined by variable of same name (see `skeleton-insert').
|
|
|
|
|
Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
|
|
|
|
If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
|
|
|
|
on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
|
|
|
|
This command can also be an abbrev expansion (3rd and 4th columns in
|
|
|
|
|
\\[edit-abbrevs] buffer: \"\" command-name).
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
1996-06-28 08:11:18 +00:00
|
|
|
|
When called as a function, optional first argument STR may also be a string
|
|
|
|
|
which will be the value of `str' whereas the skeleton's interactor is then
|
|
|
|
|
ignored."
|
|
|
|
|
(interactive "*P\nP")
|
|
|
|
|
(setq skeleton (funcall skeleton-filter skeleton))
|
|
|
|
|
(if (not skeleton)
|
|
|
|
|
(if (memq this-command '(self-insert-command
|
|
|
|
|
skeleton-pair-insert-maybe
|
|
|
|
|
expand-abbrev))
|
|
|
|
|
(setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
|
|
|
|
|
(skeleton-insert skeleton
|
|
|
|
|
(if (setq skeleton-abbrev-cleanup
|
|
|
|
|
(or (eq this-command 'self-insert-command)
|
|
|
|
|
(eq this-command
|
|
|
|
|
'skeleton-pair-insert-maybe)))
|
|
|
|
|
()
|
|
|
|
|
;; Pretend C-x a e passed its prefix arg to us
|
|
|
|
|
(if (or arg current-prefix-arg)
|
|
|
|
|
(prefix-numeric-value (or arg
|
|
|
|
|
current-prefix-arg))
|
|
|
|
|
(and skeleton-autowrap
|
|
|
|
|
(or (eq last-command 'mouse-drag-region)
|
|
|
|
|
(and transient-mark-mode mark-active))
|
|
|
|
|
-1)))
|
|
|
|
|
(if (stringp str)
|
|
|
|
|
str))
|
|
|
|
|
(and skeleton-abbrev-cleanup
|
|
|
|
|
(setq skeleton-abbrev-cleanup (point))
|
|
|
|
|
(add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t))))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1996-10-12 02:42:58 +00:00
|
|
|
|
;; This command isn't meant to be called, only its aliases with meaningful
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; names are.
|
|
|
|
|
;;;###autoload
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(defun skeleton-proxy (&optional str arg)
|
|
|
|
|
"Insert skeleton defined by variable of same name (see `skeleton-insert').
|
1995-07-07 19:21:17 +00:00
|
|
|
|
Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
|
1996-06-24 22:33:56 +00:00
|
|
|
|
If no ARG was given, but the region is visible, ARG defaults to -1 depending
|
1996-06-22 17:42:15 +00:00
|
|
|
|
on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
|
1995-07-07 19:21:17 +00:00
|
|
|
|
This command can also be an abbrev expansion (3rd and 4th columns in
|
1995-08-19 00:30:38 +00:00
|
|
|
|
\\[edit-abbrevs] buffer: \"\" command-name).
|
|
|
|
|
|
|
|
|
|
When called as a function, optional first argument STR may also be a string
|
|
|
|
|
which will be the value of `str' whereas the skeleton's interactor is then
|
|
|
|
|
ignored."
|
|
|
|
|
(interactive "*P\nP")
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(let ((function (nth 1 (backtrace-frame 1))))
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(if (eq function 'nth) ; uncompiled Lisp function
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(setq function (nth 1 (backtrace-frame 5)))
|
|
|
|
|
(if (eq function 'byte-code) ; tracing byte-compiled function
|
|
|
|
|
(setq function (nth 1 (backtrace-frame 2)))))
|
|
|
|
|
(if (not (setq function (funcall skeleton-filter (symbol-value function))))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if (memq this-command '(self-insert-command
|
|
|
|
|
skeleton-pair-insert-maybe
|
|
|
|
|
expand-abbrev))
|
|
|
|
|
(setq buffer-undo-list (primitive-undo 1 buffer-undo-list)))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(skeleton-insert function
|
|
|
|
|
(if (setq skeleton-abbrev-cleanup
|
|
|
|
|
(or (eq this-command 'self-insert-command)
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(eq this-command
|
|
|
|
|
'skeleton-pair-insert-maybe)))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
()
|
1995-08-19 00:30:38 +00:00
|
|
|
|
;; Pretend C-x a e passed its prefix arg to us
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(if (or arg current-prefix-arg)
|
|
|
|
|
(prefix-numeric-value (or arg
|
1996-06-22 17:42:15 +00:00
|
|
|
|
current-prefix-arg))
|
|
|
|
|
(and skeleton-autowrap
|
|
|
|
|
(or (eq last-command 'mouse-drag-region)
|
|
|
|
|
(and transient-mark-mode mark-active))
|
1996-06-24 22:33:56 +00:00
|
|
|
|
-1)))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if (stringp str)
|
|
|
|
|
str))
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(and skeleton-abbrev-cleanup
|
|
|
|
|
(setq skeleton-abbrev-cleanup (point))
|
|
|
|
|
(add-hook 'post-command-hook 'skeleton-abbrev-cleanup nil t)))))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun skeleton-abbrev-cleanup (&rest list)
|
|
|
|
|
"Value for `post-command-hook' to remove char that expanded abbrev."
|
|
|
|
|
(if (integerp skeleton-abbrev-cleanup)
|
|
|
|
|
(progn
|
|
|
|
|
(delete-region skeleton-abbrev-cleanup (point))
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(setq skeleton-abbrev-cleanup)
|
|
|
|
|
(remove-hook 'post-command-hook 'skeleton-abbrev-cleanup t))))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(defun skeleton-insert (skeleton &optional regions str)
|
1995-07-07 19:21:17 +00:00
|
|
|
|
"Insert the complex statement skeleton SKELETON describes very concisely.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1997-04-16 19:41:21 +00:00
|
|
|
|
With optional second argument REGIONS, wrap first interesting point
|
|
|
|
|
\(`_') in skeleton around next REGIONS words, if REGIONS is positive.
|
|
|
|
|
If REGIONS is negative, wrap REGIONS preceding interregions into first
|
|
|
|
|
REGIONS interesting positions \(successive `_'s) in skeleton.
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
1997-04-16 19:41:21 +00:00
|
|
|
|
An interregion is the stretch of text between two contiguous marked
|
|
|
|
|
points. If you marked A B C [] (where [] is the cursor) in
|
|
|
|
|
alphabetical order, the 3 interregions are simply the last 3 regions.
|
|
|
|
|
But if you marked B A [] C, the interregions are B-A, A-[], []-C.
|
|
|
|
|
|
|
|
|
|
The optional third argument STR, if specified, is the value for the
|
|
|
|
|
variable `str' within the skeleton. When this is non-nil, the
|
|
|
|
|
interactor gets ignored, and this should be a valid skeleton element.
|
1995-08-19 00:30:38 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
|
|
|
|
|
not needed, a prompt-string or an expression for complex read functions.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
If ELEMENT is a string or a character it gets inserted (see also
|
|
|
|
|
`skeleton-transformation'). Other possibilities are:
|
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
\\n go to next line and indent according to mode
|
1995-07-07 19:21:17 +00:00
|
|
|
|
_ interesting point, interregion here, point after termination
|
|
|
|
|
> indent line (or interregion if > _) according to major mode
|
1996-12-28 19:33:20 +00:00
|
|
|
|
@ add position to `skeleton-positions'
|
1995-07-07 19:21:17 +00:00
|
|
|
|
& do next ELEMENT if previous moved point
|
|
|
|
|
| do next ELEMENT if previous didn't move point
|
|
|
|
|
-num delete num preceding characters (see `skeleton-untabify')
|
1994-03-22 05:43:25 +00:00
|
|
|
|
resume: skipped, continue here if quit is signaled
|
|
|
|
|
nil skipped
|
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
Further elements can be defined via `skeleton-further-elements'. ELEMENT may
|
|
|
|
|
itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
|
|
|
|
|
different inputs. The SKELETON is processed as often as the user enters a
|
|
|
|
|
non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
|
|
|
|
|
continues after `resume:' and positions at `_' if any. If INTERACTOR in such
|
|
|
|
|
a subskeleton is a prompt-string which contains a \".. %s ..\" it is
|
1997-04-16 19:41:21 +00:00
|
|
|
|
formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
|
1995-08-19 00:30:38 +00:00
|
|
|
|
strings with the subskeleton being repeated once for each string.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1997-04-16 19:41:21 +00:00
|
|
|
|
Quoted Lisp expressions are evaluated for their side-effects.
|
1996-06-22 17:42:15 +00:00
|
|
|
|
Other Lisp expressions are evaluated and the value treated as above.
|
1996-01-04 23:48:47 +00:00
|
|
|
|
Note that expressions may not return `t' since this implies an
|
1995-07-07 19:21:17 +00:00
|
|
|
|
endless loop. Modes can define other symbols by locally setting them
|
|
|
|
|
to any valid skeleton element. The following local variables are
|
|
|
|
|
available:
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
str first time: read a string according to INTERACTOR
|
1994-03-22 05:43:25 +00:00
|
|
|
|
then: insert previously read string once more
|
1995-07-07 19:21:17 +00:00
|
|
|
|
help help-form during interaction with the user or `nil'
|
1995-08-15 19:49:46 +00:00
|
|
|
|
input initial input (string or cons with index) while reading str
|
1996-06-22 17:42:15 +00:00
|
|
|
|
v1, v2 local variables for memorizing anything you want
|
1995-08-19 00:30:38 +00:00
|
|
|
|
|
|
|
|
|
When done with skeleton, but before going back to `_'-point call
|
|
|
|
|
`skeleton-end-hook' if that is non-`nil'."
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(let ((skeleton-regions regions))
|
|
|
|
|
(and skeleton-regions
|
|
|
|
|
(setq skeleton-regions
|
|
|
|
|
(if (> skeleton-regions 0)
|
|
|
|
|
(list (point-marker)
|
|
|
|
|
(save-excursion (forward-word skeleton-regions)
|
|
|
|
|
(point-marker)))
|
|
|
|
|
(setq skeleton-regions (- skeleton-regions))
|
|
|
|
|
;; copy skeleton-regions - 1 elements from `mark-ring'
|
|
|
|
|
(let ((l1 (cons (mark-marker) mark-ring))
|
|
|
|
|
(l2 (list (point-marker))))
|
|
|
|
|
(while (and l1 (> skeleton-regions 0))
|
|
|
|
|
(setq l2 (cons (car l1) l2)
|
|
|
|
|
skeleton-regions (1- skeleton-regions)
|
|
|
|
|
l1 (cdr l1)))
|
|
|
|
|
(sort l2 '<))))
|
|
|
|
|
(goto-char (car skeleton-regions))
|
|
|
|
|
(setq skeleton-regions (cdr skeleton-regions)))
|
|
|
|
|
(let ((beg (point))
|
|
|
|
|
skeleton-modified skeleton-point resume: help input v1 v2)
|
|
|
|
|
(setq skeleton-positions nil)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(eval `(let ,skeleton-further-elements
|
|
|
|
|
(skeleton-internal-list skeleton str)))
|
|
|
|
|
(run-hooks 'skeleton-end-hook)
|
|
|
|
|
(sit-for 0)
|
|
|
|
|
(or (pos-visible-in-window-p beg)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(recenter 0)))
|
|
|
|
|
(if skeleton-point
|
|
|
|
|
(goto-char skeleton-point))))))
|
|
|
|
|
|
1997-04-20 01:37:09 +00:00
|
|
|
|
(defun skeleton-read (prompt &optional initial-input recursive)
|
1995-08-15 19:49:46 +00:00
|
|
|
|
"Function for reading a string from the minibuffer within skeletons.
|
1997-04-24 19:40:23 +00:00
|
|
|
|
|
|
|
|
|
PROMPT must be a string or a form that evaluates to a string.
|
|
|
|
|
It may contain a `%s' which will be replaced by `skeleton-subprompt'.
|
1995-08-15 19:49:46 +00:00
|
|
|
|
If non-`nil' second arg INITIAL-INPUT or variable `input' is a string or
|
|
|
|
|
cons with index to insert before reading. If third arg RECURSIVE is non-`nil'
|
|
|
|
|
i.e. we are handling the iterator of a subskeleton, returns empty string if
|
|
|
|
|
user didn't modify input.
|
|
|
|
|
While reading, the value of `minibuffer-help-form' is variable `help' if that
|
1997-04-16 19:41:21 +00:00
|
|
|
|
is non-nil or a default string."
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
|
|
|
|
|
(if recursive "\
|
1994-03-22 05:43:25 +00:00
|
|
|
|
As long as you provide input you will insert another subskeleton.
|
|
|
|
|
|
|
|
|
|
If you enter the empty string, the loop inserting subskeletons is
|
|
|
|
|
left, and the current one is removed as far as it has been entered.
|
|
|
|
|
|
|
|
|
|
If you quit, the current subskeleton is removed as far as it has been
|
|
|
|
|
entered. No more of the skeleton will be inserted, except maybe for a
|
1995-07-07 19:21:17 +00:00
|
|
|
|
syntactically necessary termination."
|
1997-04-16 19:41:21 +00:00
|
|
|
|
"\
|
1995-07-07 19:21:17 +00:00
|
|
|
|
You are inserting a skeleton. Standard text gets inserted into the buffer
|
1995-11-03 03:29:04 +00:00
|
|
|
|
automatically, and you are prompted to fill in the variable parts.")))
|
|
|
|
|
(eolp (eolp)))
|
|
|
|
|
;; since Emacs doesn't show main window's cursor, do something noticeable
|
|
|
|
|
(or eolp
|
|
|
|
|
(open-line 1))
|
|
|
|
|
(unwind-protect
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(setq prompt (if (stringp prompt)
|
|
|
|
|
(read-string (format prompt skeleton-subprompt)
|
|
|
|
|
(setq initial-input
|
|
|
|
|
(or initial-input
|
|
|
|
|
(symbol-value 'input))))
|
|
|
|
|
(eval prompt)))
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(or eolp
|
|
|
|
|
(delete-char 1))))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
(if (and recursive
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(or (null prompt)
|
|
|
|
|
(string= prompt "")
|
|
|
|
|
(equal prompt initial-input)
|
|
|
|
|
(equal prompt (car-safe initial-input))))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
(signal 'quit t)
|
1997-04-20 01:37:09 +00:00
|
|
|
|
prompt))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(defun skeleton-internal-list (skeleton &optional str recursive)
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(let* ((start (save-excursion (beginning-of-line) (point)))
|
|
|
|
|
(column (current-column))
|
|
|
|
|
(line (buffer-substring start
|
|
|
|
|
(save-excursion (end-of-line) (point))))
|
|
|
|
|
opoint)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(or str
|
|
|
|
|
(setq str `(setq str (skeleton-read ',(car skeleton) nil ,recursive))))
|
|
|
|
|
(while (setq skeleton-modified (eq opoint (point))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
opoint (point)
|
|
|
|
|
skeleton (cdr skeleton))
|
|
|
|
|
(condition-case quit
|
|
|
|
|
(skeleton-internal-1 (car skeleton))
|
|
|
|
|
(quit
|
|
|
|
|
(if (eq (cdr quit) 'recursive)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(setq recursive 'quit
|
|
|
|
|
skeleton (memq 'resume: skeleton))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
;; remove the subskeleton as far as it has been shown
|
|
|
|
|
;; the subskeleton shouldn't have deleted outside current line
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(end-of-line)
|
1995-08-15 19:49:46 +00:00
|
|
|
|
(delete-region start (point))
|
|
|
|
|
(insert line)
|
|
|
|
|
(move-to-column column)
|
|
|
|
|
(if (cdr quit)
|
|
|
|
|
(setq skeleton ()
|
|
|
|
|
recursive nil)
|
|
|
|
|
(signal 'quit 'recursive)))))))
|
|
|
|
|
;; maybe continue loop or go on to next outer resume: section
|
|
|
|
|
(if (eq recursive 'quit)
|
|
|
|
|
(signal 'quit 'recursive)
|
|
|
|
|
recursive))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun skeleton-internal-1 (element &optional literal)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(cond ((char-or-string-p element)
|
|
|
|
|
(if (and (integerp element) ; -num
|
|
|
|
|
(< element 0))
|
|
|
|
|
(if skeleton-untabify
|
|
|
|
|
(backward-delete-char-untabify (- element))
|
|
|
|
|
(delete-backward-char (- element)))
|
|
|
|
|
(insert-before-markers (if (and skeleton-transformation
|
|
|
|
|
(not literal))
|
|
|
|
|
(funcall skeleton-transformation element)
|
|
|
|
|
element))))
|
1994-05-07 05:30:31 +00:00
|
|
|
|
((eq element '\n) ; actually (eq '\n 'n)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if (and skeleton-regions
|
|
|
|
|
(eq (nth 1 skeleton) '_))
|
|
|
|
|
(progn
|
|
|
|
|
(or (eolp)
|
|
|
|
|
(newline))
|
|
|
|
|
(indent-region (point) (car skeleton-regions) nil))
|
|
|
|
|
(if skeleton-newline-indent-rigidly
|
|
|
|
|
(indent-to (prog1 (current-indentation)
|
|
|
|
|
(newline)))
|
|
|
|
|
(newline)
|
|
|
|
|
(indent-according-to-mode))))
|
1994-05-07 05:30:31 +00:00
|
|
|
|
((eq element '>)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if (and skeleton-regions
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(eq (nth 1 skeleton) '_))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(indent-region (point) (car skeleton-regions) nil)
|
|
|
|
|
(indent-according-to-mode)))
|
1994-05-07 05:30:31 +00:00
|
|
|
|
((eq element '_)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if skeleton-regions
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(progn
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(goto-char (car skeleton-regions))
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(setq skeleton-regions (cdr skeleton-regions))
|
|
|
|
|
(and (<= (current-column) (current-indentation))
|
|
|
|
|
(eq (nth 1 skeleton) '\n)
|
|
|
|
|
(end-of-line 0)))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(or skeleton-point
|
|
|
|
|
(setq skeleton-point (point)))))
|
1994-05-07 05:30:31 +00:00
|
|
|
|
((eq element '&)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(if skeleton-modified
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(setq skeleton (cdr skeleton))))
|
1994-05-07 05:30:31 +00:00
|
|
|
|
((eq element '|)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(or skeleton-modified
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(setq skeleton (cdr skeleton))))
|
1996-12-28 19:31:17 +00:00
|
|
|
|
((eq element '@)
|
1996-12-28 19:33:20 +00:00
|
|
|
|
(setq skeleton-positions (cons (point) skeleton-positions)))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
((eq 'quote (car-safe element))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(eval (nth 1 element)))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
((or (stringp (car-safe element))
|
|
|
|
|
(consp (car-safe element)))
|
|
|
|
|
(if (symbolp (car-safe (car element)))
|
|
|
|
|
(while (skeleton-internal-list element nil t))
|
|
|
|
|
(setq literal (car element))
|
|
|
|
|
(while literal
|
|
|
|
|
(skeleton-internal-list element (car literal))
|
|
|
|
|
(setq literal (cdr literal)))))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
((null element))
|
|
|
|
|
((skeleton-internal-1 (eval element) t))))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; Maybe belongs into simple.el or elsewhere
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; ;###autoload
|
|
|
|
|
;;; (define-skeleton local-variables-section
|
|
|
|
|
;; "Insert a local variables section. Use current comment syntax if any."
|
|
|
|
|
;; (completing-read "Mode: " obarray
|
|
|
|
|
;; (lambda (symbol)
|
|
|
|
|
;; (if (commandp symbol)
|
|
|
|
|
;; (string-match "-mode$" (symbol-name symbol))))
|
|
|
|
|
;; t)
|
|
|
|
|
;; '(save-excursion
|
|
|
|
|
;; (if (re-search-forward page-delimiter nil t)
|
|
|
|
|
;; (error "Not on last page.")))
|
|
|
|
|
;; comment-start "Local Variables:" comment-end \n
|
|
|
|
|
;; comment-start "mode: " str
|
|
|
|
|
;; & -5 | '(kill-line 0) & -1 | comment-end \n
|
|
|
|
|
;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
|
|
|
|
|
;; obarray
|
|
|
|
|
;; (lambda (symbol)
|
|
|
|
|
;; (or (eq symbol 'eval)
|
|
|
|
|
;; (user-variable-p symbol)))
|
|
|
|
|
;; t)
|
|
|
|
|
;; comment-start str ": "
|
|
|
|
|
;; (read-from-minibuffer "Expression: " nil read-expression-map nil
|
|
|
|
|
;; 'read-expression-history) | _
|
|
|
|
|
;; comment-end \n)
|
|
|
|
|
;; resume:
|
1996-06-28 08:11:18 +00:00
|
|
|
|
;; comment-start "End:" comment-end \n)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
;; Variables and command for automatically inserting pairs like () or "".
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
(defvar skeleton-pair nil
|
1994-03-22 05:43:25 +00:00
|
|
|
|
"*If this is nil pairing is turned off, no matter what else is set.
|
1995-07-20 20:28:45 +00:00
|
|
|
|
Otherwise modes with `skeleton-pair-insert-maybe' on some keys
|
|
|
|
|
will attempt to insert pairs of matching characters.")
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
(defvar skeleton-pair-on-word nil
|
|
|
|
|
"*If this is nil, paired insertion is inhibited before or inside a word.")
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
(defvar skeleton-pair-filter (lambda ())
|
|
|
|
|
"Attempt paired insertion if this function returns nil, before inserting.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
This allows for context-sensitive checking whether pairing is appropriate.")
|
|
|
|
|
|
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
(defvar skeleton-pair-alist ()
|
|
|
|
|
"An override alist of pairing partners matched against `last-command-char'.
|
|
|
|
|
Each alist element, which looks like (ELEMENT ...), is passed to
|
|
|
|
|
`skeleton-insert' with no interactor. Variable `str' does nothing.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1995-07-20 20:28:45 +00:00
|
|
|
|
(defun skeleton-pair-insert-maybe (arg)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
"Insert the character you type ARG times.
|
|
|
|
|
|
1996-06-24 22:33:56 +00:00
|
|
|
|
With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
|
|
|
|
|
is visible the pair is wrapped around it depending on `skeleton-autowrap'.
|
|
|
|
|
Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
|
1995-07-20 20:28:45 +00:00
|
|
|
|
word, and if `skeleton-pair-filter' returns nil, pairing is performed.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-07-20 20:28:45 +00:00
|
|
|
|
If a match is found in `skeleton-pair-alist', that is inserted, else
|
1994-03-22 05:43:25 +00:00
|
|
|
|
the defaults are used. These are (), [], {}, <> and `' for the
|
|
|
|
|
symmetrical ones, and the same character twice for the others."
|
|
|
|
|
(interactive "*P")
|
1996-06-24 22:33:56 +00:00
|
|
|
|
(let ((mark (and skeleton-autowrap
|
|
|
|
|
(or (eq last-command 'mouse-drag-region)
|
|
|
|
|
(and transient-mark-mode mark-active))))
|
|
|
|
|
(skeleton-end-hook))
|
|
|
|
|
(if (or arg
|
|
|
|
|
(not skeleton-pair)
|
|
|
|
|
(and (not mark)
|
|
|
|
|
(or overwrite-mode
|
|
|
|
|
(if (not skeleton-pair-on-word) (looking-at "\\w"))
|
|
|
|
|
(funcall skeleton-pair-filter))))
|
|
|
|
|
(self-insert-command (prefix-numeric-value arg))
|
|
|
|
|
(setq last-command-char (logand last-command-char 255))
|
|
|
|
|
(or skeleton-abbrev-cleanup
|
|
|
|
|
(skeleton-insert
|
|
|
|
|
(cons nil (or (assq last-command-char skeleton-pair-alist)
|
|
|
|
|
(assq last-command-char '((?( _ ?))
|
|
|
|
|
(?[ _ ?])
|
|
|
|
|
(?{ _ ?})
|
|
|
|
|
(?< _ ?>)
|
|
|
|
|
(?` _ ?')))
|
|
|
|
|
`(,last-command-char _ ,last-command-char)))
|
|
|
|
|
(if mark -1))))))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; A more serious example can be found in sh-script.el
|
|
|
|
|
;;; (defun mirror-mode ()
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; "This major mode is an amusing little example of paired insertion.
|
|
|
|
|
;;All printable characters do a paired self insert, while the other commands
|
|
|
|
|
;;work normally."
|
|
|
|
|
;; (interactive)
|
|
|
|
|
;; (kill-all-local-variables)
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; (make-local-variable 'skeleton-pair)
|
|
|
|
|
;; (make-local-variable 'skeleton-pair-on-word)
|
|
|
|
|
;; (make-local-variable 'skeleton-pair-filter)
|
|
|
|
|
;; (make-local-variable 'skeleton-pair-alist)
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; (setq major-mode 'mirror-mode
|
|
|
|
|
;; mode-name "Mirror"
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; skeleton-pair-on-word t
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; ;; in the middle column insert one or none if odd window-width
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; skeleton-pair-filter (lambda ()
|
|
|
|
|
;; (if (>= (current-column)
|
|
|
|
|
;; (/ (window-width) 2))
|
|
|
|
|
;; ;; insert both on next line
|
|
|
|
|
;; (next-line 1)
|
|
|
|
|
;; ;; insert one or both?
|
|
|
|
|
;; (= (* 2 (1+ (current-column)))
|
|
|
|
|
;; (window-width))))
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; ;; mirror these the other way round as well
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; skeleton-pair-alist '((?) _ ?()
|
|
|
|
|
;; (?] _ ?[)
|
|
|
|
|
;; (?} _ ?{)
|
|
|
|
|
;; (?> _ ?<)
|
|
|
|
|
;; (?/ _ ?\\)
|
|
|
|
|
;; (?\\ _ ?/)
|
|
|
|
|
;; (?` ?` _ "''")
|
|
|
|
|
;; (?' ?' _ "``"))
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; ;; in this mode we exceptionally ignore the user, else it's no fun
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; skeleton-pair t)
|
|
|
|
|
;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
|
|
|
|
|
;; (i 0))
|
|
|
|
|
;; (use-local-map `(keymap ,map))
|
|
|
|
|
;; (while (< i ? )
|
|
|
|
|
;; (aset map i nil)
|
|
|
|
|
;; (aset map (+ i 128) nil)
|
1996-06-22 17:42:15 +00:00
|
|
|
|
;; (setq i (1+ i))))
|
|
|
|
|
;; (run-hooks 'mirror-mode-hook))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1996-03-01 15:37:33 +00:00
|
|
|
|
(provide 'skeleton)
|
|
|
|
|
|
1994-03-22 05:43:25 +00:00
|
|
|
|
;; skeleton.el ends here
|