Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / echistory.el
blobabe40a658c6ada35d883d98a2598e72a28226bf6
1 ;;; echistory.el --- Electric Command History Mode
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: K. Shane Hartman
7 ;; Maintainer: FSF
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
28 (require 'electric) ; command loop
29 (require 'chistory) ; history lister
31 ;;;###autoload
32 (defun Electric-command-history-redo-expression (&optional noconfirm)
33 "Edit current history line in minibuffer and execute result.
34 With prefix arg NOCONFIRM, execute current line as-is without editing."
35 (interactive "P")
36 (let (todo)
37 (save-excursion
38 (set-buffer "*Command History*")
39 (beginning-of-line)
40 (setq todo (read (current-buffer)))
41 (if (boundp 'electric-history-in-progress)
42 (if todo (throw 'electric-history-quit (list noconfirm todo)))))))
44 (defvar electric-history-map ())
45 (if electric-history-map
47 (setq electric-history-map (make-sparse-keymap))
48 (define-key electric-history-map [t] 'Electric-history-undefined)
49 (define-key electric-history-map "\e" (make-sparse-keymap))
50 (define-key electric-history-map [?\e t] 'Electric-history-undefined)
51 (define-key electric-history-map "\C-u" 'universal-argument)
52 (define-key electric-history-map " " 'Electric-command-history-redo-expression)
53 (define-key electric-history-map "!" 'Electric-command-history-redo-expression)
54 (define-key electric-history-map "\e\C-x" 'eval-sexp)
55 (define-key electric-history-map "\e\C-d" 'down-list)
56 (define-key electric-history-map "\e\C-u" 'backward-up-list)
57 (define-key electric-history-map "\e\C-b" 'backward-sexp)
58 (define-key electric-history-map "\e\C-f" 'forward-sexp)
59 (define-key electric-history-map "\e\C-a" 'beginning-of-defun)
60 (define-key electric-history-map "\e\C-e" 'end-of-defun)
61 (define-key electric-history-map "\e\C-n" 'forward-list)
62 (define-key electric-history-map "\e\C-p" 'backward-list)
63 (define-key electric-history-map "q" 'Electric-history-quit)
64 (define-key electric-history-map "\C-c" nil)
65 (define-key electric-history-map "\C-c\C-c" 'Electric-history-quit)
66 (define-key electric-history-map "\C-]" 'Electric-history-quit)
67 (define-key electric-history-map "\C-z" 'suspend-frame)
68 (define-key electric-history-map (char-to-string help-char) 'Helper-help)
69 (define-key electric-history-map "?" 'Helper-describe-bindings)
70 (define-key electric-history-map "\e>" 'end-of-buffer)
71 (define-key electric-history-map "\e<" 'beginning-of-buffer)
72 (define-key electric-history-map "\n" 'next-line)
73 (define-key electric-history-map "\r" 'next-line)
74 (define-key electric-history-map "\177" 'previous-line)
75 (define-key electric-history-map "\C-n" 'next-line)
76 (define-key electric-history-map "\C-p" 'previous-line)
77 (define-key electric-history-map "\ev" 'scroll-down)
78 (define-key electric-history-map "\C-v" 'scroll-up)
79 (define-key electric-history-map [home] 'beginning-of-buffer)
80 (define-key electric-history-map [down] 'next-line)
81 (define-key electric-history-map [up] 'previous-line)
82 (define-key electric-history-map [prior] 'scroll-down)
83 (define-key electric-history-map [next] 'scroll-up)
84 (define-key electric-history-map "\C-l" 'recenter)
85 (define-key electric-history-map "\e\C-v" 'scroll-other-window))
87 (defvar electric-command-history-hook nil
88 "If non-nil, its value is called by `electric-command-history'.")
90 (defun electric-command-history ()
91 "\\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
92 This pops up a window with the Command History listing.
93 The number of command listed is controlled by `list-command-history-max'.
94 The command history is filtered by `list-command-history-filter' if non-nil.
95 Combines typeout Command History list window with menu like selection
96 of an expression from the history for re-evaluation in the *original* buffer.
98 The history displayed is filtered by `list-command-history-filter' if non-nil.
100 Like Emacs-Lisp mode except that characters do not insert themselves and
101 Tab and Linefeed do not indent. Instead these commands are provided:
102 \\{electric-history-map}
104 Calls the value of `electric-command-history-hook' if that is non-nil.
105 The Command History listing is recomputed each time this mode is invoked."
106 (interactive)
107 (let ((electric-history-in-progress t)
108 (old-buffer (current-buffer))
109 (todo))
110 (unwind-protect
111 (setq todo
112 (catch 'electric-history-quit
113 (save-window-excursion
114 (save-window-excursion
115 (list-command-history)
116 (set-buffer "*Command History*")
117 (Command-history-setup)
118 (setq major-mode 'electric-command-history)
119 (setq mode-name "Electric History")
120 (use-local-map electric-history-map))
121 (Electric-pop-up-window "*Command History*")
122 (run-hooks 'electric-command-history-hook)
123 (if (eobp)
124 (progn (ding)
125 (message "No command history.")
126 (throw 'electric-history-quit nil))
127 (let ((Helper-return-blurb "return to History"))
128 (Electric-command-loop 'electric-history-quit
129 "->" t))))))
130 (set-buffer "*Command History*")
131 (command-history-mode)
132 (bury-buffer (current-buffer)))
133 (if (consp todo)
134 (progn (set-buffer old-buffer)
135 (if (car todo)
136 (apply (car (car (cdr todo))) (cdr (car (cdr todo))))
137 (edit-and-eval-command "Redo: " (car (cdr todo))))))))
139 (defun Electric-history-undefined ()
140 (interactive)
141 (ding)
142 (message "%s" (substitute-command-keys "Type \\[Helper-help] for help, ? for commands, C-c C-c to quit, Space to execute"))
143 (sit-for 4))
145 (defun Electric-history-quit ()
146 "Quit Electric Command History, restoring previous window configuration."
147 (interactive)
148 (if (boundp 'electric-history-in-progress)
149 (progn (message "")
150 (throw 'electric-history-quit nil))))
152 (provide 'echistory)
154 ;; arch-tag: 1e5018fe-190f-44a7-9109-a895dcac4c50
155 ;;; echistory.el ends here