1 ;;; easy-mmode.el --- easy definition for major and minor modes.
3 ;; Copyright (C) 1997,2000 Free Software Foundation, Inc.
5 ;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr>
6 ;; Maintainer: Stefan Monnier <monnier@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; Minor modes are useful and common. This package makes defining a
28 ;; minor mode easy, by focusing on the writing of the minor mode
29 ;; functionalities themselves. Moreover, this package enforces a
30 ;; conventional naming of user interface primitives, making things
31 ;; natural for the minor-mode end-users.
33 ;; For each mode, easy-mmode defines the following:
34 ;; <mode> : The minor mode predicate. A buffer-local variable.
35 ;; <mode>-map : The keymap possibly associated to <mode>.
36 ;; <mode>-hook : The hook run at the end of the toggle function.
37 ;; see `define-minor-mode' documentation
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
49 ;; Additionally to `define-minor-mode', the package provides convenient
50 ;; ways to define keymaps, and other helper functions for major and minor modes.
54 (eval-when-compile (require 'cl
))
56 (defun easy-mmode-pretty-mode-name (mode &optional lighter
)
57 "Turn the symbol MODE into a string intended for the user.
58 If provided LIGHTER will be used to help choose capitalization."
59 (let* ((case-fold-search t
)
60 (name (concat (replace-regexp-in-string
62 (capitalize (replace-regexp-in-string
63 "-mode\\'" "" (symbol-name mode
))))
65 (if (not (stringp lighter
)) name
66 (setq lighter
(replace-regexp-in-string "\\`\\s-+\\|\\-s+\\'" "" lighter
))
67 (replace-regexp-in-string lighter lighter name t t
))))
70 (defalias 'easy-mmode-define-minor-mode
'define-minor-mode
)
72 (defmacro define-minor-mode
(mode doc
&optional init-value lighter keymap
&rest body
)
73 "Define a new minor mode MODE.
74 This function defines the associated control variable MODE, keymap MODE-map,
75 toggle command MODE, and hook MODE-hook.
77 DOC is the documentation for the mode toggle command.
78 Optional INIT-VALUE is the initial value of the mode's variable.
79 Optional LIGHTER is displayed in the modeline when the mode is on.
80 Optional KEYMAP is the default (defvar) keymap bound to the mode keymap.
81 If it is a list, it is passed to `easy-mmode-define-keymap'
82 in order to build a valid keymap. It's generally better to use
83 a separate MODE-map variable than to use this argument.
84 The above three arguments can be skipped if keyword arguments are
87 BODY contains code that will be executed each time the mode is (dis)activated.
88 It will be executed after any toggling but before running the hooks.
89 BODY can start with a list of CL-style keys specifying additional arguments.
90 The following keyword arguments are supported:
91 :group Followed by the group name to use for any generated `defcustom'.
92 :global If non-nil specifies that the minor mode is not meant to be
93 buffer-local. By default, the variable is made buffer-local.
94 :init-value Same as the INIT-VALUE argument.
95 :lighter Same as the LIGHTER argument."
96 ;; Allow skipping the first three args.
98 ((keywordp init-value
)
99 (setq body
(list* init-value lighter keymap body
)
100 init-value nil lighter nil keymap nil
))
102 (setq body
(list* lighter keymap body
) lighter nil keymap nil
))
103 ((keywordp keymap
) (push keymap body
) (setq keymap nil
)))
105 (let* ((mode-name (symbol-name mode
))
106 (pretty-name (easy-mmode-pretty-mode-name mode lighter
))
108 (togglep t
) ;why would you ever want to toggle?
111 (keymap-sym (if (and keymap
(symbolp keymap
)) keymap
112 (intern (concat mode-name
"-map"))))
113 (hook (intern (concat mode-name
"-hook")))
114 (hook-on (intern (concat mode-name
"-on-hook")))
115 (hook-off (intern (concat mode-name
"-off-hook"))))
118 (while (keywordp (car body
))
120 (:init-value
(setq init-value
(pop body
)))
121 (:lighter
(setq lighter
(pop body
)))
122 (:global
(setq globalp
(pop body
)))
123 (:extra-args
(setq extra-args
(pop body
)))
124 (:group
(setq group
(nconc group
(list :group
(pop body
)))))
128 ;; We might as well provide a best-guess default group.
130 `(:group
',(intern (replace-regexp-in-string "-mode\\'" ""
132 ;; Add default properties to LIGHTER.
133 (unless (or (not (stringp lighter
)) (get-text-property 0 'local-map lighter
)
134 (get-text-property 0 'keymap lighter
))
136 (apply 'propertize lighter
137 'local-map
(make-mode-line-mouse2-map mode
)
138 (unless (get-text-property 0 'help-echo lighter
)
140 (format "mouse-2: turn off %s" pretty-name
))))))
143 ;; Define the variable to enable or disable the mode.
146 (defvar ,mode
,init-value
,(format "Non-nil if %s is enabled.
147 Use the command `%s' to change this variable." pretty-name mode
))
148 (make-variable-buffer-local ',mode
))
150 (let ((curfile (or (and (boundp 'byte-compile-current-file
)
151 byte-compile-current-file
)
153 `(defcustom ,mode
,init-value
154 ,(format "Non-nil if %s is enabled.
155 See the command `%s' for a description of this minor-mode.
156 Setting this variable directly does not take effect;
157 use either \\[customize] or the function `%s'."
158 pretty-name mode mode
)
159 :set
(lambda (symbol value
) (funcall symbol
(or value
0)))
160 :initialize
'custom-initialize-default
167 (intern (file-name-nondirectory
168 (file-name-sans-extension curfile
)))))))))
170 ;; The actual function.
171 (defun ,mode
(&optional arg
,@extra-args
)
173 (format (concat "Toggle %s on or off.
174 Interactively, with no prefix argument, toggle the mode.
175 With universal prefix ARG " (unless togglep
"(or if ARG is nil) ") "turn mode on.
176 With zero or negative ARG turn mode off.
177 \\{%s}") pretty-name keymap-sym
))
178 (interactive (list (or current-prefix-arg
(if ,mode
0 1))))
181 (> (prefix-numeric-value arg
) 0)
182 ,(if togglep
`(not ,mode
) t
)))
184 ;; The on/off hooks are here for backward compatibility only.
185 (run-hooks ',hook
(if ,mode
',hook-on
',hook-off
))
186 ;; Return the new setting.
188 (message ,(format "%s %%sabled" pretty-name
)
189 (if ,mode
"en" "dis")))
190 (force-mode-line-update)
193 ;; Autoloading an easy-mmode-define-minor-mode autoloads
194 ;; everything up-to-here.
197 ;; The toggle's hook.
199 ,(format "Hook run at the end of function `%s'." mode-name
)
203 ;; Define the minor-mode keymap.
204 ,(unless (symbolp keymap
) ;nil is also a symbol.
207 (cond ((keymapp m
) m
)
208 ((listp m
) (easy-mmode-define-keymap m
))
209 (t (error "Invalid keymap %S" ,keymap
))))
210 ,(format "Keymap for `%s'." mode-name
)))
212 (add-minor-mode ',mode
',lighter
213 ,(if keymap keymap-sym
214 `(if (boundp ',keymap-sym
)
215 (symbol-value ',keymap-sym
))))
217 ;; If the mode is global, call the function according to the default.
218 ,(if globalp
`(if ,mode
(,mode
1))))))
221 ;;; make global minor mode
225 (defmacro easy-mmode-define-global-mode
(global-mode mode turn-on
227 "Make GLOBAL-MODE out of the buffer-local minor MODE.
228 TURN-ON is a function that will be called with no args in every buffer
229 and that should try to turn MODE on if applicable for that buffer.
230 KEYS is a list of CL-style keyword arguments:
231 :group to specify the custom group."
232 (let* ((global-mode-name (symbol-name global-mode
))
233 (pretty-name (easy-mmode-pretty-mode-name mode
))
234 (pretty-global-name (easy-mmode-pretty-mode-name global-mode
))
237 (buffers (intern (concat global-mode-name
"-buffers")))
238 (cmmh (intern (concat global-mode-name
"-cmmh"))))
241 (while (keywordp (car keys
))
243 (:extra-args
(setq extra-args
(pop keys
)))
244 (:group
(setq group
(nconc group
(list :group
(pop keys
)))))
245 (t (setq keys
(cdr keys
)))))
248 ;; We might as well provide a best-guess default group.
250 `(:group
',(intern (replace-regexp-in-string "-mode\\'" ""
251 (symbol-name mode
))))))
253 ;; The actual global minor-mode
254 (define-minor-mode ,global-mode
255 ,(format "Toggle %s in every buffer.
256 With prefix ARG, turn %s on if and only if ARG is positive.
257 %s is actually not turned on in every buffer but only in those
258 in which `%s' turns it on."
259 pretty-name pretty-global-name pretty-name turn-on
)
260 :global t
:extra-args
,extra-args
,@group
262 ;; Setup hook to handle future mode changes and new buffers.
265 (add-hook 'find-file-hooks
',buffers
)
266 (add-hook 'change-major-mode-hook
',cmmh
))
267 (remove-hook 'find-file-hooks
',buffers
)
268 (remove-hook 'change-major-mode-hook
',cmmh
))
270 ;; Go through existing buffers.
271 (dolist (buf (buffer-list))
272 (with-current-buffer buf
273 (if ,global-mode
(,turn-on
) (when ,mode
(,mode -
1))))))
275 ;; Autoloading easy-mmode-define-global-mode
276 ;; autoloads everything up-to-here.
279 ;; List of buffers left to process.
280 (defvar ,buffers nil
)
282 ;; The function that calls TURN-ON in each buffer.
284 (remove-hook 'post-command-hook
',buffers
)
286 (let ((buf (pop ,buffers
)))
287 (when (buffer-live-p buf
)
288 (with-current-buffer buf
(,turn-on
))))))
290 ;; The function that catches kill-all-local-variables.
292 (add-to-list ',buffers
(current-buffer))
293 (add-hook 'post-command-hook
',buffers
)))))
296 ;;; easy-mmode-defmap
299 (if (fboundp 'set-keymap-parents
)
300 (defalias 'easy-mmode-set-keymap-parents
'set-keymap-parents
)
301 (defun easy-mmode-set-keymap-parents (m parents
)
305 ((not (consp parents
)) parents
)
306 ((not (cdr parents
)) (car parents
))
307 (t (let ((m (copy-keymap (pop parents
))))
308 (easy-mmode-set-keymap-parents m parents
)
312 (defun easy-mmode-define-keymap (bs &optional name m args
)
313 "Return a keymap built from bindings BS.
314 BS must be a list of (KEY . BINDING) where
315 KEY and BINDINGS are suitable for `define-key'.
316 Optional NAME is passed to `make-sparse-keymap'.
317 Optional map M can be used to modify an existing map.
318 ARGS is a list of additional keyword arguments."
319 (let (inherit dense suppress
)
321 (let ((key (pop args
))
324 (:name
(setq name val
))
325 (:dense
(setq dense val
))
326 (:inherit
(setq inherit val
))
328 ;;((eq key :suppress) (setq suppress val))
329 (t (message "Unknown argument %s in defmap" key
)))))
331 (setq bs
(append m bs
))
332 (setq m
(if dense
(make-keymap name
) (make-sparse-keymap name
))))
336 (dolist (key (if (consp keys
) keys
(list keys
)))
339 (substitute-key-definition key binding m global-map
))
341 (unless (keymapp (lookup-key m key
)) (define-key m key binding
)))
342 ((let ((o (lookup-key m key
)))
343 (or (null o
) (numberp o
) (eq o
'undefined
)))
344 (define-key m key binding
))))))
346 ((keymapp inherit
) (set-keymap-parent m inherit
))
347 ((consp inherit
) (easy-mmode-set-keymap-parents m inherit
)))
351 (defmacro easy-mmode-defmap
(m bs doc
&rest args
)
353 (easy-mmode-define-keymap ,bs nil
(if (boundp ',m
) ,m
) ,(cons 'list args
))
358 ;;; easy-mmode-defsyntax
361 (defun easy-mmode-define-syntax (css args
)
362 (let ((st (make-syntax-table (plist-get args
:copy
)))
363 (parent (plist-get args
:inherit
)))
365 (let ((char (car cs
))
368 (mapcar (lambda (c) (modify-syntax-entry c syntax st
)) char
)
369 (modify-syntax-entry char syntax st
))))
370 (if parent
(set-char-table-parent
371 st
(if (symbolp parent
) (symbol-value parent
) parent
)))
375 (defmacro easy-mmode-defsyntax
(st css doc
&rest args
)
376 "Define variable ST as a syntax-table.
377 CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
380 (autoload 'easy-mmode-define-syntax
"easy-mmode")
381 (defconst ,st
(easy-mmode-define-syntax ,css
,(cons 'list args
)) doc
)))
386 ;;; easy-mmode-define-navigation
389 (defmacro easy-mmode-define-navigation
(base re
&optional name endfun
)
390 "Define BASE-next and BASE-prev to navigate in the buffer.
391 RE determines the places the commands should move point to.
392 NAME should describe the entities matched by RE. It is used to build
393 the docstrings of the two functions.
394 BASE-next also tries to make sure that the whole entry is visible by
395 searching for its end (by calling ENDFUN if provided or by looking for
396 the next entry) and recentering if necessary.
397 ENDFUN should return the end position (with or without moving point)."
398 (let* ((base-name (symbol-name base
))
399 (prev-sym (intern (concat base-name
"-prev")))
400 (next-sym (intern (concat base-name
"-next"))))
401 (unless name
(setq name
(symbol-name base-name
)))
403 (add-to-list 'debug-ignored-errors
404 ,(concat "^No \\(previous\\|next\\) " (regexp-quote name
)))
405 (defun ,next-sym
(&optional count
)
406 ,(format "Go to the next COUNT'th %s." name
)
408 (unless count
(setq count
1))
409 (if (< count
0) (,prev-sym
(- count
))
410 (if (looking-at ,re
) (incf count
))
411 (if (not (re-search-forward ,re nil t count
))
413 (goto-char (or ,(if endfun
`(,endfun
)) (point-max)))
414 (error ,(format "No next %s" name
)))
415 (goto-char (match-beginning 0))
416 (when (eq (current-buffer) (window-buffer (selected-window)))
417 (let ((endpt (or (save-excursion
418 ,(if endfun
`(,endfun
)
419 `(re-search-forward ,re nil t
2)))
421 (unless (pos-visible-in-window-p endpt nil t
)
422 (recenter '(0))))))))
423 (defun ,prev-sym
(&optional count
)
424 ,(format "Go to the previous COUNT'th %s" (or name base-name
))
426 (unless count
(setq count
1))
427 (if (< count
0) (,next-sym
(- count
))
428 (unless (re-search-backward ,re nil t count
)
429 (error ,(format "No previous %s" name
))))))))
431 (provide 'easy-mmode
)
433 ;;; easy-mmode.el ends here