Mercurial > emacs
annotate lisp/term/rxvt.el @ 99378:e2dea54cb619
* xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 04 Nov 2008 16:46:54 +0000 |
parents | f3ab0c2464f5 |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
42945 | 1 ;;; rxvt.el --- define function key sequences and standard colors for rxvt |
2 | |
79718 | 3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
42945 | 4 |
5 ;; Author: Eli Zaretskii | |
6 ;; Keywords: terminals | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
94671
f3ab0c2464f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
42945 | 11 ;; it under the terms of the GNU General Public License as published by |
94671
f3ab0c2464f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
f3ab0c2464f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
13 ;; (at your option) any later version. |
42945 | 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 | |
94671
f3ab0c2464f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
42945 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;;; Code: | |
26 | |
84510
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
27 (defvar rxvt-function-map |
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
28 (let ((map (make-sparse-keymap))) |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
29 |
85109
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
30 ;; Set up input-decode-map entries that termcap and terminfo don't know. |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
31 (define-key map "\e[A" [up]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
32 (define-key map "\e[B" [down]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
33 (define-key map "\e[C" [right]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
34 (define-key map "\e[D" [left]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
35 (define-key map "\e[2~" [insert]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
36 (define-key map "\e[3~" [delete]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
37 (define-key map "\e[4~" [select]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
38 (define-key map "\e[5~" [prior]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
39 (define-key map "\e[6~" [next]) |
65621
e1327485f073
(terminal-init-rxvt): Add entry for [end].
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64701
diff
changeset
|
40 (define-key map "\e[7~" [home]) |
e1327485f073
(terminal-init-rxvt): Add entry for [end].
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64701
diff
changeset
|
41 (define-key map "\e[8~" [end]) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
42 (define-key map "\e[11~" [f1]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
43 (define-key map "\e[12~" [f2]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
44 (define-key map "\e[13~" [f3]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
45 (define-key map "\e[14~" [f4]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
46 (define-key map "\e[15~" [f5]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
47 (define-key map "\e[17~" [f6]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
48 (define-key map "\e[18~" [f7]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
49 (define-key map "\e[19~" [f8]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
50 (define-key map "\e[20~" [f9]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
51 (define-key map "\e[21~" [f10]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
52 ;; The strings emitted by f11 and f12 are the same as the strings |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
53 ;; emitted by S-f1 and S-f2, so don't define f11 and f12. |
84510
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
54 ;; (define-key rxvt-function-map "\e[23~" [f11]) |
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
55 ;; (define-key rxvt-function-map "\e[24~" [f12]) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
56 (define-key map "\e[29~" [print]) |
42945 | 57 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
58 (define-key map "\e[11^" [C-f1]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
59 (define-key map "\e[12^" [C-f2]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
60 (define-key map "\e[13^" [C-f3]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
61 (define-key map "\e[14^" [C-f4]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
62 (define-key map "\e[15^" [C-f5]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
63 (define-key map "\e[17^" [C-f6]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
64 (define-key map "\e[18^" [C-f7]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
65 (define-key map "\e[19^" [C-f8]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
66 (define-key map "\e[20^" [C-f9]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
67 (define-key map "\e[21^" [C-f10]) |
42945 | 68 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
69 (define-key map "\e[23~" [S-f1]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
70 (define-key map "\e[24~" [S-f2]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
71 (define-key map "\e[25~" [S-f3]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
72 (define-key map "\e[26~" [S-f4]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
73 (define-key map "\e[28~" [S-f5]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
74 (define-key map "\e[29~" [S-f6]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
75 (define-key map "\e[31~" [S-f7]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
76 (define-key map "\e[32~" [S-f8]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
77 (define-key map "\e[33~" [S-f9]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
78 (define-key map "\e[34~" [S-f10]) |
42945 | 79 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
80 (define-key map "\e[23^" [C-S-f1]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
81 (define-key map "\e[24^" [C-S-f2]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
82 (define-key map "\e[25^" [C-S-f3]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
83 (define-key map "\e[26^" [C-S-f4]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
84 (define-key map "\e[28^" [C-S-f5]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
85 (define-key map "\e[29^" [C-S-f6]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
86 (define-key map "\e[31^" [C-S-f7]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
87 (define-key map "\e[32^" [C-S-f8]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
88 (define-key map "\e[33^" [C-S-f9]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
89 (define-key map "\e[34^" [C-S-f10]) |
42945 | 90 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
91 (define-key map "\e[2^" [C-insert]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
92 (define-key map "\e[3^" [C-delete]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
93 (define-key map "\e[5^" [C-prior]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
94 (define-key map "\e[6^" [C-next]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
95 (define-key map "\e[7^" [C-home]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
96 (define-key map "\e[8^" [C-end]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
97 (define-key map "\eOd" [C-left]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
98 (define-key map "\eOc" [C-right]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
99 (define-key map "\eOa" [C-up]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
100 (define-key map "\eOb" [C-down]) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42962
diff
changeset
|
101 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
102 (define-key map "\e[2;2~" [S-insert]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
103 (define-key map "\e[3$" [S-delete]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
104 (define-key map "\e[5$" [S-prior]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
105 (define-key map "\e[6$" [S-next]) |
65650
c30fdfca087f
Fix minor mis-ordering.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65639
diff
changeset
|
106 (define-key map "\e[7$" [S-home]) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
107 (define-key map "\e[8$" [S-end]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
108 (define-key map "\e[d" [S-left]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
109 (define-key map "\e[c" [S-right]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
110 (define-key map "\e[a" [S-up]) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
111 (define-key map "\e[b" [S-down]) |
84510
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
112 map) |
83341575ba12
* term/xterm.el (xterm-function-map): Add bindings for M-S- and
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83648
diff
changeset
|
113 "Function key overrides for rxvt.") |
42945 | 114 |
85109
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
115 (defvar rxvt-alternatives-map |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
116 (let ((map (make-sparse-keymap))) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
117 ;; The terminal intialization C code file might have initialized |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
118 ;; function keys F11->F42 from the termcap/terminfo information. On |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
119 ;; a PC-style keyboard these keys correspond to |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
120 ;; MODIFIER-FUNCTION_KEY, where modifier is S-, C-, C-S-. The |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
121 ;; code here subsitutes the corresponding defintions in |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
122 ;; function-key-map. This substitution is needed because if a key |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
123 ;; definition if found in function-key-map, there are no further |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
124 ;; lookups in other keymaps. |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
125 (define-key map [f11] [S-f1]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
126 (define-key map [f12] [S-f2]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
127 (define-key map [f13] [S-f3]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
128 (define-key map [f14] [S-f4]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
129 (define-key map [f15] [S-f5]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
130 (define-key map [f16] [S-f6]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
131 (define-key map [f17] [S-f7]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
132 (define-key map [f18] [S-f8]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
133 (define-key map [f19] [S-f9]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
134 (define-key map [f20] [S-f10]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
135 |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
136 (define-key map [f23] [C-f1]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
137 (define-key map [f24] [C-f2]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
138 (define-key map [f25] [C-f3]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
139 (define-key map [f26] [C-f4]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
140 (define-key map [f27] [C-f5]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
141 (define-key map [f28] [C-f6]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
142 (define-key map [f29] [C-f7]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
143 (define-key map [f30] [C-f8]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
144 (define-key map [f31] [C-f9]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
145 (define-key map [f32] [C-f10]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
146 |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
147 (define-key map [f33] [C-S-f1]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
148 (define-key map [f34] [C-S-f2]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
149 (define-key map [f35] [C-S-f3]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
150 (define-key map [f36] [C-S-f4]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
151 (define-key map [f37] [C-S-f5]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
152 (define-key map [f38] [C-S-f6]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
153 (define-key map [f39] [C-S-f7]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
154 (define-key map [f40] [C-S-f8]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
155 (define-key map [f41] [C-S-f9]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
156 (define-key map [f42] [C-S-f10]) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
157 map) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
158 "Keymap of possible alternative meanings for some keys.") |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
159 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
160 (defun terminal-init-rxvt () |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
161 "Terminal initialization function for rxvt." |
42945 | 162 |
85109
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
163 (let ((map (copy-keymap rxvt-alternatives-map))) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
164 (set-keymap-parent map (keymap-parent local-function-key-map)) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
165 (set-keymap-parent local-function-key-map map)) |
42945 | 166 |
83524
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
167 ;; Use inheritance to let the main keymap override those defaults. |
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
168 ;; This way we don't override terminfo-derived settings or settings |
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
169 ;; made in the .emacs file. |
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
170 (let ((m (copy-keymap rxvt-function-map))) |
85109
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
171 (set-keymap-parent m (keymap-parent input-decode-map)) |
ee1411f40132
(rxvt-alternatives-map): New map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84510
diff
changeset
|
172 (set-keymap-parent input-decode-map m)) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
173 |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
174 ;; Initialize colors and background mode. |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
175 (rxvt-register-default-colors) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
176 (rxvt-set-background-mode) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
177 ;; This recomputes all the default faces given the colors we've just set up. |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
178 (tty-set-up-initial-frame-faces)) |
42945 | 179 |
180 ;; Set up colors, for those versions of rxvt that support it. | |
181 (defvar rxvt-standard-colors | |
182 ;; The names of the colors in the comments taken from the rxvt.1 man | |
42962 | 183 ;; page; the corresponding RGB values--from rgb.txt. |
42945 | 184 '(("black" 0 ( 0 0 0)) ; black |
185 ("red" 1 (205 0 0)) ; red3 | |
186 ("green" 2 ( 0 205 0)) ; green3 | |
187 ("yellow" 3 (205 205 0)) ; yellow3 | |
188 ("blue" 4 ( 0 0 205)) ; blue3 | |
189 ("magenta" 5 (205 0 205)) ; magenta3 | |
190 ("cyan" 6 ( 0 205 205)) ; cyan3 | |
65639
f552d54d9430
(rxvt-standard-colors): Fix some colors.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65621
diff
changeset
|
191 ("white" 7 (229 229 229)) ; gray90 |
f552d54d9430
(rxvt-standard-colors): Fix some colors.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65621
diff
changeset
|
192 ("brightblack" 8 ( 77 77 77)) ; gray30 |
42945 | 193 ("brightred" 9 (255 0 0)) ; red |
194 ("brightgreen" 10 ( 0 255 0)) ; green | |
195 ("brightyellow" 11 (255 255 0)) ; yellow | |
196 ("brightblue" 12 ( 0 0 255)) ; blue | |
197 ("brightmagenta" 13 (255 0 255)) ; magenta | |
198 ("brightcyan" 14 ( 0 255 255)) ; cyan | |
199 ("brightwhite" 15 (255 255 255))) ; white | |
200 "Names of 16 standard rxvt colors, their numbers, and RGB values.") | |
201 | |
202 (defun rxvt-rgb-convert-to-16bit (prim) | |
203 "Convert an 8-bit primary color value PRIM to a corresponding 16-bit value." | |
204 (min 65535 (round (* (/ prim 255.0) 65535.0)))) | |
205 | |
206 (defun rxvt-register-default-colors () | |
207 "Register the default set of colors for rxvt or compatible emulator. | |
208 | |
209 This function registers the number of colors returned by `display-color-cells' | |
210 for the currently selected frame." | |
211 (let* ((ncolors (display-color-cells)) | |
212 (colors rxvt-standard-colors) | |
213 (color (car colors))) | |
214 (if (> ncolors 0) | |
215 ;; Clear the 8 default tty colors registered by startup.el | |
216 (tty-color-clear)) | |
217 ;; Only register as many colors as are supported by the display. | |
218 (while (and (> ncolors 0) colors) | |
219 (tty-color-define (car color) (cadr color) | |
220 (mapcar 'rxvt-rgb-convert-to-16bit | |
221 (car (cddr color)))) | |
222 (setq colors (cdr colors) | |
223 color (car colors) | |
224 ncolors (1- ncolors))) | |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
225 (when (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
226 (cond |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
227 ((= ncolors 240) ; 256-color rxvt |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
228 ;; 216 non-gray colors first |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
229 (let ((r 0) (g 0) (b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
230 (while (> ncolors 24) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
231 ;; This and other formulae taken from 256colres.pl and |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
232 ;; 88colres.pl in the xterm distribution. |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
233 (tty-color-define (format "color-%d" (- 256 ncolors)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
234 (- 256 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
235 (mapcar 'rxvt-rgb-convert-to-16bit |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
236 (list (round (* r 42.5)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
237 (round (* g 42.5)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
238 (round (* b 42.5))))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
239 (setq b (1+ b)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
240 (if (> b 5) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
241 (setq g (1+ g) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
242 b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
243 (if (> g 5) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
244 (setq r (1+ r) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
245 g 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
246 (setq ncolors (1- ncolors)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
247 ;; Now the 24 gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
248 (while (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
249 (setq color (rxvt-rgb-convert-to-16bit (+ 8 (* (- 24 ncolors) 10)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
250 (tty-color-define (format "color-%d" (- 256 ncolors)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
251 (- 256 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
252 (list color color color)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
253 (setq ncolors (1- ncolors)))) |
83524
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
254 |
65690
dc239a66e600
* term/rxvt.el (rxvt-register-default-colors): Delete redundant
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65687
diff
changeset
|
255 ((= ncolors 72) ; rxvt-unicode |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
256 ;; 64 non-gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
257 (let ((levels '(0 139 205 255)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
258 (r 0) (g 0) (b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
259 (while (> ncolors 8) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
260 (tty-color-define (format "color-%d" (- 88 ncolors)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
261 (- 88 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
262 (mapcar 'rxvt-rgb-convert-to-16bit |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
263 (list (nth r levels) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
264 (nth g levels) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
265 (nth b levels)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
266 (setq b (1+ b)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
267 (if (> b 3) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
268 (setq g (1+ g) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
269 b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
270 (if (> g 3) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
271 (setq r (1+ r) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
272 g 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
273 (setq ncolors (1- ncolors)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
274 ;; Now the 8 gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
275 (while (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
276 (setq color (rxvt-rgb-convert-to-16bit |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
277 (floor |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
278 (if (= ncolors 8) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
279 46.36363636 |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
280 (+ (* (- 8 ncolors) 23.18181818) 69.54545454))))) |
65686
4a796295f477
* term/rxvt.el (rxvt-register-default-colors): Add support for 88
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65650
diff
changeset
|
281 (tty-color-define (format "color-%d" (- 88 ncolors)) |
4a796295f477
* term/rxvt.el (rxvt-register-default-colors): Add support for 88
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65650
diff
changeset
|
282 (- 88 ncolors) |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
283 (list color color color)) |
65686
4a796295f477
* term/rxvt.el (rxvt-register-default-colors): Add support for 88
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65650
diff
changeset
|
284 (setq ncolors (1- ncolors)))) |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
285 (t (error "Unsupported number of rxvt colors (%d)" (+ 16 ncolors))))) |
42945 | 286 ;; Modifying color mappings means realized faces don't use the |
287 ;; right colors, so clear them. | |
288 (clear-face-cache))) | |
289 | |
290 ;; rxvt puts the default colors into an environment variable | |
291 ;; COLORFGBG. We use this to set the background mode in a more | |
292 ;; intelligent way than the default guesswork in startup.el. | |
293 (defun rxvt-set-background-mode () | |
294 "Set background mode as appropriate for the default rxvt colors." | |
295 (let ((fgbg (getenv "COLORFGBG")) | |
296 bg rgb) | |
83524
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
297 (set-terminal-parameter nil 'background-mode 'light) |
42945 | 298 (when (and fgbg |
299 (string-match ".*;\\([0-9][0-9]?\\)\\'" fgbg)) | |
300 (setq bg (string-to-number (substring fgbg (match-beginning 1)))) | |
301 ;; The next line assumes that rxvt-standard-colors are ordered | |
302 ;; by the color index in the ascending order! | |
303 (setq rgb (car (cddr (nth bg rxvt-standard-colors)))) | |
304 ;; See the commentary in frame-set-background-mode about the | |
305 ;; computation below. | |
306 (if (< (apply '+ rgb) | |
307 ;; The following line assumes that white is the 15th | |
308 ;; color in rxvt-standard-colors. | |
309 (* (apply '+ (car (cddr (nth 15 rxvt-standard-colors)))) 0.6)) | |
83524
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
83468
diff
changeset
|
310 (set-terminal-parameter nil 'background-mode 'dark))))) |
42945 | 311 |
65621
e1327485f073
(terminal-init-rxvt): Add entry for [end].
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64701
diff
changeset
|
312 ;; arch-tag: 20cf2fb6-6318-4bab-9dbf-1d15048f2257 |
42945 | 313 ;;; rxvt.el ends here |