Mercurial > emacs
annotate lisp/=gosmacs.el @ 1273:bbf7e139412b
(compilation-parse-errors): After we get enough errors to stop early, toss
the last one (which is for a different file), so we don't lose
the same way on the next run.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Wed, 30 Sep 1992 01:45:47 +0000 |
parents | 213978acbc1e |
children | 04c20bc7f34c |
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 |
845 | 3 ;; Copyright (C) 1986 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: emulations |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
24 ;;; Code: |
36 | 25 |
26 (defvar non-gosmacs-binding-alist nil) | |
27 | |
258 | 28 ;;;###autoload |
36 | 29 (defun set-gosmacs-bindings () |
30 "Rebind some keys globally to make GNU Emacs resemble Gosling Emacs. | |
31 Use \\[set-gnu-bindings] to restore previous global bindings." | |
32 (interactive) | |
33 (setq non-gosmacs-binding-alist | |
34 (rebind-and-record | |
35 '(("\C-x\C-e" compile) | |
36 ("\C-x\C-f" save-buffers-kill-emacs) | |
37 ("\C-x\C-i" insert-file) | |
38 ("\C-x\C-m" save-some-buffers) | |
39 ("\C-x\C-n" next-error) | |
40 ("\C-x\C-o" switch-to-buffer) | |
41 ("\C-x\C-r" insert-file) | |
42 ("\C-x\C-u" undo) | |
43 ("\C-x\C-v" find-file-other-window) | |
44 ("\C-x\C-z" shrink-window) | |
45 ("\C-x!" shell-command) | |
46 ("\C-xd" delete-window) | |
47 ("\C-xn" gosmacs-next-window) | |
48 ("\C-xp" gosmacs-previous-window) | |
49 ("\C-xz" enlarge-window) | |
50 ("\C-z" scroll-one-line-up) | |
51 ("\e\C-c" save-buffers-kill-emacs) | |
52 ("\e!" line-to-top-of-window) | |
53 ("\e(" backward-paragraph) | |
54 ("\e)" forward-paragraph) | |
55 ("\e?" apropos) | |
56 ("\eh" delete-previous-word) | |
57 ("\ej" indent-sexp) | |
58 ("\eq" query-replace) | |
59 ("\er" replace-string) | |
60 ("\ez" scroll-one-line-down) | |
61 ("\C-_" suspend-emacs))))) | |
62 | |
63 (defun rebind-and-record (bindings) | |
64 "Establish many new global bindings and record the bindings replaced. | |
208 | 65 Arg BINDINGS is an alist whose elements are (KEY DEFINITION). |
66 Returns a similar alist whose elements describe the same KEYs | |
36 | 67 but each with the old definition that was replaced," |
68 (let (old) | |
69 (while bindings | |
70 (let* ((this (car bindings)) | |
71 (key (car this)) | |
72 (newdef (nth 1 this))) | |
73 (setq old (cons (list key (lookup-key global-map key)) old)) | |
74 (global-set-key key newdef)) | |
75 (setq bindings (cdr bindings))) | |
76 (nreverse old))) | |
77 | |
78 (defun set-gnu-bindings () | |
79 "Restore the global bindings that were changed by \\[set-gosmacs-bindings]." | |
80 (interactive) | |
81 (rebind-and-record non-gosmacs-binding-alist)) | |
82 | |
83 (defun gosmacs-previous-window () | |
84 "Select the window above or to the left of the window now selected. | |
85 From the window at the upper left corner, select the one at the lower right." | |
86 (interactive) | |
87 (select-window (previous-window))) | |
88 | |
89 (defun gosmacs-next-window () | |
90 "Select the window below or to the right of the window now selected. | |
91 From the window at the lower right corner, select the one at the upper left." | |
92 (interactive) | |
93 (select-window (next-window))) | |
94 | |
95 (defun scroll-one-line-up (&optional arg) | |
96 "Scroll the selected window up (forward in the text) one line (or N lines)." | |
97 (interactive "p") | |
98 (scroll-up (or arg 1))) | |
99 | |
100 (defun scroll-one-line-down (&optional arg) | |
101 "Scroll the selected window down (backward in the text) one line (or N)." | |
102 (interactive "p") | |
103 (scroll-down (or arg 1))) | |
104 | |
105 (defun line-to-top-of-window () | |
106 "Scroll the selected window up so that the current line is at the top." | |
107 (interactive) | |
108 (recenter 0)) | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
109 |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
110 ;;; gosmacs.el ends here |