*** empty log message ***
[emacs.git] / lisp / gosmacs.el
blob7246959f3a5e4c036e8acf2dcf23613a0a5ca586
1 ;;; gosmacs.el --- rebindings to imitate Gosmacs.
3 ;; Copyright (C) 1986 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 1, or (at your option)
10 ;; any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 (defvar non-gosmacs-binding-alist nil)
24 ;;;###autoload
25 (defun set-gosmacs-bindings ()
26 "Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
27 Use \\[set-gnu-bindings] to restore previous global bindings."
28 (interactive)
29 (setq non-gosmacs-binding-alist
30 (rebind-and-record
31 '(("\C-x\C-e" compile)
32 ("\C-x\C-f" save-buffers-kill-emacs)
33 ("\C-x\C-i" insert-file)
34 ("\C-x\C-m" save-some-buffers)
35 ("\C-x\C-n" next-error)
36 ("\C-x\C-o" switch-to-buffer)
37 ("\C-x\C-r" insert-file)
38 ("\C-x\C-u" undo)
39 ("\C-x\C-v" find-file-other-window)
40 ("\C-x\C-z" shrink-window)
41 ("\C-x!" shell-command)
42 ("\C-xd" delete-window)
43 ("\C-xn" gosmacs-next-window)
44 ("\C-xp" gosmacs-previous-window)
45 ("\C-xz" enlarge-window)
46 ("\C-z" scroll-one-line-up)
47 ("\e\C-c" save-buffers-kill-emacs)
48 ("\e!" line-to-top-of-window)
49 ("\e(" backward-paragraph)
50 ("\e)" forward-paragraph)
51 ("\e?" apropos)
52 ("\eh" delete-previous-word)
53 ("\ej" indent-sexp)
54 ("\eq" query-replace)
55 ("\er" replace-string)
56 ("\ez" scroll-one-line-down)
57 ("\C-_" suspend-emacs)))))
59 (defun rebind-and-record (bindings)
60 "Establish many new global bindings and record the bindings replaced.
61 Arg BINDINGS is an alist whose elements are (KEY DEFINITION).
62 Returns a similar alist whose elements describe the same KEYs
63 but each with the old definition that was replaced,"
64 (let (old)
65 (while bindings
66 (let* ((this (car bindings))
67 (key (car this))
68 (newdef (nth 1 this)))
69 (setq old (cons (list key (lookup-key global-map key)) old))
70 (global-set-key key newdef))
71 (setq bindings (cdr bindings)))
72 (nreverse old)))
74 (defun set-gnu-bindings ()
75 "Restore the global bindings that were changed by \\[set-gosmacs-bindings]."
76 (interactive)
77 (rebind-and-record non-gosmacs-binding-alist))
79 (defun gosmacs-previous-window ()
80 "Select the window above or to the left of the window now selected.
81 From the window at the upper left corner, select the one at the lower right."
82 (interactive)
83 (select-window (previous-window)))
85 (defun gosmacs-next-window ()
86 "Select the window below or to the right of the window now selected.
87 From the window at the lower right corner, select the one at the upper left."
88 (interactive)
89 (select-window (next-window)))
91 (defun scroll-one-line-up (&optional arg)
92 "Scroll the selected window up (forward in the text) one line (or N lines)."
93 (interactive "p")
94 (scroll-up (or arg 1)))
96 (defun scroll-one-line-down (&optional arg)
97 "Scroll the selected window down (backward in the text) one line (or N)."
98 (interactive "p")
99 (scroll-down (or arg 1)))
101 (defun line-to-top-of-window ()
102 "Scroll the selected window up so that the current line is at the top."
103 (interactive)
104 (recenter 0))
106 ;;; gosmacs.el ends here