11808
|
1 ;;; x-apollo.el --- Apollo support functions
|
|
2 ;; Copyright (C) 1995 Free Software Foundation, Inc.
|
|
3
|
|
4 ;;; This file is part of GNU Emacs.
|
|
5 ;;;
|
|
6 ;;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
7 ;;; it under the terms of the GNU General Public License as published by
|
|
8 ;;; the Free Software Foundation; either version 2, or (at your option)
|
|
9 ;;; any later version.
|
|
10 ;;;
|
|
11 ;;; GNU Emacs is distributed in the hope that it will be useful,
|
|
12 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 ;;; GNU General Public License for more details.
|
|
15 ;;;
|
|
16 ;;; You should have received a copy of the GNU General Public License
|
|
17 ;;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
18 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
19
|
|
20 ;;; Code:
|
|
21
|
|
22 (defun apollo-kill-entire-line ()
|
|
23 "Kill the entire line containing point."
|
|
24 (interactive)
|
|
25 (beginning-of-line)
|
|
26 (kill-line 1))
|
|
27
|
|
28 (defun apollo-scroll-window-right ()
|
|
29 "Scroll window to right ten columns."
|
|
30 (interactive)
|
|
31 (scroll-left 10))
|
|
32
|
|
33 (defun apollo-scroll-window-left ()
|
|
34 "Scroll window to left ten columns."
|
|
35 (interactive)
|
|
36 (scroll-right 10))
|
|
37
|
|
38 (defun apollo-scroll-window-forward-line ()
|
|
39 "Move window forward one line leaving cursor at position in window."
|
|
40 (interactive)
|
|
41 (scroll-up 1))
|
|
42
|
|
43 (defun apollo-scroll-window-backward-line ()
|
|
44 "Move window backward one line leaving cursor at position in window."
|
|
45 (interactive)
|
|
46 (scroll-down 1))
|
|
47
|
|
48 ;;; Define and Enable the Function Key Bindings.
|
|
49
|
|
50 (global-set-key [S-tab] "\C-i") ;Shift TAB
|
|
51 (global-set-key [C-tab] "\C-i") ;Control TAB
|
|
52 (global-set-key [S-return] "\C-m") ;Shift RET
|
|
53 (global-set-key [C-return] "\C-m") ;Control RET
|
|
54 (global-set-key [linedel] 'apollo-kill-entire-line) ;LINE DEL
|
|
55 (global-set-key [chardel] 'delete-char) ;CHAR DEL
|
|
56 (global-set-key [leftbar] 'beginning-of-line) ;LEFT BAR ARROW
|
|
57 (global-set-key [rightbar] 'end-of-line) ;RIGHT BAR ARROW
|
|
58 (global-set-key [leftbox] 'apollo-scroll-window-left) ;LEFT BOX ARROW
|
|
59 (global-set-key [rightbox] 'apollo-scroll-window-right) ;RIGHT BOX ARROW
|
|
60 (global-set-key [S-up] 'apollo-scroll-window-backward-line) ;Shift UP ARROW
|
|
61 (global-set-key [S-down] 'apollo-scroll-window-forward-line) ;Shift DOWN ARROW
|
|
62 (global-set-key [select] 'set-mark-command) ;MARK
|
|
63 (global-set-key [S-insert] 'overwrite-mode) ;INS MODE
|
|
64 (global-set-key [S-linedel] 'yank) ;Shift LINE DEL
|
|
65 (global-set-key [S-chardel] 'delete-char) ;Shift CHAR DEL
|
|
66 (global-set-key [copy] 'copy-region-as-kill) ;COPY
|
|
67 (global-set-key [S-cut] 'kill-region) ;CUT
|
|
68 (global-set-key [paste] 'yank) ;PASTE
|
|
69 (global-set-key [S-undo] 'undo) ;UNDO
|
|
70 (global-set-key [S-left] 'backward-word) ;Shift LEFT ARROW
|
|
71 (global-set-key [S-right] 'forward-word) ;Shift RIGHT ARROW
|
|
72 (global-set-key [upbox] 'scroll-down) ;UP BOX ARROW
|
|
73 (global-set-key [S-upbox] 'beginning-of-buffer) ;Shift UP BOX ARROW
|
|
74 (global-set-key [downbox] 'scroll-up) ;DOWN BOX ARROW
|
|
75 (global-set-key [S-downbox] 'end-of-buffer) ;Shift DOWN BOX ARROW
|
|
76 (global-set-key [S-redo] 'toggle-read-only) ;Shift AGAIN
|
|
77 (global-set-key [exit] 'save-buffer) ;EXIT
|
|
78 (global-set-key [S-cancel] 'kill-buffer) ;ABORT
|
|
79 (global-set-key [S-save] 'save-buffer) ;SAVE
|
|
80 (global-set-key [S-leftbar] 'beginning-of-buffer) ;Shift LEFT BAR ARROW
|
|
81 (global-set-key [cmd] 'execute-extended-command) ;CMD
|
|
82 (global-set-key [S-rightbar] 'end-of-buffer) ;Shift RIGHT BAR ARROW
|
|
83 (global-set-key [next] 'other-window) ;NEXT WNDW
|
|
84 (global-set-key [S-next] 'delete-window) ;Shift NEXT WNDW
|
|
85 (global-set-key [read] 'find-file-read-only) ;READ
|
|
86 (global-set-key [edit] 'find-file) ;EDIT
|
|
87 (global-set-key [S-shell] 'shell) ;SHELL
|
|
88 (global-set-key [S-help] 'manual-entry) ;HELP
|