Mercurial > emacs
annotate lisp/=gosmacs.el @ 805:10f8af91ab47
Initial revision
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Thu, 16 Jul 1992 21:46:36 +0000 |
parents | 08eb386dd0f3 |
children | 4f28bd14272c |
rev | line source |
---|---|
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; gosmacs.el --- rebindings to imitate Gosmacs. |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
36 | 3 ;; Copyright (C) 1986 Free Software Foundation, Inc. |
4 | |
5 ;; This file is part of GNU Emacs. | |
6 | |
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. | |
11 | |
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. | |
16 | |
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. | |
20 | |
21 | |
22 (defvar non-gosmacs-binding-alist nil) | |
23 | |
258 | 24 ;;;###autoload |
36 | 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))))) | |
58 | |
59 (defun rebind-and-record (bindings) | |
60 "Establish many new global bindings and record the bindings replaced. | |
208 | 61 Arg BINDINGS is an alist whose elements are (KEY DEFINITION). |
62 Returns a similar alist whose elements describe the same KEYs | |
36 | 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))) | |
73 | |
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)) | |
78 | |
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))) | |
84 | |
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))) | |
90 | |
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))) | |
95 | |
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))) | |
100 | |
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)) | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
105 |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
106 ;;; gosmacs.el ends here |