1 ;;; options.el --- edit Options command for Emacs
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
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 3, 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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
27 ;; This code provides functions to list and edit the values of all global
28 ;; option variables known to loaded Emacs Lisp code. There are two entry
29 ;; points, `list-options' and `edit' options'. The latter enters a major
30 ;; mode specifically for editing option values. Do `M-x describe-mode' in
31 ;; that context for more details.
33 ;; The customization buffer feature is intended to make this obsolete.
38 (defun list-options ()
39 "Display a list of Emacs user options, with values and documentation.
40 It is now better to use Customize instead."
42 (with-output-to-temp-buffer "*List Options*"
44 (princ "This facility is obsolete; we recommend using M-x customize instead.")
46 (mapatoms (function (lambda (sym)
47 (if (user-variable-p sym
)
48 (setq vars
(cons sym vars
))))))
49 (setq vars
(sort vars
'string-lessp
))
51 (let ((sym (car vars
)))
56 (prin1 (symbol-value sym
))
58 (princ (substitute-command-keys
59 (documentation-property sym
'variable-documentation
)))
61 (setq vars
(cdr vars
))))
62 (with-current-buffer "*List Options*"
64 (setq buffer-read-only t
)))))
67 (defun edit-options ()
68 "Edit a list of Emacs user option values.
69 Selects a buffer containing such a list,
70 in which there are commands to set the option values.
71 Type \\[describe-mode] in that buffer for a list of commands.
73 The Custom feature is intended to make this obsolete."
76 (pop-to-buffer "*List Options*"))
78 (defvar Edit-options-mode-map
79 (let ((map (make-keymap)))
80 (define-key map
"s" 'Edit-options-set
)
81 (define-key map
"x" 'Edit-options-toggle
)
82 (define-key map
"1" 'Edit-options-t
)
83 (define-key map
"0" 'Edit-options-nil
)
84 (define-key map
"p" 'backward-paragraph
)
85 (define-key map
" " 'forward-paragraph
)
86 (define-key map
"n" 'forward-paragraph
)
90 ;; Edit Options mode is suitable only for specially formatted data.
91 (put 'Edit-options-mode
'mode-class
'special
)
93 (defun Edit-options-mode ()
94 "\\<Edit-options-mode-map>\
95 Major mode for editing Emacs user option settings.
97 \\[Edit-options-set] -- set variable point points at. New value read using minibuffer.
98 \\[Edit-options-toggle] -- toggle variable, t -> nil, nil -> t.
99 \\[Edit-options-t] -- set variable to t.
100 \\[Edit-options-nil] -- set variable to nil.
101 Changed values made by these commands take effect immediately.
103 Each variable description is a paragraph.
104 For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph] move back and forward by paragraphs."
105 (kill-all-local-variables)
106 (set-syntax-table emacs-lisp-mode-syntax-table
)
107 (use-local-map Edit-options-mode-map
)
108 (make-local-variable 'paragraph-separate
)
109 (setq paragraph-separate
"[^\^@-\^?]")
110 (make-local-variable 'paragraph-start
)
111 (setq paragraph-start
"\t")
112 (setq truncate-lines t
)
113 (setq major-mode
'Edit-options-mode
)
114 (setq mode-name
"Options")
115 (run-mode-hooks 'Edit-options-mode-hook
))
117 (defun Edit-options-set () (interactive)
119 (lambda (var) (eval-minibuffer (concat "New " (symbol-name var
) ": ")))))
121 (defun Edit-options-toggle () (interactive)
122 (Edit-options-modify (lambda (var) (not (symbol-value var
)))))
124 (defun Edit-options-t () (interactive)
125 (Edit-options-modify (lambda (var) t
)))
127 (defun Edit-options-nil () (interactive)
128 (Edit-options-modify (lambda (var) nil
)))
130 (defun Edit-options-modify (modfun)
132 (let ((buffer-read-only nil
) var pos
)
133 (re-search-backward "^;; \\|\\`")
137 (narrow-to-region pos
(progn (end-of-line) (1- (point))))
139 (setq var
(read (current-buffer))))
144 (set var
(funcall modfun var
)))
146 (prin1 (symbol-value var
) (current-buffer)))))
150 ;;; arch-tag: d18211a1-f3fb-48c9-a449-d5acde406a3c
151 ;;; options.el ends here