In strings, prefer plain ` and ' to \` and \'
[emacs.git] / lisp / emacs-lisp / easy-mmode.el
blobeab22b67cd70c7ac5b18f18a1492ca11bcfb350b
1 ;;; easy-mmode.el --- easy definition for major and minor modes
3 ;; Copyright (C) 1997, 2000-2015 Free Software Foundation, Inc.
5 ;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr>
6 ;; Maintainer: Stefan Monnier <monnier@gnu.org>
7 ;; Package: emacs
9 ;; Keywords: extensions lisp
11 ;; This file is part of GNU Emacs.
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 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Minor modes are useful and common. This package makes defining a
29 ;; minor mode easy, by focusing on the writing of the minor mode
30 ;; functionalities themselves. Moreover, this package enforces a
31 ;; conventional naming of user interface primitives, making things
32 ;; natural for the minor-mode end-users.
34 ;; For each mode, easy-mmode defines the following:
35 ;; <mode> : The minor mode predicate. A buffer-local variable.
36 ;; <mode>-map : The keymap possibly associated to <mode>.
37 ;; see `define-minor-mode' documentation
39 ;; eval
40 ;; (pp (macroexpand '(define-minor-mode <your-mode> <doc>)))
41 ;; to check the result before using it.
43 ;; The order in which minor modes are installed is important. Keymap
44 ;; lookup proceeds down minor-mode-map-alist, and the order there
45 ;; tends to be the reverse of the order in which the modes were
46 ;; installed. Perhaps there should be a feature to let you specify
47 ;; orderings.
49 ;; Additionally to `define-minor-mode', the package provides convenient
50 ;; ways to define keymaps, and other helper functions for major and minor modes.
52 ;;; Code:
54 (defun easy-mmode-pretty-mode-name (mode &optional lighter)
55 "Turn the symbol MODE into a string intended for the user.
56 If provided, LIGHTER will be used to help choose capitalization by,
57 replacing its case-insensitive matches with the literal string in LIGHTER."
58 (let* ((case-fold-search t)
59 ;; Produce "Foo-Bar minor mode" from foo-bar-minor-mode.
60 (name (concat (replace-regexp-in-string
61 ;; If the original mode name included "-minor" (some
62 ;; of them don't, e.g. auto-revert-mode), then
63 ;; replace it with " minor".
64 "-Minor" " minor"
65 ;; "foo-bar-minor" -> "Foo-Bar-Minor"
66 (capitalize (replace-regexp-in-string
67 ;; "foo-bar-minor-mode" -> "foo-bar-minor"
68 "toggle-\\|-mode\\'" ""
69 (symbol-name mode))))
70 " mode")))
71 (if (not (stringp lighter)) name
72 ;; Strip leading and trailing whitespace from LIGHTER.
73 (setq lighter (replace-regexp-in-string "\\`\\s-+\\|\\s-+\\'" ""
74 lighter))
75 ;; Replace any (case-insensitive) matches for LIGHTER in NAME
76 ;; with a literal LIGHTER. E.g., if NAME is "Iimage mode" and
77 ;; LIGHTER is " iImag", then this will produce "iImage mode".
78 ;; (LIGHTER normally comes from the mode-line string passed to
79 ;; define-minor-mode, and normally includes at least one leading
80 ;; space.)
81 (replace-regexp-in-string (regexp-quote lighter) lighter name t t))))
83 ;;;###autoload
84 (defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
85 ;;;###autoload
86 (defmacro define-minor-mode (mode doc &optional init-value lighter keymap &rest body)
87 "Define a new minor mode MODE.
88 This defines the toggle command MODE and (by default) a control variable
89 MODE (you can override this with the :variable keyword, see below).
90 DOC is the documentation for the mode toggle command.
92 The defined mode command takes one optional (prefix) argument.
93 Interactively with no prefix argument, it toggles the mode.
94 A prefix argument enables the mode if the argument is positive,
95 and disables it otherwise.
97 When called from Lisp, the mode command toggles the mode if the
98 argument is `toggle', disables the mode if the argument is a
99 non-positive integer, and enables the mode otherwise (including
100 if the argument is omitted or nil or a positive integer).
102 If DOC is nil, give the mode command a basic doc-string
103 documenting what its argument does.
105 Optional INIT-VALUE is the initial value of the mode's variable.
106 Optional LIGHTER is displayed in the mode line when the mode is on.
107 Optional KEYMAP is the default keymap bound to the mode keymap.
108 If non-nil, it should be a variable name (whose value is a keymap),
109 or an expression that returns either a keymap or a list of
110 arguments for `easy-mmode-define-keymap'. If you supply a KEYMAP
111 argument that is not a symbol, this macro defines the variable
112 MODE-map and gives it the value that KEYMAP specifies.
114 BODY contains code to execute each time the mode is enabled or disabled.
115 It is executed after toggling the mode, and before running MODE-hook.
116 Before the actual body code, you can write keyword arguments, i.e.
117 alternating keywords and values. If you provide BODY, then you must
118 provide (even if just nil) INIT-VALUE, LIGHTER, and KEYMAP, or provide
119 at least one keyword argument, or both; otherwise, BODY would be
120 misinterpreted as the first omitted argument. The following special
121 keywords are supported (other keywords are passed to `defcustom' if
122 the minor mode is global):
124 :group GROUP Custom group name to use in all generated `defcustom' forms.
125 Defaults to MODE without the possible trailing \"-mode\".
126 Don't use this default group name unless you have written a
127 `defgroup' to define that group properly.
128 :global GLOBAL If non-nil specifies that the minor mode is not meant to be
129 buffer-local, so don't make the variable MODE buffer-local.
130 By default, the mode is buffer-local.
131 :init-value VAL Same as the INIT-VALUE argument.
132 Not used if you also specify :variable.
133 :lighter SPEC Same as the LIGHTER argument.
134 :keymap MAP Same as the KEYMAP argument.
135 :require SYM Same as in `defcustom'.
136 :variable PLACE The location to use instead of the variable MODE to store
137 the state of the mode. This can be simply a different
138 named variable, or a generalized variable.
139 PLACE can also be of the form \(GET . SET), where GET is
140 an expression that returns the current state, and SET is
141 a function that takes one argument, the new state, and
142 sets it. If you specify a :variable, this function does
143 not define a MODE variable (nor any of the terms used
144 in :variable).
146 :after-hook A single lisp form which is evaluated after the mode hooks
147 have been run. It should not be quoted.
149 For example, you could write
150 (define-minor-mode foo-mode \"If enabled, foo on you!\"
151 :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
152 ...BODY CODE...)"
153 (declare (doc-string 2)
154 (debug (&define name string-or-null-p
155 [&optional [&not keywordp] sexp
156 &optional [&not keywordp] sexp
157 &optional [&not keywordp] sexp]
158 [&rest [keywordp sexp]]
159 def-body))
160 (indent 1))
162 ;; Allow skipping the first three args.
163 (cond
164 ((keywordp init-value)
165 (setq body (if keymap `(,init-value ,lighter ,keymap ,@body)
166 `(,init-value ,lighter))
167 init-value nil lighter nil keymap nil))
168 ((keywordp lighter)
169 (setq body `(,lighter ,keymap ,@body) lighter nil keymap nil))
170 ((keywordp keymap) (push keymap body) (setq keymap nil)))
172 (let* ((last-message (make-symbol "last-message"))
173 (mode-name (symbol-name mode))
174 (pretty-name (easy-mmode-pretty-mode-name mode lighter))
175 (globalp nil)
176 (set nil)
177 (initialize nil)
178 (group nil)
179 (type nil)
180 (extra-args nil)
181 (extra-keywords nil)
182 (variable nil) ;The PLACE where the state is stored.
183 (setter `(setq ,mode)) ;The beginning of the exp to set the mode var.
184 (getter mode) ;The exp to get the mode value.
185 (modefun mode) ;The minor mode function name we're defining.
186 (require t)
187 (after-hook nil)
188 (hook (intern (concat mode-name "-hook")))
189 (hook-on (intern (concat mode-name "-on-hook")))
190 (hook-off (intern (concat mode-name "-off-hook")))
191 keyw keymap-sym tmp)
193 ;; Check keys.
194 (while (keywordp (setq keyw (car body)))
195 (setq body (cdr body))
196 (pcase keyw
197 (`:init-value (setq init-value (pop body)))
198 (`:lighter (setq lighter (purecopy (pop body))))
199 (`:global (setq globalp (pop body))
200 (when (and globalp (symbolp mode))
201 (setq setter `(setq-default ,mode))
202 (setq getter `(default-value ',mode))))
203 (`:extra-args (setq extra-args (pop body)))
204 (`:set (setq set (list :set (pop body))))
205 (`:initialize (setq initialize (list :initialize (pop body))))
206 (`:group (setq group (nconc group (list :group (pop body)))))
207 (`:type (setq type (list :type (pop body))))
208 (`:require (setq require (pop body)))
209 (`:keymap (setq keymap (pop body)))
210 (`:variable (setq variable (pop body))
211 (if (not (and (setq tmp (cdr-safe variable))
212 (or (symbolp tmp)
213 (functionp tmp))))
214 ;; PLACE is not of the form (GET . SET).
215 (progn
216 (setq setter `(setf ,variable))
217 (setq getter variable))
218 (setq getter (car variable))
219 (setq setter `(funcall #',(cdr variable)))))
220 (`:after-hook (setq after-hook (pop body)))
221 (_ (push keyw extra-keywords) (push (pop body) extra-keywords))))
223 (setq keymap-sym (if (and keymap (symbolp keymap)) keymap
224 (intern (concat mode-name "-map"))))
226 (unless set (setq set '(:set #'custom-set-minor-mode)))
228 (unless initialize
229 (setq initialize '(:initialize 'custom-initialize-default)))
231 (unless group
232 ;; We might as well provide a best-guess default group.
233 (setq group
234 `(:group ',(intern (replace-regexp-in-string
235 "-mode\\'" "" mode-name)))))
237 ;; TODO? Mark booleans as safe if booleanp? Eg abbrev-mode.
238 (unless type (setq type '(:type 'boolean)))
240 `(progn
241 ;; Define the variable to enable or disable the mode.
242 ,(cond
243 ;; If :variable is specified, then the var will be
244 ;; declared elsewhere.
245 (variable nil)
246 ((not globalp)
247 `(progn
248 :autoload-end
249 (defvar ,mode ,init-value ,(format "Non-nil if %s is enabled.
250 Use the command `%s' to change this variable." pretty-name mode))
251 (make-variable-buffer-local ',mode)))
253 (let ((base-doc-string
254 (concat "Non-nil if %s is enabled.
255 See the command `%s' for a description of this minor mode."
256 (if body "
257 Setting this variable directly does not take effect;
258 either customize it (see the info node `Easy Customization')
259 or call the function `%s'."))))
260 `(defcustom ,mode ,init-value
261 ,(format base-doc-string pretty-name mode mode)
262 ,@set
263 ,@initialize
264 ,@group
265 ,@type
266 ,@(unless (eq require t) `(:require ,require))
267 ,@(nreverse extra-keywords)))))
269 ;; The actual function.
270 (defun ,modefun (&optional arg ,@extra-args)
271 ,(or doc
272 (format (concat "Toggle %s on or off.
273 With a prefix argument ARG, enable %s if ARG is
274 positive, and disable it otherwise. If called from Lisp, enable
275 the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
276 \\{%s}") pretty-name pretty-name keymap-sym))
277 ;; Use `toggle' rather than (if ,mode 0 1) so that using
278 ;; repeat-command still does the toggling correctly.
279 (interactive (list (or current-prefix-arg 'toggle)))
280 (let ((,last-message (current-message)))
281 (,@setter
282 (if (eq arg 'toggle)
283 (not ,getter)
284 ;; A nil argument also means ON now.
285 (> (prefix-numeric-value arg) 0)))
286 ,@body
287 ;; The on/off hooks are here for backward compatibility only.
288 (run-hooks ',hook (if ,getter ',hook-on ',hook-off))
289 (if (called-interactively-p 'any)
290 (progn
291 ,(if (and globalp (not variable))
292 `(customize-mark-as-set ',mode))
293 ;; Avoid overwriting a message shown by the body,
294 ;; but do overwrite previous messages.
295 (unless (and (current-message)
296 (not (equal ,last-message
297 (current-message))))
298 (let ((local ,(if globalp "" " in current buffer")))
299 (message ,(format "%s %%sabled%%s" pretty-name)
300 (if ,getter "en" "dis") local)))))
301 ,@(when after-hook `(,after-hook)))
302 (force-mode-line-update)
303 ;; Return the new setting.
304 ,getter)
306 ;; Autoloading a define-minor-mode autoloads everything
307 ;; up-to-here.
308 :autoload-end
310 (defvar ,hook nil
311 ,(format "Hook run after entering or leaving `%s'.
312 No problems result if this variable is not bound.
313 `add-hook' automatically binds it. (This is true for all hook variables.)"
314 modefun))
316 ;; Define the minor-mode keymap.
317 ,(unless (symbolp keymap) ;nil is also a symbol.
318 `(defvar ,keymap-sym
319 (let ((m ,keymap))
320 (cond ((keymapp m) m)
321 ((listp m) (easy-mmode-define-keymap m))
322 (t (error "Invalid keymap %S" m))))
323 ,(format "Keymap for `%s'." mode-name)))
325 ,(let ((modevar (pcase getter (`(default-value ',v) v) (_ getter))))
326 (if (not (symbolp modevar))
327 (if (or lighter keymap)
328 (error ":lighter and :keymap unsupported with mode expression %S" getter))
329 `(with-no-warnings
330 (add-minor-mode ',modevar ',lighter
331 ,(if keymap keymap-sym
332 `(if (boundp ',keymap-sym) ,keymap-sym))
334 ,(unless (eq mode modefun) `',modefun))))))))
337 ;;; make global minor mode
340 ;;;###autoload
341 (defalias 'easy-mmode-define-global-mode 'define-globalized-minor-mode)
342 ;;;###autoload
343 (defalias 'define-global-minor-mode 'define-globalized-minor-mode)
344 ;;;###autoload
345 (defmacro define-globalized-minor-mode (global-mode mode turn-on &rest keys)
346 "Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE.
347 TURN-ON is a function that will be called with no args in every buffer
348 and that should try to turn MODE on if applicable for that buffer.
349 KEYS is a list of CL-style keyword arguments. As the minor mode
350 defined by this function is always global, any :global keyword is
351 ignored. Other keywords have the same meaning as in `define-minor-mode',
352 which see. In particular, :group specifies the custom group.
353 The most useful keywords are those that are passed on to the
354 `defcustom'. It normally makes no sense to pass the :lighter
355 or :keymap keywords to `define-globalized-minor-mode', since these
356 are usually passed to the buffer-local version of the minor mode.
358 If MODE's set-up depends on the major mode in effect when it was
359 enabled, then disabling and reenabling MODE should make MODE work
360 correctly with the current major mode. This is important to
361 prevent problems with derived modes, that is, major modes that
362 call another major mode in their body.
364 When a major mode is initialized, MODE is actually turned on just
365 after running the major mode's hook. However, MODE is not turned
366 on if the hook has explicitly disabled it."
367 (declare (doc-string 2))
368 (let* ((global-mode-name (symbol-name global-mode))
369 (mode-name (symbol-name mode))
370 (pretty-name (easy-mmode-pretty-mode-name mode))
371 (pretty-global-name (easy-mmode-pretty-mode-name global-mode))
372 (group nil)
373 (extra-keywords nil)
374 (MODE-buffers (intern (concat global-mode-name "-buffers")))
375 (MODE-enable-in-buffers
376 (intern (concat global-mode-name "-enable-in-buffers")))
377 (MODE-check-buffers
378 (intern (concat global-mode-name "-check-buffers")))
379 (MODE-cmhh (intern (concat global-mode-name "-cmhh")))
380 (minor-MODE-hook (intern (concat mode-name "-hook")))
381 (MODE-set-explicitly (intern (concat mode-name "-set-explicitly")))
382 (MODE-major-mode (intern (concat (symbol-name mode) "-major-mode")))
383 keyw)
385 ;; Check keys.
386 (while (keywordp (setq keyw (car keys)))
387 (setq keys (cdr keys))
388 (pcase keyw
389 (`:group (setq group (nconc group (list :group (pop keys)))))
390 (`:global (setq keys (cdr keys)))
391 (_ (push keyw extra-keywords) (push (pop keys) extra-keywords))))
393 (unless group
394 ;; We might as well provide a best-guess default group.
395 (setq group
396 `(:group ',(intern (replace-regexp-in-string
397 "-mode\\'" "" (symbol-name mode))))))
399 `(progn
400 (progn
401 :autoload-end
402 (defvar ,MODE-major-mode nil)
403 (make-variable-buffer-local ',MODE-major-mode))
404 ;; The actual global minor-mode
405 (define-minor-mode ,global-mode
406 ;; Very short lines to avoid too long lines in the generated
407 ;; doc string.
408 ,(format "Toggle %s in all buffers.
409 With prefix ARG, enable %s if ARG is positive;
410 otherwise, disable it. If called from Lisp, enable the mode if
411 ARG is omitted or nil.
413 %s is enabled in all buffers where
414 `%s' would do it.
415 See `%s' for more information on %s."
416 pretty-name pretty-global-name
417 pretty-name turn-on mode pretty-name)
418 :global t ,@group ,@(nreverse extra-keywords)
420 ;; Setup hook to handle future mode changes and new buffers.
421 (if ,global-mode
422 (progn
423 (add-hook 'after-change-major-mode-hook
424 ',MODE-enable-in-buffers)
425 (add-hook 'find-file-hook ',MODE-check-buffers)
426 (add-hook 'change-major-mode-hook ',MODE-cmhh))
427 (remove-hook 'after-change-major-mode-hook ',MODE-enable-in-buffers)
428 (remove-hook 'find-file-hook ',MODE-check-buffers)
429 (remove-hook 'change-major-mode-hook ',MODE-cmhh))
431 ;; Go through existing buffers.
432 (dolist (buf (buffer-list))
433 (with-current-buffer buf
434 (if ,global-mode (funcall #',turn-on) (when ,mode (,mode -1))))))
436 ;; Autoloading define-globalized-minor-mode autoloads everything
437 ;; up-to-here.
438 :autoload-end
440 ;; MODE-set-explicitly is set in MODE-set-explicitly and cleared by
441 ;; kill-all-local-variables.
442 (defvar-local ,MODE-set-explicitly nil)
443 (defun ,MODE-set-explicitly ()
444 (setq ,MODE-set-explicitly t))
445 (put ',MODE-set-explicitly 'definition-name ',global-mode)
447 ;; A function which checks whether MODE has been disabled in the major
448 ;; mode hook which has just been run.
449 (add-hook ',minor-MODE-hook ',MODE-set-explicitly)
451 ;; List of buffers left to process.
452 (defvar ,MODE-buffers nil)
454 ;; The function that calls TURN-ON in each buffer.
455 (defun ,MODE-enable-in-buffers ()
456 (dolist (buf ,MODE-buffers)
457 (when (buffer-live-p buf)
458 (with-current-buffer buf
459 (unless ,MODE-set-explicitly
460 (unless (eq ,MODE-major-mode major-mode)
461 (if ,mode
462 (progn
463 (,mode -1)
464 (funcall #',turn-on))
465 (funcall #',turn-on))))
466 (setq ,MODE-major-mode major-mode)))))
467 (put ',MODE-enable-in-buffers 'definition-name ',global-mode)
469 (defun ,MODE-check-buffers ()
470 (,MODE-enable-in-buffers)
471 (setq ,MODE-buffers nil)
472 (remove-hook 'post-command-hook ',MODE-check-buffers))
473 (put ',MODE-check-buffers 'definition-name ',global-mode)
475 ;; The function that catches kill-all-local-variables.
476 (defun ,MODE-cmhh ()
477 (add-to-list ',MODE-buffers (current-buffer))
478 (add-hook 'post-command-hook ',MODE-check-buffers))
479 (put ',MODE-cmhh 'definition-name ',global-mode))))
482 ;;; easy-mmode-defmap
485 (defun easy-mmode-set-keymap-parents (m parents)
486 (set-keymap-parent
487 m (if (cdr parents) (make-composed-keymap parents) (car parents))))
489 ;;;###autoload
490 (defun easy-mmode-define-keymap (bs &optional name m args)
491 "Return a keymap built from bindings BS.
492 BS must be a list of (KEY . BINDING) where
493 KEY and BINDINGS are suitable for `define-key'.
494 Optional NAME is passed to `make-sparse-keymap'.
495 Optional map M can be used to modify an existing map.
496 ARGS is a list of additional keyword arguments.
498 Valid keywords and arguments are:
500 :name Name of the keymap; overrides NAME argument.
501 :dense Non-nil for a dense keymap.
502 :inherit Parent keymap.
503 :group Ignored.
504 :suppress Non-nil to call `suppress-keymap' on keymap,
505 'nodigits to suppress digits as prefix arguments."
506 (let (inherit dense suppress)
507 (while args
508 (let ((key (pop args))
509 (val (pop args)))
510 (pcase key
511 (`:name (setq name val))
512 (`:dense (setq dense val))
513 (`:inherit (setq inherit val))
514 (`:suppress (setq suppress val))
515 (`:group)
516 (_ (message "Unknown argument %s in defmap" key)))))
517 (unless (keymapp m)
518 (setq bs (append m bs))
519 (setq m (if dense (make-keymap name) (make-sparse-keymap name))))
520 (when suppress
521 (suppress-keymap m (eq suppress 'nodigits)))
522 (dolist (b bs)
523 (let ((keys (car b))
524 (binding (cdr b)))
525 (dolist (key (if (consp keys) keys (list keys)))
526 (cond
527 ((symbolp key)
528 (substitute-key-definition key binding m global-map))
529 ((null binding)
530 (unless (keymapp (lookup-key m key)) (define-key m key binding)))
531 ((let ((o (lookup-key m key)))
532 (or (null o) (numberp o) (eq o 'undefined)))
533 (define-key m key binding))))))
534 (cond
535 ((keymapp inherit) (set-keymap-parent m inherit))
536 ((consp inherit) (easy-mmode-set-keymap-parents m inherit)))
539 ;;;###autoload
540 (defmacro easy-mmode-defmap (m bs doc &rest args)
541 "Define a constant M whose value is the result of `easy-mmode-define-keymap'.
542 The M, BS, and ARGS arguments are as per that function. DOC is
543 the constant's documentation."
544 `(defconst ,m
545 (easy-mmode-define-keymap ,bs nil (if (boundp ',m) ,m) ,(cons 'list args))
546 ,doc))
550 ;;; easy-mmode-defsyntax
553 (defun easy-mmode-define-syntax (css args)
554 (let ((st (make-syntax-table (plist-get args :copy)))
555 (parent (plist-get args :inherit)))
556 (dolist (cs css)
557 (let ((char (car cs))
558 (syntax (cdr cs)))
559 (if (sequencep char)
560 (mapc (lambda (c) (modify-syntax-entry c syntax st)) char)
561 (modify-syntax-entry char syntax st))))
562 (if parent (set-char-table-parent
563 st (if (symbolp parent) (symbol-value parent) parent)))
564 st))
566 ;;;###autoload
567 (defmacro easy-mmode-defsyntax (st css doc &rest args)
568 "Define variable ST as a syntax-table.
569 CSS contains a list of syntax specifications of the form (CHAR . SYNTAX)."
570 `(progn
571 (autoload 'easy-mmode-define-syntax "easy-mmode")
572 (defconst ,st (easy-mmode-define-syntax ,css ,(cons 'list args)) ,doc)))
577 ;;; easy-mmode-define-navigation
580 (defmacro easy-mmode-define-navigation (base re &optional name endfun narrowfun
581 &rest body)
582 "Define BASE-next and BASE-prev to navigate in the buffer.
583 RE determines the places the commands should move point to.
584 NAME should describe the entities matched by RE. It is used to build
585 the docstrings of the two functions.
586 BASE-next also tries to make sure that the whole entry is visible by
587 searching for its end (by calling ENDFUN if provided or by looking for
588 the next entry) and recentering if necessary.
589 ENDFUN should return the end position (with or without moving point).
590 NARROWFUN non-nil means to check for narrowing before moving, and if
591 found, do `widen' first and then call NARROWFUN with no args after moving.
592 BODY is executed after moving to the destination location."
593 (declare (indent 5) (debug (exp exp exp def-form def-form &rest def-body)))
594 (let* ((base-name (symbol-name base))
595 (prev-sym (intern (concat base-name "-prev")))
596 (next-sym (intern (concat base-name "-next")))
597 (when-narrowed
598 (lambda (body)
599 (if (null narrowfun) body
600 `(let ((was-narrowed
601 (prog1 (or (< (- (point-max) (point-min)) (buffer-size)))
602 (widen))))
603 ,body
604 (when was-narrowed (funcall #',narrowfun)))))))
605 (unless name (setq name base-name))
606 `(progn
607 (defun ,next-sym (&optional count)
608 ,(format "Go to the next COUNT'th %s." name)
609 (interactive "p")
610 (unless count (setq count 1))
611 (if (< count 0) (,prev-sym (- count))
612 (if (looking-at ,re) (setq count (1+ count)))
613 ,(funcall when-narrowed
614 `(if (not (re-search-forward ,re nil t count))
615 (if (looking-at ,re)
616 (goto-char (or ,(if endfun `(funcall #',endfun)) (point-max)))
617 (user-error "No next %s" ,name))
618 (goto-char (match-beginning 0))
619 (when (and (eq (current-buffer) (window-buffer))
620 (called-interactively-p 'interactive))
621 (let ((endpt (or (save-excursion
622 ,(if endfun `(funcall #',endfun)
623 `(re-search-forward ,re nil t 2)))
624 (point-max))))
625 (unless (pos-visible-in-window-p endpt nil t)
626 (recenter '(0)))))))
627 ,@body))
628 (put ',next-sym 'definition-name ',base)
629 (defun ,prev-sym (&optional count)
630 ,(format "Go to the previous COUNT'th %s" (or name base-name))
631 (interactive "p")
632 (unless count (setq count 1))
633 (if (< count 0) (,next-sym (- count))
634 ,(funcall when-narrowed
635 `(unless (re-search-backward ,re nil t count)
636 (user-error "No previous %s" ,name)))
637 ,@body))
638 (put ',prev-sym 'definition-name ',base))))
641 (provide 'easy-mmode)
643 ;;; easy-mmode.el ends here