1992-05-30 23:54:21 +00:00
|
|
|
;;; chistory.el --- list command history
|
|
|
|
|
2012-01-05 09:46:05 +00:00
|
|
|
;; Copyright (C) 1985, 2001-2012 Free Software Foundation, Inc.
|
1992-07-22 04:22:30 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Author: K. Shane Hartman
|
|
|
|
;; Maintainer: FSF
|
2002-05-02 05:41:46 +00:00
|
|
|
;; Keywords: convenience
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1991-08-27 03:29:52 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1991-08-27 03:29:52 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Commentary:
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
;; This really has nothing to do with list-command-history per se, but
|
1994-10-20 20:01:41 +00:00
|
|
|
;; its a nice alternative to C-x ESC ESC (repeat-complex-command) and
|
1991-08-27 03:29:52 +00:00
|
|
|
;; functions as a lister if given no pattern. It's not important
|
|
|
|
;; enough to warrant a file of its own.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
(defgroup chistory nil
|
|
|
|
"List command history."
|
|
|
|
:group 'keyboard)
|
|
|
|
|
1991-08-27 03:29:52 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun repeat-matching-complex-command (&optional pattern)
|
|
|
|
"Edit and re-evaluate complex command with name matching PATTERN.
|
|
|
|
Matching occurrences are displayed, most recent first, until you select
|
|
|
|
a form for evaluation. If PATTERN is empty (or nil), every form in the
|
|
|
|
command history is offered. The form is placed in the minibuffer for
|
|
|
|
editing and the result is evaluated."
|
|
|
|
(interactive "sRedo Command (regexp): ")
|
|
|
|
(if pattern
|
1994-10-20 20:01:41 +00:00
|
|
|
(if (string-match "[^ \t]" pattern)
|
|
|
|
(setq pattern (substring pattern (match-beginning 0)))
|
|
|
|
(setq pattern nil)))
|
1991-08-27 03:29:52 +00:00
|
|
|
(let ((history command-history)
|
|
|
|
(temp)
|
|
|
|
(what))
|
|
|
|
(while (and history (not what))
|
|
|
|
(setq temp (car history))
|
|
|
|
(if (and (or (not pattern) (string-match pattern (symbol-name (car temp))))
|
1994-10-20 20:01:41 +00:00
|
|
|
(y-or-n-p (format "Redo %S? " temp)))
|
1991-08-27 03:29:52 +00:00
|
|
|
(setq what (car history))
|
|
|
|
(setq history (cdr history))))
|
|
|
|
(if (not what)
|
|
|
|
(error "Command history exhausted")
|
|
|
|
;; Try to remove any useless command history element for this command.
|
|
|
|
(if (eq (car (car command-history)) 'repeat-matching-complex-command)
|
|
|
|
(setq command-history (cdr command-history)))
|
|
|
|
(edit-and-eval-command "Redo: " what))))
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
(defcustom default-command-history-filter-garbage
|
1991-08-27 03:29:52 +00:00
|
|
|
'(command-history-mode
|
|
|
|
list-command-history
|
|
|
|
electric-command-history)
|
2008-12-03 05:48:14 +00:00
|
|
|
"A list of symbols to be ignored by `default-command-history-filter'.
|
1998-03-07 18:19:38 +00:00
|
|
|
If that function is given a list whose car is an element of this list,
|
1994-10-20 20:01:41 +00:00
|
|
|
then it will return non-nil (indicating the list should be discarded from
|
|
|
|
the history).
|
1998-03-07 18:19:38 +00:00
|
|
|
Initially, all commands related to the command history are discarded."
|
|
|
|
:type '(repeat symbol)
|
|
|
|
:group 'chistory)
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
(defvar list-command-history-filter 'default-command-history-filter
|
1994-10-20 20:01:41 +00:00
|
|
|
"Predicate to test which commands should be excluded from the history listing.
|
|
|
|
If non-nil, should be the name of a function of one argument.
|
1991-08-27 03:29:52 +00:00
|
|
|
It is passed each element of the command history when
|
|
|
|
\\[list-command-history] is called. If the filter returns non-nil for
|
|
|
|
some element, that element is excluded from the history listing. The
|
|
|
|
default filter removes commands associated with the command-history.")
|
|
|
|
|
|
|
|
(defun default-command-history-filter (frob)
|
|
|
|
"Filter commands matching `default-command-history-filter-garbage' list
|
|
|
|
from the command history."
|
|
|
|
(or (not (consp frob))
|
|
|
|
(memq (car frob) default-command-history-filter-garbage)))
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
(defcustom list-command-history-max 32
|
2008-12-03 05:48:14 +00:00
|
|
|
"If non-nil, maximum length of the listing produced by `list-command-history'."
|
1998-03-07 18:19:38 +00:00
|
|
|
:type '(choice integer (const nil))
|
|
|
|
:group 'chistory)
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun list-command-history ()
|
|
|
|
"List history of commands typed to minibuffer.
|
|
|
|
The number of commands listed is controlled by `list-command-history-max'.
|
|
|
|
Calls value of `list-command-history-filter' (if non-nil) on each history
|
|
|
|
element to judge if that element should be excluded from the list.
|
|
|
|
|
|
|
|
The buffer is left in Command History mode."
|
|
|
|
(interactive)
|
|
|
|
(with-output-to-temp-buffer
|
|
|
|
"*Command History*"
|
|
|
|
(let ((history command-history)
|
|
|
|
(buffer-read-only nil)
|
|
|
|
(count (or list-command-history-max -1)))
|
|
|
|
(while (and (/= count 0) history)
|
2008-06-27 17:51:24 +00:00
|
|
|
(if (and (bound-and-true-p list-command-history-filter)
|
1991-08-27 03:29:52 +00:00
|
|
|
(funcall list-command-history-filter (car history)))
|
|
|
|
nil
|
|
|
|
(setq count (1- count))
|
|
|
|
(prin1 (car history))
|
|
|
|
(terpri))
|
|
|
|
(setq history (cdr history))))
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
(with-current-buffer "*Command History*"
|
1991-08-27 03:29:52 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(if (eobp)
|
|
|
|
(error "No command history")
|
1999-12-31 23:41:32 +00:00
|
|
|
(command-history-mode)))))
|
1991-08-27 03:29:52 +00:00
|
|
|
|
2008-06-27 17:51:24 +00:00
|
|
|
(defvar command-history-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
(set-keymap-parent map lisp-mode-shared-map)
|
|
|
|
(suppress-keymap map)
|
|
|
|
(define-key map "x" 'command-history-repeat)
|
|
|
|
(define-key map "\n" 'next-line)
|
|
|
|
(define-key map "\r" 'next-line)
|
|
|
|
(define-key map "\177" 'previous-line)
|
|
|
|
map)
|
|
|
|
"Keymap for `command-history-mode'.")
|
2002-12-21 20:18:51 +00:00
|
|
|
|
1999-12-31 23:41:32 +00:00
|
|
|
(defun command-history-mode ()
|
2002-12-09 23:46:12 +00:00
|
|
|
"Major mode for listing and repeating recent commands.
|
|
|
|
|
|
|
|
Keybindings:
|
|
|
|
\\{command-history-map}"
|
|
|
|
(interactive)
|
1999-12-31 23:41:32 +00:00
|
|
|
(Command-history-setup)
|
|
|
|
(setq major-mode 'command-history-mode)
|
|
|
|
(setq mode-name "Command History")
|
|
|
|
(use-local-map command-history-map)
|
2005-05-26 12:34:51 +00:00
|
|
|
(run-mode-hooks 'command-history-mode-hook))
|
1999-12-31 23:41:32 +00:00
|
|
|
|
|
|
|
(defun Command-history-setup ()
|
|
|
|
(kill-all-local-variables)
|
2000-11-28 09:36:33 +00:00
|
|
|
(use-local-map command-history-map)
|
1991-08-27 03:29:52 +00:00
|
|
|
(lisp-mode-variables nil)
|
|
|
|
(set-syntax-table emacs-lisp-mode-syntax-table)
|
1999-12-31 23:41:32 +00:00
|
|
|
(setq buffer-read-only t))
|
1991-08-27 03:29:52 +00:00
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
(defcustom command-history-hook nil
|
|
|
|
"If non-nil, its value is called on entry to `command-history-mode'."
|
|
|
|
:type 'hook
|
|
|
|
:group 'chistory)
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
(defun command-history-repeat ()
|
|
|
|
"Repeat the command shown on the current line.
|
|
|
|
The buffer for that command is the previous current buffer."
|
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(eval (prog1
|
|
|
|
(save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(read (current-buffer)))
|
|
|
|
(set-buffer
|
1993-04-02 16:41:54 +00:00
|
|
|
(car (cdr (buffer-list))))))))
|
1991-08-27 03:29:52 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
1999-12-31 23:41:32 +00:00
|
|
|
(defun command-history ()
|
|
|
|
"Examine commands from `command-history' in a buffer.
|
1991-08-27 03:29:52 +00:00
|
|
|
The number of commands listed is controlled by `list-command-history-max'.
|
|
|
|
The command history is filtered by `list-command-history-filter' if non-nil.
|
|
|
|
Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
|
|
|
|
|
|
|
|
Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
|
|
|
|
and digits provide prefix arguments. Tab does not indent.
|
|
|
|
\\{command-history-map}
|
1999-12-31 23:41:32 +00:00
|
|
|
|
|
|
|
This command always recompiles the Command History listing
|
|
|
|
and runs the normal hook `command-history-hook'."
|
1991-08-27 03:29:52 +00:00
|
|
|
(interactive)
|
|
|
|
(list-command-history)
|
|
|
|
(pop-to-buffer "*Command History*")
|
|
|
|
(run-hooks 'command-history-hook))
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
|
|
(provide 'chistory)
|
|
|
|
|
1992-05-30 23:54:21 +00:00
|
|
|
;;; chistory.el ends here
|