annotate lisp/electric/echistory.el @ 72:b9518feda344 r20-0b31

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