1992-05-30 23:54:21 +00:00
|
|
|
;;; echistory.el --- Electric Command History Mode
|
|
|
|
|
2006-12-05 06:15:26 +00:00
|
|
|
;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
|
2008-01-07 02:45:14 +00:00
|
|
|
;; 2006, 2007, 2008 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Author: K. Shane Hartman
|
|
|
|
;; Maintainer: FSF
|
1991-02-27 20:10:09 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2007-07-25 04:50:21 +00:00
|
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
1991-02-27 20:10:09 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; 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
|
1996-01-14 07:34:30 +00:00
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 23:32:44 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1991-02-27 20:10:09 +00:00
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1991-02-27 20:10:09 +00:00
|
|
|
|
|
|
|
(require 'electric) ; command loop
|
|
|
|
(require 'chistory) ; history lister
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
;;;###autoload
|
1991-02-27 20:10:09 +00:00
|
|
|
(defun Electric-command-history-redo-expression (&optional noconfirm)
|
|
|
|
"Edit current history line in minibuffer and execute result.
|
|
|
|
With prefix arg NOCONFIRM, execute current line as-is without editing."
|
|
|
|
(interactive "P")
|
|
|
|
(let (todo)
|
|
|
|
(save-excursion
|
|
|
|
(set-buffer "*Command History*")
|
|
|
|
(beginning-of-line)
|
|
|
|
(setq todo (read (current-buffer)))
|
|
|
|
(if (boundp 'electric-history-in-progress)
|
|
|
|
(if todo (throw 'electric-history-quit (list noconfirm todo)))))))
|
|
|
|
|
|
|
|
(defvar electric-history-map ())
|
|
|
|
(if electric-history-map
|
|
|
|
()
|
1993-06-11 15:51:46 +00:00
|
|
|
(setq electric-history-map (make-sparse-keymap))
|
|
|
|
(define-key electric-history-map [t] 'Electric-history-undefined)
|
|
|
|
(define-key electric-history-map "\e" (make-sparse-keymap))
|
|
|
|
(define-key electric-history-map [?\e t] 'Electric-history-undefined)
|
1991-02-27 20:10:09 +00:00
|
|
|
(define-key electric-history-map "\C-u" 'universal-argument)
|
|
|
|
(define-key electric-history-map " " 'Electric-command-history-redo-expression)
|
|
|
|
(define-key electric-history-map "!" 'Electric-command-history-redo-expression)
|
|
|
|
(define-key electric-history-map "\e\C-x" 'eval-sexp)
|
|
|
|
(define-key electric-history-map "\e\C-d" 'down-list)
|
|
|
|
(define-key electric-history-map "\e\C-u" 'backward-up-list)
|
|
|
|
(define-key electric-history-map "\e\C-b" 'backward-sexp)
|
|
|
|
(define-key electric-history-map "\e\C-f" 'forward-sexp)
|
|
|
|
(define-key electric-history-map "\e\C-a" 'beginning-of-defun)
|
|
|
|
(define-key electric-history-map "\e\C-e" 'end-of-defun)
|
|
|
|
(define-key electric-history-map "\e\C-n" 'forward-list)
|
|
|
|
(define-key electric-history-map "\e\C-p" 'backward-list)
|
|
|
|
(define-key electric-history-map "q" 'Electric-history-quit)
|
|
|
|
(define-key electric-history-map "\C-c" nil)
|
|
|
|
(define-key electric-history-map "\C-c\C-c" 'Electric-history-quit)
|
|
|
|
(define-key electric-history-map "\C-]" 'Electric-history-quit)
|
Reimplement and extend support for terminal-local environment variables.
* lisp/termdev.el: New file. Move terminal parameter-related functions
here from frame.el.
(terminal-getenv, with-terminal-environment): Reimplement and extend.
(terminal-setenv, terminal-setenv-internal): New functions.
* lisp/frame.el (make-frame-on-tty, framep-on-display, suspend-frame):
Extend doc string, update parameter names.
(terminal-id, terminal-parameter-alist, terminal-parameters)
(terminal-parameter-p, terminal-parameter, set-terminal-parameter)
(terminal-handle-delete-frame, terminal-getenv, terminal-getenv)
(with-terminal-environment): Move to termdev.el.
* lisp/loadup.el: Load termdev as well.
* lisp/Makefile.in (lisp, shortlisp): Add termdev.elc.
* lisp/makefile.MPW (shortlisp): Ditto.
* lisp/ebuff-menu.el (electric-buffer-menu-mode-map): Bind C-z to
`suspend-frame', not `suspend-emacs'.
* lisp/echistory.el (electric-history-map): Ditto.
* lisp/ebrowse.el (ebrowse-electric-list-mode-map): Ditto.
* lisp/ebrowse.el (ebrowse-electric-position-mode-map): Ditto.
* lisp/startup.el (normal-splash-screen): Use `save-buffers-kill-display'
instead of `save-buffers-kill-emacs'.
* lisp/x-win.el (x-initialize-window-system): Add 'global-ok option to
`terminal-getenv'.
* src/term.c (suspend-tty): Update doc string.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-456
2005-12-22 21:02:45 +00:00
|
|
|
(define-key electric-history-map "\C-z" 'suspend-frame)
|
1992-08-03 22:07:34 +00:00
|
|
|
(define-key electric-history-map (char-to-string help-char) 'Helper-help)
|
1991-02-27 20:10:09 +00:00
|
|
|
(define-key electric-history-map "?" 'Helper-describe-bindings)
|
|
|
|
(define-key electric-history-map "\e>" 'end-of-buffer)
|
|
|
|
(define-key electric-history-map "\e<" 'beginning-of-buffer)
|
|
|
|
(define-key electric-history-map "\n" 'next-line)
|
|
|
|
(define-key electric-history-map "\r" 'next-line)
|
2003-02-04 11:26:42 +00:00
|
|
|
(define-key electric-history-map "\177" 'previous-line)
|
1991-02-27 20:10:09 +00:00
|
|
|
(define-key electric-history-map "\C-n" 'next-line)
|
|
|
|
(define-key electric-history-map "\C-p" 'previous-line)
|
|
|
|
(define-key electric-history-map "\ev" 'scroll-down)
|
|
|
|
(define-key electric-history-map "\C-v" 'scroll-up)
|
1993-06-11 15:51:46 +00:00
|
|
|
(define-key electric-history-map [home] 'beginning-of-buffer)
|
|
|
|
(define-key electric-history-map [down] 'next-line)
|
|
|
|
(define-key electric-history-map [up] 'previous-line)
|
|
|
|
(define-key electric-history-map [prior] 'scroll-down)
|
|
|
|
(define-key electric-history-map [next] 'scroll-up)
|
1991-02-27 20:10:09 +00:00
|
|
|
(define-key electric-history-map "\C-l" 'recenter)
|
|
|
|
(define-key electric-history-map "\e\C-v" 'scroll-other-window))
|
|
|
|
|
|
|
|
(defvar electric-command-history-hook nil
|
|
|
|
"If non-nil, its value is called by `electric-command-history'.")
|
|
|
|
|
|
|
|
(defun electric-command-history ()
|
|
|
|
"\\<electric-history-map>Major mode for examining and redoing commands from `command-history'.
|
|
|
|
This pops up a window with the Command History listing.
|
|
|
|
The number of command listed is controlled by `list-command-history-max'.
|
|
|
|
The command history is filtered by `list-command-history-filter' if non-nil.
|
|
|
|
Combines typeout Command History list window with menu like selection
|
|
|
|
of an expression from the history for re-evaluation in the *original* buffer.
|
|
|
|
|
|
|
|
The history displayed is filtered by `list-command-history-filter' if non-nil.
|
|
|
|
|
|
|
|
Like Emacs-Lisp mode except that characters do not insert themselves and
|
|
|
|
Tab and Linefeed do not indent. Instead these commands are provided:
|
|
|
|
\\{electric-history-map}
|
|
|
|
|
|
|
|
Calls the value of `electric-command-history-hook' if that is non-nil.
|
|
|
|
The Command History listing is recomputed each time this mode is invoked."
|
|
|
|
(interactive)
|
|
|
|
(let ((electric-history-in-progress t)
|
|
|
|
(old-buffer (current-buffer))
|
|
|
|
(todo))
|
|
|
|
(unwind-protect
|
|
|
|
(setq todo
|
|
|
|
(catch 'electric-history-quit
|
|
|
|
(save-window-excursion
|
|
|
|
(save-window-excursion
|
|
|
|
(list-command-history)
|
|
|
|
(set-buffer "*Command History*")
|
1999-12-31 23:41:11 +00:00
|
|
|
(Command-history-setup)
|
|
|
|
(setq major-mode 'electric-command-history)
|
|
|
|
(setq mode-name "Electric History")
|
|
|
|
(use-local-map electric-history-map))
|
1991-02-27 20:10:09 +00:00
|
|
|
(Electric-pop-up-window "*Command History*")
|
|
|
|
(run-hooks 'electric-command-history-hook)
|
|
|
|
(if (eobp)
|
|
|
|
(progn (ding)
|
|
|
|
(message "No command history.")
|
|
|
|
(throw 'electric-history-quit nil))
|
|
|
|
(let ((Helper-return-blurb "return to History"))
|
|
|
|
(Electric-command-loop 'electric-history-quit
|
|
|
|
"->" t))))))
|
|
|
|
(set-buffer "*Command History*")
|
1999-12-31 23:41:11 +00:00
|
|
|
(command-history-mode)
|
1991-02-27 20:10:09 +00:00
|
|
|
(bury-buffer (current-buffer)))
|
|
|
|
(if (consp todo)
|
|
|
|
(progn (set-buffer old-buffer)
|
|
|
|
(if (car todo)
|
|
|
|
(apply (car (car (cdr todo))) (cdr (car (cdr todo))))
|
|
|
|
(edit-and-eval-command "Redo: " (car (cdr todo))))))))
|
|
|
|
|
|
|
|
(defun Electric-history-undefined ()
|
|
|
|
(interactive)
|
|
|
|
(ding)
|
2005-09-18 12:25:02 +00:00
|
|
|
(message "%s" (substitute-command-keys "Type \\[Helper-help] for help, ? for commands, C-c C-c to quit, Space to execute"))
|
1991-02-27 20:10:09 +00:00
|
|
|
(sit-for 4))
|
|
|
|
|
|
|
|
(defun Electric-history-quit ()
|
|
|
|
"Quit Electric Command History, restoring previous window configuration."
|
|
|
|
(interactive)
|
|
|
|
(if (boundp 'electric-history-in-progress)
|
|
|
|
(progn (message "")
|
|
|
|
(throw 'electric-history-quit nil))))
|
1992-05-30 23:54:21 +00:00
|
|
|
|
1997-06-22 18:57:55 +00:00
|
|
|
(provide 'echistory)
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
;;; arch-tag: 1e5018fe-190f-44a7-9109-a895dcac4c50
|
1992-05-30 23:54:21 +00:00
|
|
|
;;; echistory.el ends here
|