Mercurial > emacs
annotate lisp/term/sun.el @ 86851:321f32eb4bf5
* erc.el (open-ssl-stream, open-tls-stream, erc-network-name):
Declare as functions.
* textmodes/reftex-index.el (texmathp):
* textmodes/reftex-auc.el (TeX-argument-insert)
(TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
(LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
(LaTeX-label-list):
* nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
(rng-clear-conditional-region, rng-do-some-validation): Declare as
functions.
(rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Fri, 30 Nov 2007 08:12:58 +0000 |
parents | 56cec281e296 |
children | 107ccd98fa12 880960b70474 |
rev | line source |
---|---|
17517 | 1 ;;; sun.el --- keybinding for standard default sunterm keys |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
2 |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64651
diff
changeset
|
3 ;; Copyright (C) 1987, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
14170 | 5 |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
6 ;; Author: Jeff Peck <peck@sun.com> |
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
7 ;; Keywords: terminals |
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
8 |
14170 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78226
030ae62d5c57
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
14170 | 14 ;; any later version. |
466 | 15 |
14170 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64084 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
466 | 25 |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
26 ;;; Commentary: |
466 | 27 |
28 ;; The function key sequences for the console have been converted for | |
29 ;; use with function-key-map, but the *tool stuff hasn't been touched. | |
30 | |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
31 ;;; Code: |
466 | 32 |
33 (defun scroll-down-in-place (n) | |
34 (interactive "p") | |
84795
6aed7b3522e4
* term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84728
diff
changeset
|
35 (forward-line (- n)) |
466 | 36 (scroll-down n)) |
37 | |
38 (defun scroll-up-in-place (n) | |
39 (interactive "p") | |
84795
6aed7b3522e4
* term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84728
diff
changeset
|
40 (forward-line n) |
466 | 41 (scroll-up n)) |
42 | |
43 (defun kill-region-and-unmark (beg end) | |
44 "Like kill-region, but pops the mark [which equals point, anyway.]" | |
45 (interactive "r") | |
46 (kill-region beg end) | |
47 (setq this-command 'kill-region-and-unmark) | |
48 (set-mark-command t)) | |
49 | |
50 (defun rerun-prev-command () | |
51 "Repeat Previous-complex-command." | |
52 (interactive) | |
53 (eval (nth 0 command-history))) | |
54 | |
55 (defvar grep-arg nil "Default arg for RE-search") | |
56 (defun grep-arg () | |
57 (if (memq last-command '(research-forward research-backward)) grep-arg | |
58 (let* ((command (car command-history)) | |
59 (command-name (symbol-name (car command))) | |
60 (search-arg (car (cdr command))) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38475
diff
changeset
|
61 (search-command |
466 | 62 (and command-name (string-match "search" command-name))) |
63 ) | |
64 (if (and search-command (stringp search-arg)) (setq grep-arg search-arg) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38475
diff
changeset
|
65 (setq search-command this-command |
466 | 66 grep-arg (read-string "REsearch: " grep-arg) |
67 this-command search-command) | |
68 grep-arg)))) | |
69 | |
70 (defun research-forward () | |
71 "Repeat RE search forward." | |
72 (interactive) | |
73 (re-search-forward (grep-arg))) | |
74 | |
75 (defun research-backward () | |
76 "Repeat RE search backward." | |
77 (interactive) | |
78 (re-search-backward (grep-arg))) | |
79 | |
38475
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
80 ;; |
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
81 ;; handle sun's extra function keys |
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
82 ;; this version for those who run with standard .ttyswrc and no emacstool |
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
83 ;; |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38475
diff
changeset
|
84 ;; sunview picks up expose and open on the way UP, |
38475
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
85 ;; so we ignore them on the way down |
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
86 ;; |
466 | 87 |
85548
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
88 (defvar sun-raw-prefix |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
89 (let ((map (make-sparse-keymap))) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
90 (define-key map "210z" [r3]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
91 (define-key map "213z" [r6]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
92 (define-key map "214z" [r7]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
93 (define-key map "216z" [r9]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
94 (define-key map "218z" [r11]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
95 (define-key map "220z" [r13]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
96 (define-key map "222z" [r15]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
97 (define-key map "193z" [redo]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
98 (define-key map "194z" [props]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
99 (define-key map "195z" [undo]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
100 ;; (define-key map "196z" 'ignore) ; Expose-down |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
101 ;; (define-key map "197z" [put]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
102 ;; (define-key map "198z" 'ignore) ; Open-down |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
103 ;; (define-key map "199z" [get]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
104 (define-key map "200z" [find]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
105 ;; (define-key map "201z" 'kill-region-and-unmark) ; Delete |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
106 (define-key map "224z" [f1]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
107 (define-key map "225z" [f2]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
108 (define-key map "226z" [f3]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
109 (define-key map "227z" [f4]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
110 (define-key map "228z" [f5]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
111 (define-key map "229z" [f6]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
112 (define-key map "230z" [f7]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
113 (define-key map "231z" [f8]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
114 (define-key map "232z" [f9]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
115 (define-key map "233z" [f10]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
116 (define-key map "234z" [f11]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
117 (define-key map "235z" [f12]) |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
118 (define-key map "A" [up]) ; R8 |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
119 (define-key map "B" [down]) ; R14 |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
120 (define-key map "C" [right]) ; R12 |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
121 (define-key map "D" [left]) ; R10 |
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
122 map)) |
466 | 123 |
38475
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
124 ;; Since .emacs gets loaded before this file, a hook is supplied |
916f157c7118
(ignore-key, sun-esc-bracket, meta-flag): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
17517
diff
changeset
|
125 ;; for you to put your own bindings in. |
466 | 126 |
498 | 127 (defvar sun-raw-prefix-hooks nil |
128 "List of forms to evaluate after setting sun-raw-prefix.") | |
466 | 129 |
130 | |
131 | |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
132 (defun terminal-init-sun () |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
133 "Terminal initialization function for sun." |
85548
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
134 (define-key input-decode-map "\e[" sun-raw-prefix) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
135 |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
136 (global-set-key [r3] 'backward-page) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
137 (global-set-key [r6] 'forward-page) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
138 (global-set-key [r7] 'beginning-of-buffer) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
139 (global-set-key [r9] 'scroll-down) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
140 (global-set-key [r11] 'recenter) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
141 (global-set-key [r13] 'end-of-buffer) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
142 (global-set-key [r15] 'scroll-up) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
143 (global-set-key [redo] 'redraw-display) ;FIXME: collides with default. |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
144 (global-set-key [props] 'list-buffers) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
145 (global-set-key [put] 'sun-select-region) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
146 (global-set-key [get] 'sun-yank-selection) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
147 (global-set-key [find] 'exchange-point-and-mark) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
148 (global-set-key [f3] 'scroll-down-in-place) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
149 (global-set-key [f4] 'scroll-up-in-place) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
150 (global-set-key [f6] 'shrink-window) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
151 (global-set-key [f7] 'enlarge-window) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
152 |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
153 (when sun-raw-prefix-hooks |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
154 (message "sun-raw-prefix-hooks is obsolete! Use term-setup-hook instead!") |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
155 (let ((hooks sun-raw-prefix-hooks)) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
156 (while hooks |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
157 (eval (car hooks)) |
84728
04f556b17d19
Remove emacstool-related code.
Glenn Morris <rgm@gnu.org>
parents:
83648
diff
changeset
|
158 (setq hooks (cdr hooks)))))) |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
159 |
85548
a91afd109e55
(sun-raw-prefix): Fill as part of declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84795
diff
changeset
|
160 ;; arch-tag: db761d47-fd7d-42b4-aae1-04fa116b6ba6 |
2140
c049f2ca31f6
Added headers, removed function-key bindings.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
498
diff
changeset
|
161 ;;; sun.el ends here |