]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/easy-mmode.el
(ewoc--dll-create, ewoc--node-delete)
[gnu-emacs] / lisp / emacs-lisp / easy-mmode.el
1 ;;; easy-mmode.el --- easy definition for major and minor modes
2
3 ;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006 Free Software Foundation, Inc.
5
6 ;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr>
7 ;; Maintainer: Stefan Monnier <monnier@gnu.org>
8
9 ;; Keywords: extensions lisp
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;; Minor modes are useful and common. This package makes defining a
31 ;; minor mode easy, by focusing on the writing of the minor mode
32 ;; functionalities themselves. Moreover, this package enforces a
33 ;; conventional naming of user interface primitives, making things
34 ;; natural for the minor-mode end-users.
35
36 ;; For each mode, easy-mmode defines the following:
37 ;; <mode> : The minor mode predicate. A buffer-local variable.
38 ;; <mode>-map : The keymap possibly associated to <mode>.
39 ;; see `define-minor-mode' documentation
40 ;;
41 ;; eval
42 ;; (pp (macroexpand '(define-minor-mode <your-mode> <doc>)))
43 ;; to check the result before using it.
44
45 ;; The order in which minor modes are installed is important. Keymap
46 ;; lookup proceeds down minor-mode-map-alist, and the order there
47 ;; tends to be the reverse of the order in which the modes were
48 ;; installed. Perhaps there should be a feature to let you specify
49 ;; orderings.
50
51 ;; Additionally to `define-minor-mode', the package provides convenient
52 ;; ways to define keymaps, and other helper functions for major and minor modes.
53
54 ;;; Code:
55
56 (eval-when-compile (require 'cl))
57
58 (defun easy-mmode-pretty-mode-name (mode &optional lighter)
59 "Turn the symbol MODE into a string intended for the user.
60 If provided, LIGHTER will be used to help choose capitalization by,
61 replacing its case-insensitive matches with the literal string in LIGHTER."
62 (let* ((case-fold-search t)
63 ;; Produce "Foo-Bar minor mode" from foo-bar-minor-mode.
64 (name (concat (replace-regexp-in-string
65 ;; If the original mode name included "-minor" (some
66 ;; of them don't, e.g. auto-revert-mode), then
67 ;; replace it with " minor".
68 "-Minor" " minor"
69 ;; "foo-bar-minor" -> "Foo-Bar-Minor"
70 (capitalize (replace-regexp-in-string
71 ;; "foo-bar-minor-mode" -> "foo-bar-minor"
72 "-mode\\'" "" (symbol-name mode))))
73 " mode")))
74 (if (not (stringp lighter)) name
75 ;; Strip leading and trailing whitespace from LIGHTER.
76 (setq lighter (replace-regexp-in-string "\\`\\s-+\\|\\s-+\\'" ""
77 lighter))
78 ;; Replace any (case-insensitive) matches for LIGHTER in NAME
79 ;; with a literal LIGHTER. E.g., if NAME is "Iimage mode" and
80 ;; LIGHTER is " iImag", then this will produce "iImage mode".
81 ;; (LIGHTER normally comes from the mode-line string passed to
82 ;; define-minor-mode, and normally includes at least one leading
83 ;; space.)
84 (replace-regexp-in-string (regexp-quote lighter) lighter name t t))))
85
86 ;;;###autoload
87 (defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
88 ;;;###autoload
89 (defmacro define-minor-mode (mode doc &optional init-value lighter keymap &rest body)
90 "Define a new minor mode MODE.
91 This function defines the associated control variable MODE, keymap MODE-map,
92 and toggle command MODE.
93
94 DOC is the documentation for the mode toggle command.
95 Optional INIT-VALUE is the initial value of the mode's variable.
96 Optional LIGHTER is displayed in the modeline when the mode is on.
97 Optional KEYMAP is the default (defvar) keymap bound to the mode keymap.
98 If it is a list, it is passed to `easy-mmode-define-keymap'
99 in order to build a valid keymap. It's generally better to use
100 a separate MODE-map variable than to use this argument.
101 The above three arguments can be skipped if keyword arguments are
102 used (see below).
103
104 BODY contains code that will be executed each time the mode is (dis)activated.
105 It will be executed after any toggling but before running the hook variable
106 `mode-HOOK'.
107 Before the actual body code, you can write keyword arguments (alternating
108 keywords and values). These following keyword arguments are supported (other
109 keywords will be passed to `defcustom' if the minor mode is global):
110 :group GROUP Custom group name to use in all generated `defcustom' forms.
111 Defaults to MODE without the possible trailing \"-mode\".
112 Don't use this default group name unless you have written a
113 `defgroup' to define that group properly.
114 :global GLOBAL If non-nil specifies that the minor mode is not meant to be
115 buffer-local, so don't make the variable MODE buffer-local.
116 By default, the mode is buffer-local.
117 :init-value VAL Same as the INIT-VALUE argument.
118 :lighter SPEC Same as the LIGHTER argument.
119 :keymap MAP Same as the KEYMAP argument.
120 :require SYM Same as in `defcustom'.
121
122 For example, you could write
123 (define-minor-mode foo-mode \"If enabled, foo on you!\"
124 :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
125 ...BODY CODE...)"
126 (declare (debug (&define name stringp
127 [&optional [&not keywordp] sexp
128 &optional [&not keywordp] sexp
129 &optional [&not keywordp] sexp]
130 [&rest [keywordp sexp]]
131 def-body)))
132
133 ;; Allow skipping the first three args.
134 (cond
135 ((keywordp init-value)
136 (setq body (list* init-value lighter keymap body)
137 init-value nil lighter nil keymap nil))
138 ((keywordp lighter)
139 (setq body (list* lighter keymap body) lighter nil keymap nil))
140 ((keywordp keymap) (push keymap body) (setq keymap nil)))
141
142 (let* ((last-message (current-message))
143 (mode-name (symbol-name mode))
144 (pretty-name (easy-mmode-pretty-mode-name mode lighter))
145 (globalp nil)
146 (set nil)
147 (initialize nil)
148 (group nil)
149 (type nil)
150 (extra-args nil)
151 (extra-keywords nil)
152 (require t)
153 (hook (intern (concat mode-name "-hook")))
154 (hook-on (intern (concat mode-name "-on-hook")))
155 (hook-off (intern (concat mode-name "-off-hook")))
156 keyw keymap-sym)
157
158 ;; Check keys.
159 (while (keywordp (setq keyw (car body)))
160 (setq body (cdr body))
161 (case keyw
162 (:init-value (setq init-value (pop body)))
163 (:lighter (setq lighter (pop body)))
164 (:global (setq globalp (pop body)))
165 (:extra-args (setq extra-args (pop body)))
166 (:set (setq set (list :set (pop body))))
167 (:initialize (setq initialize (list :initialize (pop body))))
168 (:group (setq group (nconc group (list :group (pop body)))))
169 (:type (setq type (list :type (pop body))))
170 (:require (setq require (pop body)))
171 (:keymap (setq keymap (pop body)))
172 (t (push keyw extra-keywords) (push (pop body) extra-keywords))))
173
174 (setq keymap-sym (if (and keymap (symbolp keymap)) keymap
175 (intern (concat mode-name "-map"))))
176
177 (unless set (setq set '(:set 'custom-set-minor-mode)))
178
179 (unless initialize
180 (setq initialize '(:initialize 'custom-initialize-default)))
181
182 (unless group
183 ;; We might as well provide a best-guess default group.
184 (setq group
185 `(:group ',(intern (replace-regexp-in-string
186 "-mode\\'" "" mode-name)))))
187
188 (unless type (setq type '(:type 'boolean)))
189
190 `(progn
191 ;; Define the variable to enable or disable the mode.
192 ,(if (not globalp)
193 `(progn
194 (defvar ,mode ,init-value ,(format "Non-nil if %s is enabled.
195 Use the command `%s' to change this variable." pretty-name mode))
196 (make-variable-buffer-local ',mode))
197
198 (let ((base-doc-string
199 (concat "Non-nil if %s is enabled.
200 See the command `%s' for a description of this minor-mode."
201 (if body "
202 Setting this variable directly does not take effect;
203 use either \\[customize] or the function `%s'."))))
204 `(defcustom ,mode ,init-value
205 ,(format base-doc-string pretty-name mode mode)
206 ,@set
207 ,@initialize
208 ,@group
209 ,@type
210 ,@(unless (eq require t) `(:require ,require))
211 ,@(nreverse extra-keywords))))
212
213 ;; The actual function.
214 (defun ,mode (&optional arg ,@extra-args)
215 ,(or doc
216 (format (concat "Toggle %s on or off.
217 Interactively, with no prefix argument, toggle the mode.
218 With universal prefix ARG turn mode on.
219 With zero or negative ARG turn mode off.
220 \\{%s}") pretty-name keymap-sym))
221 ;; Use `toggle' rather than (if ,mode 0 1) so that using
222 ;; repeat-command still does the toggling correctly.
223 (interactive (list (or current-prefix-arg 'toggle)))
224 (setq ,mode
225 (cond
226 ((eq arg 'toggle) (not ,mode))
227 (arg (> (prefix-numeric-value arg) 0))
228 (t
229 (if (null ,mode) t
230 (message
231 "Toggling %s off; better pass an explicit argument."
232 ',mode)
233 nil))))
234 ,@body
235 ;; The on/off hooks are here for backward compatibility only.
236 (run-hooks ',hook (if ,mode ',hook-on ',hook-off))
237 (if (called-interactively-p)
238 (progn
239 ,(if globalp `(customize-mark-as-set ',mode))
240 ;; Avoid overwriting a message shown by the body,
241 ;; but do overwrite previous messages.
242 (unless ,(and (current-message)
243 (not (equal last-message (current-message))))
244 (message ,(format "%s %%sabled" pretty-name)
245 (if ,mode "en" "dis")))))
246 (force-mode-line-update)
247 ;; Return the new setting.
248 ,mode)
249
250 ;; Autoloading a define-minor-mode autoloads everything
251 ;; up-to-here.
252 :autoload-end
253
254 ;; Define the minor-mode keymap.
255 ,(unless (symbolp keymap) ;nil is also a symbol.
256 `(defvar ,keymap-sym
257 (let ((m ,keymap))
258 (cond ((keymapp m) m)
259 ((listp m) (easy-mmode-define-keymap m))
260 (t (error "Invalid keymap %S" ,keymap))))
261 ,(format "Keymap for `%s'." mode-name)))
262
263 (add-minor-mode ',mode ',lighter
264 ,(if keymap keymap-sym
265 `(if (boundp ',keymap-sym)
266 (symbol-value ',keymap-sym)))))))
267 \f
268 ;;;
269 ;;; make global minor mode
270 ;;;
271
272 ;;;###autoload
273 (defalias 'easy-mmode-define-global-mode 'define-global-minor-mode)
274 ;;;###autoload
275 (defmacro define-global-minor-mode (global-mode mode turn-on &rest keys)
276 "Make GLOBAL-MODE out of the buffer-local minor MODE.
277 TURN-ON is a function that will be called with no args in every buffer
278 and that should try to turn MODE on if applicable for that buffer.
279 KEYS is a list of CL-style keyword arguments. As the minor mode
280 defined by this function is always global, any :global keyword is
281 ignored. Other keywords have the same meaning as in `define-minor-mode',
282 which see. In particular, :group specifies the custom group.
283 The most useful keywords are those that are passed on to the
284 `defcustom'. It normally makes no sense to pass the :lighter
285 or :keymap keywords to `define-global-minor-mode', since these
286 are usually passed to the buffer-local version of the minor mode.
287
288 If MODE's set-up depends on the major mode in effect when it was
289 enabled, then disabling and reenabling MODE should make MODE work
290 correctly with the current major mode. This is important to
291 prevent problems with derived modes, that is, major modes that
292 call another major mode in their body."
293
294 (let* ((global-mode-name (symbol-name global-mode))
295 (pretty-name (easy-mmode-pretty-mode-name mode))
296 (pretty-global-name (easy-mmode-pretty-mode-name global-mode))
297 (group nil)
298 (extra-keywords nil)
299 (MODE-buffers (intern (concat global-mode-name "-buffers")))
300 (MODE-enable-in-buffers
301 (intern (concat global-mode-name "-enable-in-buffers")))
302 (MODE-check-buffers
303 (intern (concat global-mode-name "-check-buffers")))
304 (MODE-cmhh (intern (concat global-mode-name "-cmhh")))
305 (MODE-major-mode (intern (concat (symbol-name mode) "-major-mode")))
306 keyw)
307
308 ;; Check keys.
309 (while (keywordp (setq keyw (car keys)))
310 (setq keys (cdr keys))
311 (case keyw
312 (:group (setq group (nconc group (list :group (pop keys)))))
313 (:global (setq keys (cdr keys)))
314 (t (push keyw extra-keywords) (push (pop keys) extra-keywords))))
315
316 (unless group
317 ;; We might as well provide a best-guess default group.
318 (setq group
319 `(:group ',(intern (replace-regexp-in-string
320 "-mode\\'" "" (symbol-name mode))))))
321
322 `(progn
323 (defvar ,MODE-major-mode nil)
324 (make-variable-buffer-local ',MODE-major-mode)
325 ;; The actual global minor-mode
326 (define-minor-mode ,global-mode
327 ,(format "Toggle %s in every buffer.
328 With prefix ARG, turn %s on if and only if ARG is positive.
329 %s is actually not turned on in every buffer but only in those
330 in which `%s' turns it on."
331 pretty-name pretty-global-name pretty-name turn-on)
332 :global t ,@group ,@(nreverse extra-keywords)
333
334 ;; Setup hook to handle future mode changes and new buffers.
335 (if ,global-mode
336 (progn
337 (add-hook 'after-change-major-mode-hook
338 ',MODE-enable-in-buffers)
339 (add-hook 'find-file-hook ',MODE-check-buffers)
340 (add-hook 'change-major-mode-hook ',MODE-cmhh))
341 (remove-hook 'after-change-major-mode-hook ',MODE-enable-in-buffers)
342 (remove-hook 'find-file-hook ',MODE-check-buffers)
343 (remove-hook 'change-major-mode-hook ',MODE-cmhh))
344
345 ;; Go through existing buffers.
346 (dolist (buf (buffer-list))
347 (with-current-buffer buf
348 (if ,global-mode (,turn-on) (when ,mode (,mode -1))))))
349
350 ;; Autoloading define-global-minor-mode autoloads everything
351 ;; up-to-here.
352 :autoload-end
353
354 ;; List of buffers left to process.
355 (defvar ,MODE-buffers nil)
356
357 ;; The function that calls TURN-ON in each buffer.
358 (defun ,MODE-enable-in-buffers ()
359 (dolist (buf ,MODE-buffers)
360 (when (buffer-live-p buf)
361 (with-current-buffer buf
362 (if ,mode
363 (unless (eq ,MODE-major-mode major-mode)
364 (,mode -1)
365 (,turn-on)
366 (setq ,MODE-major-mode major-mode))
367 (,turn-on)
368 (setq ,MODE-major-mode major-mode))))))
369 (put ',MODE-enable-in-buffers 'definition-name ',global-mode)
370
371 (defun ,MODE-check-buffers ()
372 (,MODE-enable-in-buffers)
373 (setq ,MODE-buffers nil)
374 (remove-hook 'post-command-hook ',MODE-check-buffers))
375 (put ',MODE-check-buffers 'definition-name ',global-mode)
376
377 ;; The function that catches kill-all-local-variables.
378 (defun ,MODE-cmhh ()
379 (add-to-list ',MODE-buffers (current-buffer))
380 (add-hook 'post-command-hook ',MODE-check-buffers))
381 (put ',MODE-cmhh 'definition-name ',global-mode))))
382
383 ;;;
384 ;;; easy-mmode-defmap
385 ;;;
386
387 (if (fboundp 'set-keymap-parents)
388 (defalias 'easy-mmode-set-keymap-parents 'set-keymap-parents)
389 (defun easy-mmode-set-keymap-parents (m parents)
390 (set-keymap-parent
391 m
392 (cond
393 ((not (consp parents)) parents)
394 ((not (cdr parents)) (car parents))
395 (t (let ((m (copy-keymap (pop parents))))
396 (easy-mmode-set-keymap-parents m parents)
397 m))))))
398
399 ;;;###autoload
400 (defun easy-mmode-define-keymap (bs &optional name m args)
401 "Return a keymap built from bindings BS.
402 BS must be a list of (KEY . BINDING) where
403 KEY and BINDINGS are suitable for `define-key'.
404 Optional NAME is passed to `make-sparse-keymap'.
405 Optional map M can be used to modify an existing map.
406 ARGS is a list of additional keyword arguments."
407 (let (inherit dense)
408 (while args
409 (let ((key (pop args))
410 (val (pop args)))
411 (case key
412 (:name (setq name val))
413 (:dense (setq dense val))
414 (:inherit (setq inherit val))
415 (:group)
416 (t (message "Unknown argument %s in defmap" key)))))
417 (unless (keymapp m)
418 (setq bs (append m bs))
419 (setq m (if dense (make-keymap name) (make-sparse-keymap name))))
420 (dolist (b bs)
421 (let ((keys (car b))
422 (binding (cdr b)))
423 (dolist (key (if (consp keys) keys (list keys)))
424 (cond
425 ((symbolp key)
426 (substitute-key-definition key binding m global-map))
427 ((null binding)
428 (unless (keymapp (lookup-key m key)) (define-key m key binding)))
429 ((let ((o (lookup-key m key)))
430 (or (null o) (numberp o) (eq o 'undefined)))
431 (define-key m key binding))))))
432 (cond
433 ((keymapp inherit) (set-keymap-parent m inherit))
434 ((consp inherit) (easy-mmode-set-keymap-parents m inherit)))
435 m))
436
437 ;;;###autoload
438 (defmacro easy-mmode-defmap (m bs doc &rest args)
439 `(defconst ,m
440 (easy-mmode-define-keymap ,bs nil (if (boundp ',m) ,m) ,(cons 'list args))
441 ,doc))
442
443 \f
444 ;;;
445 ;;; easy-mmode-defsyntax
446 ;;;
447
448 (defun easy-mmode-define-syntax (css args)
449 (let ((st (make-syntax-table (plist-get args :copy)))
450 (parent (plist-get args :inherit)))
451 (dolist (cs css)
452 (let ((char (car cs))
453 (syntax (cdr cs)))
454 (if (sequencep char)
455 (mapcar (lambda (c) (modify-syntax-entry c syntax st)) char)
456 (modify-syntax-entry char syntax st))))
457 (if parent (set-char-table-parent
458 st (if (symbolp parent) (symbol-value parent) parent)))
459 st))
460
461 ;;;###autoload
462 (defmacro easy-mmode-defsyntax (st css doc &rest args)
463 "Define variable ST as a syntax-table.
464 CSS contains a list of syntax specifications of the form (CHAR . SYNTAX)."
465 `(progn
466 (autoload 'easy-mmode-define-syntax "easy-mmode")
467 (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) ,doc)))
468
469
470 \f
471 ;;;
472 ;;; easy-mmode-define-navigation
473 ;;;
474
475 (defmacro easy-mmode-define-navigation (base re &optional name endfun narrowfun)
476 "Define BASE-next and BASE-prev to navigate in the buffer.
477 RE determines the places the commands should move point to.
478 NAME should describe the entities matched by RE. It is used to build
479 the docstrings of the two functions.
480 BASE-next also tries to make sure that the whole entry is visible by
481 searching for its end (by calling ENDFUN if provided or by looking for
482 the next entry) and recentering if necessary.
483 ENDFUN should return the end position (with or without moving point).
484 NARROWFUN non-nil means to check for narrowing before moving, and if
485 found, do widen first and then call NARROWFUN with no args after moving."
486 (let* ((base-name (symbol-name base))
487 (prev-sym (intern (concat base-name "-prev")))
488 (next-sym (intern (concat base-name "-next")))
489 (check-narrow-maybe
490 (when narrowfun
491 '(setq was-narrowed
492 (prog1 (or (< (- (point-max) (point-min)) (buffer-size)))
493 (widen)))))
494 (re-narrow-maybe (when narrowfun
495 `(when was-narrowed (,narrowfun)))))
496 (unless name (setq name base-name))
497 `(progn
498 (add-to-list 'debug-ignored-errors
499 ,(concat "^No \\(previous\\|next\\) " (regexp-quote name)))
500 (defun ,next-sym (&optional count)
501 ,(format "Go to the next COUNT'th %s." name)
502 (interactive)
503 (unless count (setq count 1))
504 (if (< count 0) (,prev-sym (- count))
505 (if (looking-at ,re) (setq count (1+ count)))
506 (let (was-narrowed)
507 ,check-narrow-maybe
508 (if (not (re-search-forward ,re nil t count))
509 (if (looking-at ,re)
510 (goto-char (or ,(if endfun `(,endfun)) (point-max)))
511 (error "No next %s" ,name))
512 (goto-char (match-beginning 0))
513 (when (and (eq (current-buffer) (window-buffer (selected-window)))
514 (interactive-p))
515 (let ((endpt (or (save-excursion
516 ,(if endfun `(,endfun)
517 `(re-search-forward ,re nil t 2)))
518 (point-max))))
519 (unless (pos-visible-in-window-p endpt nil t)
520 (recenter '(0))))))
521 ,re-narrow-maybe)))
522 (put ',next-sym 'definition-name ',base)
523 (defun ,prev-sym (&optional count)
524 ,(format "Go to the previous COUNT'th %s" (or name base-name))
525 (interactive)
526 (unless count (setq count 1))
527 (if (< count 0) (,next-sym (- count))
528 (let (was-narrowed)
529 ,check-narrow-maybe
530 (unless (re-search-backward ,re nil t count)
531 (error "No previous %s" ,name))
532 ,re-narrow-maybe)))
533 (put ',prev-sym 'definition-name ',base))))
534
535
536 (provide 'easy-mmode)
537
538 ;;; arch-tag: d48a5250-6961-4528-9cb0-3c9ea042a66a
539 ;;; easy-mmode.el ends here