Mercurial > emacs
annotate lisp/=gosmacs.el @ 2053:8bdcc55ebd8f
(Qmodification_hooks): Renamed from Qmodification.
(syms_of_textprop): Changed accordingly.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Mar 1993 09:35:31 +0000 |
parents | 1354a2911d11 |
children | 10e417efb12a |
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 |
1864
1354a2911d11
* gosmacs.el: Bind M-h to delete-previous-word, not
Jim Blandy <jimb@redhat.com>
parents:
1850
diff
changeset
|
26 (require 'mlsupport) |
1354a2911d11
* gosmacs.el: Bind M-h to delete-previous-word, not
Jim Blandy <jimb@redhat.com>
parents:
1850
diff
changeset
|
27 |
36 | 28 (defvar non-gosmacs-binding-alist nil) |
29 | |
258 | 30 ;;;###autoload |
36 | 31 (defun set-gosmacs-bindings () |
32 "Rebind some keys globally to make GNU Emacs resemble Gosling Emacs. | |
33 Use \\[set-gnu-bindings] to restore previous global bindings." | |
34 (interactive) | |
35 (setq non-gosmacs-binding-alist | |
36 (rebind-and-record | |
37 '(("\C-x\C-e" compile) | |
38 ("\C-x\C-f" save-buffers-kill-emacs) | |
39 ("\C-x\C-i" insert-file) | |
40 ("\C-x\C-m" save-some-buffers) | |
41 ("\C-x\C-n" next-error) | |
42 ("\C-x\C-o" switch-to-buffer) | |
43 ("\C-x\C-r" insert-file) | |
44 ("\C-x\C-u" undo) | |
45 ("\C-x\C-v" find-file-other-window) | |
46 ("\C-x\C-z" shrink-window) | |
47 ("\C-x!" shell-command) | |
48 ("\C-xd" delete-window) | |
49 ("\C-xn" gosmacs-next-window) | |
50 ("\C-xp" gosmacs-previous-window) | |
51 ("\C-xz" enlarge-window) | |
52 ("\C-z" scroll-one-line-up) | |
53 ("\e\C-c" save-buffers-kill-emacs) | |
54 ("\e!" line-to-top-of-window) | |
55 ("\e(" backward-paragraph) | |
56 ("\e)" forward-paragraph) | |
57 ("\e?" apropos) | |
1864
1354a2911d11
* gosmacs.el: Bind M-h to delete-previous-word, not
Jim Blandy <jimb@redhat.com>
parents:
1850
diff
changeset
|
58 ("\eh" delete-previous-word) |
36 | 59 ("\ej" indent-sexp) |
60 ("\eq" query-replace) | |
61 ("\er" replace-string) | |
62 ("\ez" scroll-one-line-down) | |
63 ("\C-_" suspend-emacs))))) | |
64 | |
65 (defun rebind-and-record (bindings) | |
66 "Establish many new global bindings and record the bindings replaced. | |
208 | 67 Arg BINDINGS is an alist whose elements are (KEY DEFINITION). |
68 Returns a similar alist whose elements describe the same KEYs | |
36 | 69 but each with the old definition that was replaced," |
70 (let (old) | |
71 (while bindings | |
72 (let* ((this (car bindings)) | |
73 (key (car this)) | |
74 (newdef (nth 1 this))) | |
75 (setq old (cons (list key (lookup-key global-map key)) old)) | |
76 (global-set-key key newdef)) | |
77 (setq bindings (cdr bindings))) | |
78 (nreverse old))) | |
79 | |
80 (defun set-gnu-bindings () | |
81 "Restore the global bindings that were changed by \\[set-gosmacs-bindings]." | |
82 (interactive) | |
83 (rebind-and-record non-gosmacs-binding-alist)) | |
84 | |
85 (defun gosmacs-previous-window () | |
86 "Select the window above or to the left of the window now selected. | |
87 From the window at the upper left corner, select the one at the lower right." | |
88 (interactive) | |
89 (select-window (previous-window))) | |
90 | |
91 (defun gosmacs-next-window () | |
92 "Select the window below or to the right of the window now selected. | |
93 From the window at the lower right corner, select the one at the upper left." | |
94 (interactive) | |
95 (select-window (next-window))) | |
96 | |
97 (defun scroll-one-line-up (&optional arg) | |
98 "Scroll the selected window up (forward in the text) one line (or N lines)." | |
99 (interactive "p") | |
100 (scroll-up (or arg 1))) | |
101 | |
102 (defun scroll-one-line-down (&optional arg) | |
103 "Scroll the selected window down (backward in the text) one line (or N)." | |
104 (interactive "p") | |
105 (scroll-down (or arg 1))) | |
106 | |
107 (defun line-to-top-of-window () | |
108 "Scroll the selected window up so that the current line is at the top." | |
109 (interactive) | |
110 (recenter 0)) | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
111 |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
112 ;;; gosmacs.el ends here |