2001-07-16 12:23:00 +00:00
|
|
|
|
;;; easy-mmode.el --- easy definition for major and minor modes
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
2006-02-06 12:31:40 +00:00
|
|
|
|
;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2005,
|
|
|
|
|
;; 2006 Free Software Foundation, Inc.
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
2001-07-17 07:37:19 +00:00
|
|
|
|
;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr>
|
|
|
|
|
;; Maintainer: Stefan Monnier <monnier@gnu.org>
|
|
|
|
|
|
|
|
|
|
;; Keywords: extensions lisp
|
1997-06-22 20:08:32 +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
|
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 17:55:18 +00:00
|
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Minor modes are useful and common. This package makes defining a
|
|
|
|
|
;; minor mode easy, by focusing on the writing of the minor mode
|
|
|
|
|
;; functionalities themselves. Moreover, this package enforces a
|
|
|
|
|
;; conventional naming of user interface primitives, making things
|
|
|
|
|
;; natural for the minor-mode end-users.
|
|
|
|
|
|
|
|
|
|
;; For each mode, easy-mmode defines the following:
|
|
|
|
|
;; <mode> : The minor mode predicate. A buffer-local variable.
|
|
|
|
|
;; <mode>-map : The keymap possibly associated to <mode>.
|
2000-05-21 01:44:08 +00:00
|
|
|
|
;; see `define-minor-mode' documentation
|
1997-06-22 20:08:32 +00:00
|
|
|
|
;;
|
|
|
|
|
;; eval
|
2000-05-21 01:44:08 +00:00
|
|
|
|
;; (pp (macroexpand '(define-minor-mode <your-mode> <doc>)))
|
1997-06-22 20:08:32 +00:00
|
|
|
|
;; to check the result before using it.
|
|
|
|
|
|
|
|
|
|
;; The order in which minor modes are installed is important. Keymap
|
|
|
|
|
;; lookup proceeds down minor-mode-map-alist, and the order there
|
|
|
|
|
;; tends to be the reverse of the order in which the modes were
|
|
|
|
|
;; installed. Perhaps there should be a feature to let you specify
|
|
|
|
|
;; orderings.
|
|
|
|
|
|
2000-03-10 01:17:04 +00:00
|
|
|
|
;; Additionally to `define-minor-mode', the package provides convenient
|
|
|
|
|
;; ways to define keymaps, and other helper functions for major and minor modes.
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
2000-03-10 01:17:04 +00:00
|
|
|
|
;;; Code:
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
2000-06-04 23:40:58 +00:00
|
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
|
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(defun easy-mmode-pretty-mode-name (mode &optional lighter)
|
|
|
|
|
"Turn the symbol MODE into a string intended for the user.
|
2005-05-07 15:06:42 +00:00
|
|
|
|
If provided, LIGHTER will be used to help choose capitalization by,
|
|
|
|
|
replacing its case-insensitive matches with the literal string in LIGHTER."
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(let* ((case-fold-search t)
|
2005-05-08 19:39:20 +00:00
|
|
|
|
;; Produce "Foo-Bar minor mode" from foo-bar-minor-mode.
|
2000-10-01 00:58:35 +00:00
|
|
|
|
(name (concat (replace-regexp-in-string
|
2005-05-08 19:39:20 +00:00
|
|
|
|
;; If the original mode name included "-minor" (some
|
|
|
|
|
;; of them don't, e.g. auto-revert-mode), then
|
|
|
|
|
;; replace it with " minor".
|
2000-10-01 00:58:35 +00:00
|
|
|
|
"-Minor" " minor"
|
2005-05-07 15:06:42 +00:00
|
|
|
|
;; "foo-bar-minor" -> "Foo-Bar-Minor"
|
2000-10-01 00:58:35 +00:00
|
|
|
|
(capitalize (replace-regexp-in-string
|
2005-05-07 15:06:42 +00:00
|
|
|
|
;; "foo-bar-minor-mode" -> "foo-bar-minor"
|
2000-10-01 00:58:35 +00:00
|
|
|
|
"-mode\\'" "" (symbol-name mode))))
|
2000-06-04 20:59:47 +00:00
|
|
|
|
" mode")))
|
|
|
|
|
(if (not (stringp lighter)) name
|
2005-05-07 15:06:42 +00:00
|
|
|
|
;; Strip leading and trailing whitespace from LIGHTER.
|
|
|
|
|
(setq lighter (replace-regexp-in-string "\\`\\s-+\\|\\s-+\\'" ""
|
|
|
|
|
lighter))
|
|
|
|
|
;; Replace any (case-insensitive) matches for LIGHTER in NAME
|
|
|
|
|
;; with a literal LIGHTER. E.g., if NAME is "Iimage mode" and
|
|
|
|
|
;; LIGHTER is " iImag", then this will produce "iImage mode".
|
|
|
|
|
;; (LIGHTER normally comes from the mode-line string passed to
|
|
|
|
|
;; define-minor-mode, and normally includes at least one leading
|
|
|
|
|
;; space.)
|
|
|
|
|
(replace-regexp-in-string (regexp-quote lighter) lighter name t t))))
|
2000-06-02 23:07:08 +00:00
|
|
|
|
|
1997-06-22 20:08:32 +00:00
|
|
|
|
;;;###autoload
|
1999-11-23 09:08:38 +00:00
|
|
|
|
(defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro define-minor-mode (mode doc &optional init-value lighter keymap &rest body)
|
1997-06-22 20:08:32 +00:00
|
|
|
|
"Define a new minor mode MODE.
|
2000-06-04 20:59:47 +00:00
|
|
|
|
This function defines the associated control variable MODE, keymap MODE-map,
|
2005-05-17 15:17:18 +00:00
|
|
|
|
and toggle command MODE.
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
|
|
|
|
DOC is the documentation for the mode toggle command.
|
1999-11-23 09:08:38 +00:00
|
|
|
|
Optional INIT-VALUE is the initial value of the mode's variable.
|
2000-05-21 01:44:08 +00:00
|
|
|
|
Optional LIGHTER is displayed in the modeline when the mode is on.
|
1997-06-22 20:08:32 +00:00
|
|
|
|
Optional KEYMAP is the default (defvar) keymap bound to the mode keymap.
|
2000-06-04 20:59:47 +00:00
|
|
|
|
If it is a list, it is passed to `easy-mmode-define-keymap'
|
2000-11-01 23:31:59 +00:00
|
|
|
|
in order to build a valid keymap. It's generally better to use
|
|
|
|
|
a separate MODE-map variable than to use this argument.
|
|
|
|
|
The above three arguments can be skipped if keyword arguments are
|
|
|
|
|
used (see below).
|
|
|
|
|
|
2006-07-08 15:20:52 +00:00
|
|
|
|
BODY contains code to execute each time the mode is activated or deactivated.
|
2006-07-09 02:02:03 +00:00
|
|
|
|
It is executed after toggling the mode,
|
|
|
|
|
and before running the hook variable `mode-HOOK'.
|
2005-05-17 15:17:18 +00:00
|
|
|
|
Before the actual body code, you can write keyword arguments (alternating
|
|
|
|
|
keywords and values). These following keyword arguments are supported (other
|
|
|
|
|
keywords will be passed to `defcustom' if the minor mode is global):
|
2002-10-07 22:49:39 +00:00
|
|
|
|
:group GROUP Custom group name to use in all generated `defcustom' forms.
|
2005-04-05 14:46:29 +00:00
|
|
|
|
Defaults to MODE without the possible trailing \"-mode\".
|
2005-04-26 14:17:51 +00:00
|
|
|
|
Don't use this default group name unless you have written a
|
|
|
|
|
`defgroup' to define that group properly.
|
2002-09-13 14:16:02 +00:00
|
|
|
|
:global GLOBAL If non-nil specifies that the minor mode is not meant to be
|
2005-04-05 14:46:29 +00:00
|
|
|
|
buffer-local, so don't make the variable MODE buffer-local.
|
2002-10-07 22:49:39 +00:00
|
|
|
|
By default, the mode is buffer-local.
|
2002-09-13 14:16:02 +00:00
|
|
|
|
:init-value VAL Same as the INIT-VALUE argument.
|
|
|
|
|
:lighter SPEC Same as the LIGHTER argument.
|
2003-05-29 21:54:35 +00:00
|
|
|
|
:keymap MAP Same as the KEYMAP argument.
|
2002-10-07 22:49:39 +00:00
|
|
|
|
:require SYM Same as in `defcustom'.
|
|
|
|
|
|
|
|
|
|
For example, you could write
|
|
|
|
|
(define-minor-mode foo-mode \"If enabled, foo on you!\"
|
2003-03-24 17:41:43 +00:00
|
|
|
|
:lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
|
2002-10-07 22:49:39 +00:00
|
|
|
|
...BODY CODE...)"
|
2003-05-29 21:54:35 +00:00
|
|
|
|
(declare (debug (&define name stringp
|
|
|
|
|
[&optional [¬ keywordp] sexp
|
|
|
|
|
&optional [¬ keywordp] sexp
|
|
|
|
|
&optional [¬ keywordp] sexp]
|
|
|
|
|
[&rest [keywordp sexp]]
|
|
|
|
|
def-body)))
|
2002-10-07 22:49:39 +00:00
|
|
|
|
|
2000-11-01 23:31:59 +00:00
|
|
|
|
;; Allow skipping the first three args.
|
|
|
|
|
(cond
|
|
|
|
|
((keywordp init-value)
|
|
|
|
|
(setq body (list* init-value lighter keymap body)
|
|
|
|
|
init-value nil lighter nil keymap nil))
|
|
|
|
|
((keywordp lighter)
|
|
|
|
|
(setq body (list* lighter keymap body) lighter nil keymap nil))
|
|
|
|
|
((keywordp keymap) (push keymap body) (setq keymap nil)))
|
|
|
|
|
|
2006-05-08 15:12:25 +00:00
|
|
|
|
(let* ((last-message (current-message))
|
|
|
|
|
(mode-name (symbol-name mode))
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(pretty-name (easy-mmode-pretty-mode-name mode lighter))
|
2000-05-21 01:44:08 +00:00
|
|
|
|
(globalp nil)
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(set nil)
|
2005-07-14 00:56:13 +00:00
|
|
|
|
(initialize nil)
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(group nil)
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(type nil)
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(extra-args nil)
|
2003-03-24 17:41:43 +00:00
|
|
|
|
(extra-keywords nil)
|
2002-09-13 14:16:02 +00:00
|
|
|
|
(require t)
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(hook (intern (concat mode-name "-hook")))
|
|
|
|
|
(hook-on (intern (concat mode-name "-on-hook")))
|
2003-03-24 17:41:43 +00:00
|
|
|
|
(hook-off (intern (concat mode-name "-off-hook")))
|
2003-05-29 21:54:35 +00:00
|
|
|
|
keyw keymap-sym)
|
2000-06-04 20:59:47 +00:00
|
|
|
|
|
|
|
|
|
;; Check keys.
|
2003-03-24 17:41:43 +00:00
|
|
|
|
(while (keywordp (setq keyw (car body)))
|
|
|
|
|
(setq body (cdr body))
|
|
|
|
|
(case keyw
|
2000-11-01 23:31:59 +00:00
|
|
|
|
(:init-value (setq init-value (pop body)))
|
|
|
|
|
(:lighter (setq lighter (pop body)))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
(:global (setq globalp (pop body)))
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(:extra-args (setq extra-args (pop body)))
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(:set (setq set (list :set (pop body))))
|
2005-07-14 00:56:13 +00:00
|
|
|
|
(:initialize (setq initialize (list :initialize (pop body))))
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(:group (setq group (nconc group (list :group (pop body)))))
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(:type (setq type (list :type (pop body))))
|
2002-09-13 14:16:02 +00:00
|
|
|
|
(:require (setq require (pop body)))
|
2003-05-29 21:54:35 +00:00
|
|
|
|
(:keymap (setq keymap (pop body)))
|
2003-03-24 17:41:43 +00:00
|
|
|
|
(t (push keyw extra-keywords) (push (pop body) extra-keywords))))
|
2000-10-28 06:07:30 +00:00
|
|
|
|
|
2003-05-29 21:54:35 +00:00
|
|
|
|
(setq keymap-sym (if (and keymap (symbolp keymap)) keymap
|
|
|
|
|
(intern (concat mode-name "-map"))))
|
|
|
|
|
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(unless set (setq set '(:set 'custom-set-minor-mode)))
|
|
|
|
|
|
2005-07-14 00:56:13 +00:00
|
|
|
|
(unless initialize
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(setq initialize '(:initialize 'custom-initialize-default)))
|
2005-07-14 00:56:13 +00:00
|
|
|
|
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(unless group
|
|
|
|
|
;; We might as well provide a best-guess default group.
|
|
|
|
|
(setq group
|
2005-04-05 14:46:29 +00:00
|
|
|
|
`(:group ',(intern (replace-regexp-in-string
|
|
|
|
|
"-mode\\'" "" mode-name)))))
|
2005-05-22 22:07:22 +00:00
|
|
|
|
|
2005-07-16 02:25:48 +00:00
|
|
|
|
(unless type (setq type '(:type 'boolean)))
|
|
|
|
|
|
1997-06-22 20:08:32 +00:00
|
|
|
|
`(progn
|
1999-08-28 15:13:37 +00:00
|
|
|
|
;; Define the variable to enable or disable the mode.
|
2000-06-05 06:06:30 +00:00
|
|
|
|
,(if (not globalp)
|
|
|
|
|
`(progn
|
|
|
|
|
(defvar ,mode ,init-value ,(format "Non-nil if %s is enabled.
|
2001-01-25 15:31:14 +00:00
|
|
|
|
Use the command `%s' to change this variable." pretty-name mode))
|
2000-06-05 06:06:30 +00:00
|
|
|
|
(make-variable-buffer-local ',mode))
|
1997-06-22 20:08:32 +00:00
|
|
|
|
|
2005-08-24 11:54:25 +00:00
|
|
|
|
(let ((base-doc-string
|
|
|
|
|
(concat "Non-nil if %s is enabled.
|
|
|
|
|
See the command `%s' for a description of this minor-mode."
|
|
|
|
|
(if body "
|
2000-06-05 06:06:30 +00:00
|
|
|
|
Setting this variable directly does not take effect;
|
2005-08-24 11:54:25 +00:00
|
|
|
|
use either \\[customize] or the function `%s'."))))
|
2005-06-08 15:54:43 +00:00
|
|
|
|
`(defcustom ,mode ,init-value
|
|
|
|
|
,(format base-doc-string pretty-name mode mode)
|
2005-07-16 02:25:48 +00:00
|
|
|
|
,@set
|
2005-07-14 00:56:13 +00:00
|
|
|
|
,@initialize
|
2000-11-03 04:26:33 +00:00
|
|
|
|
,@group
|
2005-07-16 02:25:48 +00:00
|
|
|
|
,@type
|
2005-08-24 11:54:25 +00:00
|
|
|
|
,@(unless (eq require t) `(:require ,require))
|
|
|
|
|
,@(nreverse extra-keywords))))
|
2000-06-11 04:55:57 +00:00
|
|
|
|
|
2000-06-04 20:59:47 +00:00
|
|
|
|
;; The actual function.
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(defun ,mode (&optional arg ,@extra-args)
|
2000-06-04 20:59:47 +00:00
|
|
|
|
,(or doc
|
2000-11-01 23:31:59 +00:00
|
|
|
|
(format (concat "Toggle %s on or off.
|
|
|
|
|
Interactively, with no prefix argument, toggle the mode.
|
2002-08-15 01:06:05 +00:00
|
|
|
|
With universal prefix ARG turn mode on.
|
2000-06-04 20:59:47 +00:00
|
|
|
|
With zero or negative ARG turn mode off.
|
2000-11-01 23:31:59 +00:00
|
|
|
|
\\{%s}") pretty-name keymap-sym))
|
2002-08-15 01:06:05 +00:00
|
|
|
|
;; Use `toggle' rather than (if ,mode 0 1) so that using
|
|
|
|
|
;; repeat-command still does the toggling correctly.
|
|
|
|
|
(interactive (list (or current-prefix-arg 'toggle)))
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(setq ,mode
|
2002-08-15 01:06:05 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq arg 'toggle) (not ,mode))
|
|
|
|
|
(arg (> (prefix-numeric-value arg) 0))
|
|
|
|
|
(t
|
|
|
|
|
(if (null ,mode) t
|
|
|
|
|
(message
|
|
|
|
|
"Toggling %s off; better pass an explicit argument."
|
|
|
|
|
',mode)
|
|
|
|
|
nil))))
|
2000-06-04 20:59:47 +00:00
|
|
|
|
,@body
|
|
|
|
|
;; The on/off hooks are here for backward compatibility only.
|
|
|
|
|
(run-hooks ',hook (if ,mode ',hook-on ',hook-off))
|
2004-11-02 09:23:34 +00:00
|
|
|
|
(if (called-interactively-p)
|
2002-08-26 16:40:49 +00:00
|
|
|
|
(progn
|
|
|
|
|
,(if globalp `(customize-mark-as-set ',mode))
|
2006-05-08 15:12:25 +00:00
|
|
|
|
;; Avoid overwriting a message shown by the body,
|
|
|
|
|
;; but do overwrite previous messages.
|
|
|
|
|
(unless ,(and (current-message)
|
|
|
|
|
(not (equal last-message (current-message))))
|
2003-05-29 21:54:35 +00:00
|
|
|
|
(message ,(format "%s %%sabled" pretty-name)
|
2003-04-18 17:31:05 +00:00
|
|
|
|
(if ,mode "en" "dis")))))
|
2000-11-01 23:31:59 +00:00
|
|
|
|
(force-mode-line-update)
|
2002-08-26 16:40:49 +00:00
|
|
|
|
;; Return the new setting.
|
2000-06-04 20:59:47 +00:00
|
|
|
|
,mode)
|
2003-05-29 21:54:35 +00:00
|
|
|
|
|
2005-04-05 14:46:29 +00:00
|
|
|
|
;; Autoloading a define-minor-mode autoloads everything
|
|
|
|
|
;; up-to-here.
|
2000-06-11 04:55:57 +00:00
|
|
|
|
:autoload-end
|
|
|
|
|
|
2000-06-05 06:06:30 +00:00
|
|
|
|
;; Define the minor-mode keymap.
|
2000-06-11 04:55:57 +00:00
|
|
|
|
,(unless (symbolp keymap) ;nil is also a symbol.
|
2000-06-05 06:06:30 +00:00
|
|
|
|
`(defvar ,keymap-sym
|
2000-06-11 04:55:57 +00:00
|
|
|
|
(let ((m ,keymap))
|
|
|
|
|
(cond ((keymapp m) m)
|
|
|
|
|
((listp m) (easy-mmode-define-keymap m))
|
|
|
|
|
(t (error "Invalid keymap %S" ,keymap))))
|
2000-06-05 06:06:30 +00:00
|
|
|
|
,(format "Keymap for `%s'." mode-name)))
|
|
|
|
|
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(add-minor-mode ',mode ',lighter
|
2000-06-11 04:55:57 +00:00
|
|
|
|
,(if keymap keymap-sym
|
2000-08-16 20:16:33 +00:00
|
|
|
|
`(if (boundp ',keymap-sym)
|
2005-07-22 01:26:03 +00:00
|
|
|
|
(symbol-value ',keymap-sym)))))))
|
2000-03-10 01:17:04 +00:00
|
|
|
|
|
2000-06-04 23:40:58 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; make global minor mode
|
|
|
|
|
;;;
|
|
|
|
|
|
2000-06-05 06:06:30 +00:00
|
|
|
|
;;;###autoload
|
2005-03-31 21:16:54 +00:00
|
|
|
|
(defalias 'easy-mmode-define-global-mode 'define-global-minor-mode)
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro define-global-minor-mode (global-mode mode turn-on &rest keys)
|
2000-11-01 23:31:59 +00:00
|
|
|
|
"Make GLOBAL-MODE out of the buffer-local minor MODE.
|
2000-06-04 23:40:58 +00:00
|
|
|
|
TURN-ON is a function that will be called with no args in every buffer
|
|
|
|
|
and that should try to turn MODE on if applicable for that buffer.
|
2005-11-05 23:03:57 +00:00
|
|
|
|
KEYS is a list of CL-style keyword arguments. As the minor mode
|
|
|
|
|
defined by this function is always global, any :global keyword is
|
|
|
|
|
ignored. Other keywords have the same meaning as in `define-minor-mode',
|
|
|
|
|
which see. In particular, :group specifies the custom group.
|
|
|
|
|
The most useful keywords are those that are passed on to the
|
|
|
|
|
`defcustom'. It normally makes no sense to pass the :lighter
|
|
|
|
|
or :keymap keywords to `define-global-minor-mode', since these
|
|
|
|
|
are usually passed to the buffer-local version of the minor mode.
|
2005-06-04 22:13:57 +00:00
|
|
|
|
|
|
|
|
|
If MODE's set-up depends on the major mode in effect when it was
|
|
|
|
|
enabled, then disabling and reenabling MODE should make MODE work
|
|
|
|
|
correctly with the current major mode. This is important to
|
|
|
|
|
prevent problems with derived modes, that is, major modes that
|
|
|
|
|
call another major mode in their body."
|
|
|
|
|
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(let* ((global-mode-name (symbol-name global-mode))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
(pretty-name (easy-mmode-pretty-mode-name mode))
|
|
|
|
|
(pretty-global-name (easy-mmode-pretty-mode-name global-mode))
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(group nil)
|
2005-11-05 23:03:57 +00:00
|
|
|
|
(extra-keywords nil)
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(MODE-buffers (intern (concat global-mode-name "-buffers")))
|
|
|
|
|
(MODE-enable-in-buffers
|
|
|
|
|
(intern (concat global-mode-name "-enable-in-buffers")))
|
|
|
|
|
(MODE-check-buffers
|
|
|
|
|
(intern (concat global-mode-name "-check-buffers")))
|
|
|
|
|
(MODE-cmhh (intern (concat global-mode-name "-cmhh")))
|
2005-11-05 23:03:57 +00:00
|
|
|
|
(MODE-major-mode (intern (concat (symbol-name mode) "-major-mode")))
|
|
|
|
|
keyw)
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
|
|
|
|
;; Check keys.
|
2005-11-05 23:03:57 +00:00
|
|
|
|
(while (keywordp (setq keyw (car keys)))
|
|
|
|
|
(setq keys (cdr keys))
|
|
|
|
|
(case keyw
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(:group (setq group (nconc group (list :group (pop keys)))))
|
2005-11-05 23:03:57 +00:00
|
|
|
|
(:global (setq keys (cdr keys)))
|
|
|
|
|
(t (push keyw extra-keywords) (push (pop keys) extra-keywords))))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
2000-11-03 04:26:33 +00:00
|
|
|
|
(unless group
|
|
|
|
|
;; We might as well provide a best-guess default group.
|
|
|
|
|
(setq group
|
2005-04-05 14:46:29 +00:00
|
|
|
|
`(:group ',(intern (replace-regexp-in-string
|
|
|
|
|
"-mode\\'" "" (symbol-name mode))))))
|
2002-12-13 23:54:45 +00:00
|
|
|
|
|
2000-06-04 23:40:58 +00:00
|
|
|
|
`(progn
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(defvar ,MODE-major-mode nil)
|
|
|
|
|
(make-variable-buffer-local ',MODE-major-mode)
|
2000-06-04 23:40:58 +00:00
|
|
|
|
;; The actual global minor-mode
|
|
|
|
|
(define-minor-mode ,global-mode
|
|
|
|
|
,(format "Toggle %s in every buffer.
|
|
|
|
|
With prefix ARG, turn %s on if and only if ARG is positive.
|
|
|
|
|
%s is actually not turned on in every buffer but only in those
|
|
|
|
|
in which `%s' turns it on."
|
|
|
|
|
pretty-name pretty-global-name pretty-name turn-on)
|
2005-11-05 23:03:57 +00:00
|
|
|
|
:global t ,@group ,@(nreverse extra-keywords)
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
|
|
|
|
;; Setup hook to handle future mode changes and new buffers.
|
|
|
|
|
(if ,global-mode
|
2000-06-05 06:06:30 +00:00
|
|
|
|
(progn
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(add-hook 'after-change-major-mode-hook
|
|
|
|
|
',MODE-enable-in-buffers)
|
|
|
|
|
(add-hook 'find-file-hook ',MODE-check-buffers)
|
|
|
|
|
(add-hook 'change-major-mode-hook ',MODE-cmhh))
|
|
|
|
|
(remove-hook 'after-change-major-mode-hook ',MODE-enable-in-buffers)
|
|
|
|
|
(remove-hook 'find-file-hook ',MODE-check-buffers)
|
|
|
|
|
(remove-hook 'change-major-mode-hook ',MODE-cmhh))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
|
|
|
|
;; Go through existing buffers.
|
|
|
|
|
(dolist (buf (buffer-list))
|
|
|
|
|
(with-current-buffer buf
|
2000-11-03 04:38:41 +00:00
|
|
|
|
(if ,global-mode (,turn-on) (when ,mode (,mode -1))))))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
2005-05-17 15:17:18 +00:00
|
|
|
|
;; Autoloading define-global-minor-mode autoloads everything
|
|
|
|
|
;; up-to-here.
|
2000-06-11 04:55:57 +00:00
|
|
|
|
:autoload-end
|
|
|
|
|
|
2000-06-04 23:40:58 +00:00
|
|
|
|
;; List of buffers left to process.
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(defvar ,MODE-buffers nil)
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
|
|
|
|
;; The function that calls TURN-ON in each buffer.
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(defun ,MODE-enable-in-buffers ()
|
|
|
|
|
(dolist (buf ,MODE-buffers)
|
|
|
|
|
(when (buffer-live-p buf)
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(if ,mode
|
|
|
|
|
(unless (eq ,MODE-major-mode major-mode)
|
|
|
|
|
(,mode -1)
|
|
|
|
|
(,turn-on)
|
|
|
|
|
(setq ,MODE-major-mode major-mode))
|
|
|
|
|
(,turn-on)
|
|
|
|
|
(setq ,MODE-major-mode major-mode))))))
|
|
|
|
|
(put ',MODE-enable-in-buffers 'definition-name ',global-mode)
|
|
|
|
|
|
|
|
|
|
(defun ,MODE-check-buffers ()
|
|
|
|
|
(,MODE-enable-in-buffers)
|
|
|
|
|
(setq ,MODE-buffers nil)
|
|
|
|
|
(remove-hook 'post-command-hook ',MODE-check-buffers))
|
|
|
|
|
(put ',MODE-check-buffers 'definition-name ',global-mode)
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
|
|
|
|
;; The function that catches kill-all-local-variables.
|
2005-06-04 22:13:57 +00:00
|
|
|
|
(defun ,MODE-cmhh ()
|
|
|
|
|
(add-to-list ',MODE-buffers (current-buffer))
|
|
|
|
|
(add-hook 'post-command-hook ',MODE-check-buffers))
|
|
|
|
|
(put ',MODE-cmhh 'definition-name ',global-mode))))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
|
2000-03-10 01:17:04 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; easy-mmode-defmap
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(if (fboundp 'set-keymap-parents)
|
|
|
|
|
(defalias 'easy-mmode-set-keymap-parents 'set-keymap-parents)
|
|
|
|
|
(defun easy-mmode-set-keymap-parents (m parents)
|
|
|
|
|
(set-keymap-parent
|
|
|
|
|
m
|
|
|
|
|
(cond
|
|
|
|
|
((not (consp parents)) parents)
|
|
|
|
|
((not (cdr parents)) (car parents))
|
|
|
|
|
(t (let ((m (copy-keymap (pop parents))))
|
|
|
|
|
(easy-mmode-set-keymap-parents m parents)
|
|
|
|
|
m))))))
|
|
|
|
|
|
2000-09-29 03:27:28 +00:00
|
|
|
|
;;;###autoload
|
2000-03-10 01:17:04 +00:00
|
|
|
|
(defun easy-mmode-define-keymap (bs &optional name m args)
|
|
|
|
|
"Return a keymap built from bindings BS.
|
|
|
|
|
BS must be a list of (KEY . BINDING) where
|
2000-06-02 23:07:08 +00:00
|
|
|
|
KEY and BINDINGS are suitable for `define-key'.
|
|
|
|
|
Optional NAME is passed to `make-sparse-keymap'.
|
|
|
|
|
Optional map M can be used to modify an existing map.
|
2000-11-12 18:09:09 +00:00
|
|
|
|
ARGS is a list of additional keyword arguments."
|
2003-04-18 17:31:05 +00:00
|
|
|
|
(let (inherit dense)
|
2000-03-10 01:17:04 +00:00
|
|
|
|
(while args
|
|
|
|
|
(let ((key (pop args))
|
|
|
|
|
(val (pop args)))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
(case key
|
2000-11-12 18:09:09 +00:00
|
|
|
|
(:name (setq name val))
|
2000-06-04 23:40:58 +00:00
|
|
|
|
(:dense (setq dense val))
|
|
|
|
|
(:inherit (setq inherit val))
|
|
|
|
|
(:group)
|
2000-03-10 01:17:04 +00:00
|
|
|
|
(t (message "Unknown argument %s in defmap" key)))))
|
|
|
|
|
(unless (keymapp m)
|
|
|
|
|
(setq bs (append m bs))
|
|
|
|
|
(setq m (if dense (make-keymap name) (make-sparse-keymap name))))
|
|
|
|
|
(dolist (b bs)
|
|
|
|
|
(let ((keys (car b))
|
|
|
|
|
(binding (cdr b)))
|
|
|
|
|
(dolist (key (if (consp keys) keys (list keys)))
|
|
|
|
|
(cond
|
|
|
|
|
((symbolp key)
|
|
|
|
|
(substitute-key-definition key binding m global-map))
|
|
|
|
|
((null binding)
|
|
|
|
|
(unless (keymapp (lookup-key m key)) (define-key m key binding)))
|
|
|
|
|
((let ((o (lookup-key m key)))
|
|
|
|
|
(or (null o) (numberp o) (eq o 'undefined)))
|
|
|
|
|
(define-key m key binding))))))
|
|
|
|
|
(cond
|
|
|
|
|
((keymapp inherit) (set-keymap-parent m inherit))
|
|
|
|
|
((consp inherit) (easy-mmode-set-keymap-parents m inherit)))
|
|
|
|
|
m))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro easy-mmode-defmap (m bs doc &rest args)
|
2000-09-29 03:27:28 +00:00
|
|
|
|
`(defconst ,m
|
|
|
|
|
(easy-mmode-define-keymap ,bs nil (if (boundp ',m) ,m) ,(cons 'list args))
|
|
|
|
|
,doc))
|
2000-03-10 01:17:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; easy-mmode-defsyntax
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(defun easy-mmode-define-syntax (css args)
|
2000-10-15 05:25:57 +00:00
|
|
|
|
(let ((st (make-syntax-table (plist-get args :copy)))
|
|
|
|
|
(parent (plist-get args :inherit)))
|
2000-03-10 01:17:04 +00:00
|
|
|
|
(dolist (cs css)
|
|
|
|
|
(let ((char (car cs))
|
|
|
|
|
(syntax (cdr cs)))
|
|
|
|
|
(if (sequencep char)
|
2000-03-11 03:37:37 +00:00
|
|
|
|
(mapcar (lambda (c) (modify-syntax-entry c syntax st)) char)
|
2000-03-10 01:17:04 +00:00
|
|
|
|
(modify-syntax-entry char syntax st))))
|
2000-10-15 05:25:57 +00:00
|
|
|
|
(if parent (set-char-table-parent
|
|
|
|
|
st (if (symbolp parent) (symbol-value parent) parent)))
|
2000-03-10 01:17:04 +00:00
|
|
|
|
st))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro easy-mmode-defsyntax (st css doc &rest args)
|
2000-10-15 05:25:57 +00:00
|
|
|
|
"Define variable ST as a syntax-table.
|
2001-04-19 22:45:04 +00:00
|
|
|
|
CSS contains a list of syntax specifications of the form (CHAR . SYNTAX)."
|
2000-03-11 03:37:37 +00:00
|
|
|
|
`(progn
|
|
|
|
|
(autoload 'easy-mmode-define-syntax "easy-mmode")
|
2001-04-19 22:45:04 +00:00
|
|
|
|
(defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) ,doc)))
|
2000-03-10 01:17:04 +00:00
|
|
|
|
|
|
|
|
|
|
2000-03-21 15:35:06 +00:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; easy-mmode-define-navigation
|
|
|
|
|
;;;
|
|
|
|
|
|
2003-11-14 16:18:01 +00:00
|
|
|
|
(defmacro easy-mmode-define-navigation (base re &optional name endfun narrowfun)
|
2000-03-21 15:35:06 +00:00
|
|
|
|
"Define BASE-next and BASE-prev to navigate in the buffer.
|
|
|
|
|
RE determines the places the commands should move point to.
|
2000-11-09 23:51:59 +00:00
|
|
|
|
NAME should describe the entities matched by RE. It is used to build
|
2000-03-21 15:35:06 +00:00
|
|
|
|
the docstrings of the two functions.
|
|
|
|
|
BASE-next also tries to make sure that the whole entry is visible by
|
|
|
|
|
searching for its end (by calling ENDFUN if provided or by looking for
|
|
|
|
|
the next entry) and recentering if necessary.
|
2003-11-14 16:18:01 +00:00
|
|
|
|
ENDFUN should return the end position (with or without moving point).
|
|
|
|
|
NARROWFUN non-nil means to check for narrowing before moving, and if
|
|
|
|
|
found, do widen first and then call NARROWFUN with no args after moving."
|
2000-03-21 15:35:06 +00:00
|
|
|
|
(let* ((base-name (symbol-name base))
|
|
|
|
|
(prev-sym (intern (concat base-name "-prev")))
|
2003-11-14 16:18:01 +00:00
|
|
|
|
(next-sym (intern (concat base-name "-next")))
|
2004-01-27 22:54:45 +00:00
|
|
|
|
(check-narrow-maybe
|
|
|
|
|
(when narrowfun
|
|
|
|
|
'(setq was-narrowed
|
|
|
|
|
(prog1 (or (< (- (point-max) (point-min)) (buffer-size)))
|
|
|
|
|
(widen)))))
|
2003-11-14 16:18:01 +00:00
|
|
|
|
(re-narrow-maybe (when narrowfun
|
2004-01-27 22:54:45 +00:00
|
|
|
|
`(when was-narrowed (,narrowfun)))))
|
2003-06-22 16:55:47 +00:00
|
|
|
|
(unless name (setq name base-name))
|
2000-03-21 15:35:06 +00:00
|
|
|
|
`(progn
|
2000-06-04 20:59:47 +00:00
|
|
|
|
(add-to-list 'debug-ignored-errors
|
|
|
|
|
,(concat "^No \\(previous\\|next\\) " (regexp-quote name)))
|
2000-03-21 15:35:06 +00:00
|
|
|
|
(defun ,next-sym (&optional count)
|
2000-03-21 16:53:06 +00:00
|
|
|
|
,(format "Go to the next COUNT'th %s." name)
|
2000-03-21 15:35:06 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(unless count (setq count 1))
|
|
|
|
|
(if (< count 0) (,prev-sym (- count))
|
2003-10-20 19:07:02 +00:00
|
|
|
|
(if (looking-at ,re) (setq count (1+ count)))
|
2004-01-27 22:54:45 +00:00
|
|
|
|
(let (was-narrowed)
|
2003-11-14 16:18:01 +00:00
|
|
|
|
,check-narrow-maybe
|
|
|
|
|
(if (not (re-search-forward ,re nil t count))
|
|
|
|
|
(if (looking-at ,re)
|
|
|
|
|
(goto-char (or ,(if endfun `(,endfun)) (point-max)))
|
|
|
|
|
(error "No next %s" ,name))
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(when (and (eq (current-buffer) (window-buffer (selected-window)))
|
|
|
|
|
(interactive-p))
|
|
|
|
|
(let ((endpt (or (save-excursion
|
|
|
|
|
,(if endfun `(,endfun)
|
|
|
|
|
`(re-search-forward ,re nil t 2)))
|
|
|
|
|
(point-max))))
|
|
|
|
|
(unless (pos-visible-in-window-p endpt nil t)
|
|
|
|
|
(recenter '(0))))))
|
|
|
|
|
,re-narrow-maybe)))
|
2005-12-04 02:34:33 +00:00
|
|
|
|
(put ',next-sym 'definition-name ',base)
|
2000-03-21 15:35:06 +00:00
|
|
|
|
(defun ,prev-sym (&optional count)
|
|
|
|
|
,(format "Go to the previous COUNT'th %s" (or name base-name))
|
|
|
|
|
(interactive)
|
|
|
|
|
(unless count (setq count 1))
|
|
|
|
|
(if (< count 0) (,next-sym (- count))
|
2004-01-27 22:54:45 +00:00
|
|
|
|
(let (was-narrowed)
|
2003-11-14 16:18:01 +00:00
|
|
|
|
,check-narrow-maybe
|
|
|
|
|
(unless (re-search-backward ,re nil t count)
|
|
|
|
|
(error "No previous %s" ,name))
|
2005-12-04 02:34:33 +00:00
|
|
|
|
,re-narrow-maybe)))
|
|
|
|
|
(put ',prev-sym 'definition-name ',base))))
|
2003-11-14 16:18:01 +00:00
|
|
|
|
|
2000-03-10 01:17:04 +00:00
|
|
|
|
|
1997-06-22 20:08:32 +00:00
|
|
|
|
(provide 'easy-mmode)
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: d48a5250-6961-4528-9cb0-3c9ea042a66a
|
1997-06-22 20:08:32 +00:00
|
|
|
|
;;; easy-mmode.el ends here
|