2008-04-17 19:54:57 +00:00
|
|
|
|
;;; skeleton.el --- Lisp language extension for writing statement skeletons -*- coding: utf-8 -*-
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
;; Copyright (C) 1993, 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005,
|
|
|
|
|
;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1998-12-14 03:22:44 +00:00
|
|
|
|
;; Author: Daniel Pfeiffer <occitan@esperanto.org>
|
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.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1994-03-22 05:43:25 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
;; 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
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
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
|
|
|
|
|
|
|
|
|
|
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(defvar skeleton-transformation-function 'identity
|
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'.")
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(defvaralias 'skeleton-transformation 'skeleton-transformation-function)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
|
|
|
|
; this should be a fourth argument to defvar
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(put 'skeleton-transformation-function 'variable-interactive
|
1994-03-22 05:43:25 +00:00
|
|
|
|
"aTransformation function: ")
|
|
|
|
|
|
|
|
|
|
|
1996-06-22 17:42:15 +00:00
|
|
|
|
(defvar skeleton-autowrap t
|
2005-06-10 14:06:22 +00:00
|
|
|
|
"Controls wrapping behavior of functions created with `define-skeleton'.
|
1996-06-22 17:42:15 +00:00
|
|
|
|
When the region is visible (due to `transient-mark-mode' or marking a region
|
2003-05-06 17:51:08 +00:00
|
|
|
|
with the mouse) and this is non-nil and the function was called without an
|
1996-06-22 17:42:15 +00:00
|
|
|
|
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
|
|
|
|
|
2000-12-22 22:56:36 +00:00
|
|
|
|
(defvar skeleton-end-newline t
|
|
|
|
|
"If non-nil, make sure that the skeleton inserted ends with a newline.
|
|
|
|
|
This just influences the way the default `skeleton-end-hook' behaves.")
|
|
|
|
|
|
1995-11-03 03:29:04 +00:00
|
|
|
|
(defvar skeleton-end-hook
|
|
|
|
|
(lambda ()
|
2000-12-22 22:56:36 +00:00
|
|
|
|
(or (eolp) (not skeleton-end-newline) (newline-and-indent)))
|
1995-11-03 03:29:04 +00:00
|
|
|
|
"Hook called at end of skeleton but before going to point of interest.
|
2000-12-22 22:56:36 +00:00
|
|
|
|
By default this moves out anything following to next line,
|
|
|
|
|
unless `skeleton-end-newline' is set to nil.
|
1995-11-03 03:29:04 +00:00
|
|
|
|
The variables `v1' and `v2' are still set when calling this.")
|
|
|
|
|
|
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;;;###autoload
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(defvar skeleton-filter-function 'identity
|
1996-06-22 17:42:15 +00:00
|
|
|
|
"Function for transforming a skeleton proxy's aliases' variable value.")
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(defvaralias 'skeleton-filter 'skeleton-filter-function)
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
|
|
|
|
(defvar skeleton-untabify t
|
2003-05-06 17:51:08 +00:00
|
|
|
|
"When non-nil untabifies when deleting backwards with element -ARG.")
|
1995-07-07 19:21:17 +00:00
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(defvar skeleton-newline-indent-rigidly nil
|
2003-05-06 17:51:08 +00:00
|
|
|
|
"When non-nil, indent rigidly under current line for element `\\n'.
|
1995-08-19 00:30:38 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
(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
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(defvar skeleton-il)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(defvar skeleton-modified)
|
|
|
|
|
(defvar skeleton-point)
|
|
|
|
|
(defvar skeleton-regions)
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
2003-05-28 18:41:41 +00:00
|
|
|
|
(def-edebug-spec skeleton-edebug-spec
|
|
|
|
|
([&or null stringp (stringp &rest stringp) [[¬ atom] def-form]]
|
|
|
|
|
&rest &or "n" "_" "-" ">" "@" "&" "!" "resume:"
|
|
|
|
|
("quote" def-form) skeleton-edebug-spec def-form))
|
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.
|
2003-05-23 00:59:12 +00:00
|
|
|
|
DOCUMENTATION is that of the command.
|
|
|
|
|
SKELETON is as defined under `skeleton-insert'."
|
2003-05-28 18:41:41 +00:00
|
|
|
|
(declare (debug (&define name stringp skeleton-edebug-spec)))
|
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
|
2003-05-23 00:59:12 +00:00
|
|
|
|
;; Tell self-insert-command that this function, if called by an
|
|
|
|
|
;; abbrev, should cause the self-insert to be skipped.
|
|
|
|
|
(put ',command 'no-self-insert t)
|
1996-06-28 08:11:18 +00:00
|
|
|
|
(defun ,command (&optional str arg)
|
|
|
|
|
,(concat documentation
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(if (string-match "\n\\'" documentation)
|
1996-06-28 08:11:18 +00:00
|
|
|
|
"" "\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)
|
2003-05-23 00:59:12 +00:00
|
|
|
|
"Insert SKELETON.
|
1996-06-28 08:11:18 +00:00
|
|
|
|
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
|
|
|
|
|
2005-07-20 22:37:49 +00:00
|
|
|
|
Optional second argument STR may also be a string which will be the value
|
2003-05-23 00:59:12 +00:00
|
|
|
|
of `str' whereas the skeleton's interactor is then ignored."
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(skeleton-insert (funcall skeleton-filter-function skeleton)
|
2003-05-23 00:59:12 +00:00
|
|
|
|
;; 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))
|
2003-06-08 00:54:06 +00:00
|
|
|
|
;; Deactivate the mark, in case one of the
|
|
|
|
|
;; elements of the skeleton is sensitive
|
|
|
|
|
;; to such situations (e.g. it is itself a
|
|
|
|
|
;; skeleton).
|
|
|
|
|
(progn (deactivate-mark)
|
|
|
|
|
-1)))
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(if (stringp str)
|
|
|
|
|
str))
|
|
|
|
|
;; Return non-nil to tell expand-abbrev that expansion has happened.
|
|
|
|
|
;; Otherwise the no-self-insert is ignored.
|
|
|
|
|
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
|
2006-05-21 22:01:50 +00:00
|
|
|
|
`skeleton-transformation-function'). Other possibilities are:
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1995-08-19 00:30:38 +00:00
|
|
|
|
\\n go to next line and indent according to mode
|
2001-02-04 20:57:37 +00:00
|
|
|
|
_ interesting point, interregion here
|
2003-05-18 23:58:08 +00:00
|
|
|
|
- interesting point, no interregion interaction, overrides
|
|
|
|
|
interesting point set by _
|
1995-07-07 19:21:17 +00:00
|
|
|
|
> indent line (or interregion if > _) according to major mode
|
1996-12-28 19:33:20 +00:00
|
|
|
|
@ add position to `skeleton-positions'
|
2007-08-08 07:40:09 +00:00
|
|
|
|
& do next ELEMENT if previous moved point
|
|
|
|
|
| do next ELEMENT if previous didn't move point
|
1995-07-07 19:21:17 +00:00
|
|
|
|
-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
|
|
|
|
|
|
2003-05-18 23:58:08 +00:00
|
|
|
|
After termination, point will be positioned at the last occurrence of -
|
|
|
|
|
or at the first occurrence of _ or at the end of the inserted text.
|
2001-02-04 20:57:37 +00:00
|
|
|
|
|
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.
|
2003-05-06 17:51:08 +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
|
2003-05-06 17:51:08 +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
|
2003-05-06 17:51:08 +00:00
|
|
|
|
`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)
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(list (copy-marker (point) t)
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(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))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(l2 (list (copy-marker (point) t))))
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(while (and l1 (> skeleton-regions 0))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(push (copy-marker (pop l1) t) l2)
|
|
|
|
|
(setq skeleton-regions (1- skeleton-regions)))
|
1997-04-16 19:41:21 +00:00
|
|
|
|
(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'.
|
2003-05-06 17:51:08 +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
|
1995-08-15 19:49:46 +00:00
|
|
|
|
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
|
|
|
|
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(defun skeleton-internal-list (skeleton-il &optional str recursive)
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
(let* ((start (line-beginning-position))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
(column (current-column))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(line (buffer-substring start (line-end-position)))
|
1995-07-07 19:21:17 +00:00
|
|
|
|
opoint)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(or str
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(setq str `(setq str
|
|
|
|
|
(skeleton-read ',(car skeleton-il) nil ,recursive))))
|
|
|
|
|
(when (and (eq (cadr skeleton-il) '\n) (not recursive)
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(save-excursion (skip-chars-backward " \t") (bolp)))
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(setq skeleton-il (cons nil (cons '> (cddr skeleton-il)))))
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(while (setq skeleton-modified (eq opoint (point))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
opoint (point)
|
2010-11-10 04:30:21 +00:00
|
|
|
|
skeleton-il (cdr skeleton-il))
|
1995-08-15 19:49:46 +00:00
|
|
|
|
(condition-case quit
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(skeleton-internal-1 (car skeleton-il) nil recursive)
|
1995-08-15 19:49:46 +00:00
|
|
|
|
(quit
|
|
|
|
|
(if (eq (cdr quit) 'recursive)
|
1995-08-19 00:30:38 +00:00
|
|
|
|
(setq recursive 'quit
|
2010-11-10 04:30:21 +00:00
|
|
|
|
skeleton-il (memq 'resume: skeleton-il))
|
2002-05-14 14:14:11 +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)
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(setq skeleton-il ()
|
1995-08-15 19:49:46 +00:00
|
|
|
|
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
|
|
|
|
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(defun skeleton-internal-1 (element &optional literal recursive)
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(cond
|
2007-09-07 02:14:55 +00:00
|
|
|
|
((or (integerp element) (stringp element))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(if (and (integerp element) ; -num
|
|
|
|
|
(< element 0))
|
|
|
|
|
(if skeleton-untabify
|
|
|
|
|
(backward-delete-char-untabify (- element))
|
Replace Lisp calls to delete-backward-char by delete-char.
* bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
skeleton.el, term.el, time.el, wid-edit.el, woman.el,
calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
progmodes/ps-mode.el, progmodes/verilog-mode.el,
progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
delete-backward-char by calls to delete-char.
2010-05-25 02:11:08 +00:00
|
|
|
|
(delete-char element))
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(insert (if (not literal)
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(funcall skeleton-transformation-function element)
|
2002-05-14 14:14:11 +00:00
|
|
|
|
element))))
|
|
|
|
|
((or (eq element '\n) ; actually (eq '\n 'n)
|
|
|
|
|
;; The sequence `> \n' is handled specially so as to indent the first
|
|
|
|
|
;; line after inserting the newline (to get the proper indentation).
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(and (eq element '>) (eq (nth 1 skeleton-il) '\n) (pop skeleton-il)))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(let ((pos (if (eq element '>) (point))))
|
|
|
|
|
(cond
|
2010-11-10 04:30:21 +00:00
|
|
|
|
((and skeleton-regions (eq (nth 1 skeleton-il) '_))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(or (eolp) (newline))
|
|
|
|
|
(if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
|
|
|
|
|
(indent-region (line-beginning-position)
|
|
|
|
|
(car skeleton-regions) nil))
|
|
|
|
|
;; \n as last element only inserts \n if not at eol.
|
2010-11-10 04:30:21 +00:00
|
|
|
|
((and (null (cdr skeleton-il)) (not recursive) (eolp))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(if pos (indent-according-to-mode)))
|
|
|
|
|
(skeleton-newline-indent-rigidly
|
|
|
|
|
(let ((pt (point)))
|
|
|
|
|
(newline)
|
|
|
|
|
(indent-to (save-excursion
|
|
|
|
|
(goto-char pt)
|
|
|
|
|
(if pos (indent-according-to-mode))
|
|
|
|
|
(current-indentation)))))
|
|
|
|
|
(t (if pos (reindent-then-newline-and-indent)
|
|
|
|
|
(newline)
|
|
|
|
|
(indent-according-to-mode))))))
|
|
|
|
|
((eq element '>)
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(if (and skeleton-regions (eq (nth 1 skeleton-il) '_))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(indent-region (line-beginning-position)
|
|
|
|
|
(car skeleton-regions) nil)
|
|
|
|
|
(indent-according-to-mode)))
|
|
|
|
|
((eq element '_)
|
|
|
|
|
(if skeleton-regions
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (pop skeleton-regions))
|
|
|
|
|
(and (<= (current-column) (current-indentation))
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(eq (nth 1 skeleton-il) '\n)
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(end-of-line 0)))
|
|
|
|
|
(or skeleton-point
|
|
|
|
|
(setq skeleton-point (point)))))
|
|
|
|
|
((eq element '-)
|
|
|
|
|
(setq skeleton-point (point)))
|
|
|
|
|
((eq element '&)
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(when skeleton-modified (pop skeleton-il)))
|
2003-05-23 00:59:12 +00:00
|
|
|
|
((eq element '|)
|
2010-11-10 04:30:21 +00:00
|
|
|
|
(unless skeleton-modified (pop skeleton-il)))
|
2003-05-23 00:59:12 +00:00
|
|
|
|
((eq element '@)
|
|
|
|
|
(push (point) skeleton-positions))
|
|
|
|
|
((eq 'quote (car-safe element))
|
|
|
|
|
(eval (nth 1 element)))
|
2003-05-26 01:02:31 +00:00
|
|
|
|
((and (consp element)
|
|
|
|
|
(or (stringp (car element)) (listp (car element))))
|
|
|
|
|
;; Don't forget: `symbolp' is also true for nil.
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(if (symbolp (car-safe (car element)))
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(while (and (skeleton-internal-list element nil t)
|
|
|
|
|
;; If the interactor is nil, don't infinite loop.
|
|
|
|
|
(car element)))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
(setq literal (car element))
|
|
|
|
|
(while literal
|
|
|
|
|
(skeleton-internal-list element (car literal))
|
|
|
|
|
(setq literal (cdr literal)))))
|
|
|
|
|
((null element))
|
2003-05-23 00:59:12 +00:00
|
|
|
|
(t (skeleton-internal-1 (eval element) t recursive))))
|
2002-05-14 14:14:11 +00:00
|
|
|
|
|
1995-07-07 19:21:17 +00:00
|
|
|
|
;; Maybe belongs into simple.el or elsewhere
|
2002-05-14 14:14:11 +00:00
|
|
|
|
;; ;;;###autoload
|
|
|
|
|
;; (define-skeleton local-variables-section
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; "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)
|
2001-07-14 11:21:08 +00:00
|
|
|
|
;; (error "Not on last page")))
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; 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
|
|
|
|
|
|
|
|
|
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(defvar skeleton-pair-filter-function (lambda () nil)
|
1995-07-20 20:28:45 +00:00
|
|
|
|
"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 ()
|
2009-01-09 04:44:15 +00:00
|
|
|
|
"An override alist of pairing partners matched against `last-command-event'.
|
1995-07-20 20:28:45 +00:00
|
|
|
|
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
|
|
|
|
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(defvar skeleton-pair-default-alist '((?( _ ?)) (?\))
|
|
|
|
|
(?[ _ ?]) (?\])
|
|
|
|
|
(?{ _ ?}) (?\})
|
|
|
|
|
(?< _ ?>) (?\>)
|
2008-04-17 19:54:57 +00:00
|
|
|
|
(?« _ ?») (?\»)
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(?` _ ?')))
|
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
|
2006-05-21 22:01:50 +00:00
|
|
|
|
word, and if `skeleton-pair-filter-function' returns nil, pairing is performed.
|
2001-03-23 17:50:41 +00:00
|
|
|
|
Pairing is also prohibited if we are right after a quoting character
|
|
|
|
|
such as backslash.
|
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")
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(if (or arg (not skeleton-pair))
|
|
|
|
|
(self-insert-command (prefix-numeric-value arg))
|
|
|
|
|
(let* ((mark (and skeleton-autowrap
|
|
|
|
|
(or (eq last-command 'mouse-drag-region)
|
|
|
|
|
(and transient-mark-mode mark-active))))
|
|
|
|
|
(skeleton-end-hook)
|
2009-01-09 04:44:15 +00:00
|
|
|
|
(char last-command-event)
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(skeleton (or (assq char skeleton-pair-alist)
|
|
|
|
|
(assq char skeleton-pair-default-alist)
|
|
|
|
|
`(,char _ ,char))))
|
|
|
|
|
(if (or (memq (char-syntax (preceding-char)) '(?\\ ?/))
|
|
|
|
|
(and (not mark)
|
|
|
|
|
(or overwrite-mode
|
|
|
|
|
(if (not skeleton-pair-on-word) (looking-at "\\w"))
|
2006-05-21 22:01:50 +00:00
|
|
|
|
(funcall skeleton-pair-filter-function))))
|
2003-05-26 01:02:31 +00:00
|
|
|
|
(self-insert-command (prefix-numeric-value arg))
|
|
|
|
|
(skeleton-insert (cons nil skeleton) (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
|
2008-04-17 19:54:57 +00:00
|
|
|
|
;; (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)
|
2006-05-21 22:01:50 +00:00
|
|
|
|
;; (make-local-variable 'skeleton-pair-filter-function)
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; (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
|
2006-05-21 22:01:50 +00:00
|
|
|
|
;; skeleton-pair-filter-function (lambda ()
|
1996-06-24 22:33:56 +00:00
|
|
|
|
;; (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))))
|
2005-05-26 13:13:36 +00:00
|
|
|
|
;; (run-mode-hooks 'mirror-mode-hook))
|
1994-03-22 05:43:25 +00:00
|
|
|
|
|
1996-03-01 15:37:33 +00:00
|
|
|
|
(provide 'skeleton)
|
|
|
|
|
|
2001-07-14 11:21:08 +00:00
|
|
|
|
;;; skeleton.el ends here
|