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