Mercurial > emacs
annotate lisp/term/rxvt.el @ 83388:0cd72d94a6c7
Change the "pretest" bug report address to the multi-tty list.
* src/emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Change address to the
multi-tty mailing list.
* lisp/mh-e/.arch-inventory: Ignore mh-loaddefs.el.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-428
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 23 Oct 2005 22:17:49 +0000 |
parents | 2a679c81f552 |
children | 7d093d9d4479 |
rev | line source |
---|---|
42945 | 1 ;;; rxvt.el --- define function key sequences and standard colors for rxvt |
2 | |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64651
diff
changeset
|
3 ;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
42945 | 4 |
5 ;; Author: Eli Zaretskii | |
6 ;; Keywords: terminals | |
7 | |
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 | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
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 the | |
64084 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
42945 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;;; Code: | |
28 | |
83277
886073e54ccb
Fix some superflous deviations from CVS, plus apply some cosmetics.
Karoly Lorentey <lorentey@elte.hu>
parents:
83118
diff
changeset
|
29 (require 'server) |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
30 |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
31 (defvar rxvt-function-map nil |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
32 "Function key overrides for rxvt.") |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
33 |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
34 ;; Protect against reloads. |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
35 (unless rxvt-function-map |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
36 (setq rxvt-function-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
|
37 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
38 ;; Set up function-key-map entries that termcap and terminfo don't know. |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
39 (define-key rxvt-function-map "\e[A" [up]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
40 (define-key rxvt-function-map "\e[B" [down]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
41 (define-key rxvt-function-map "\e[C" [right]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
42 (define-key rxvt-function-map "\e[D" [left]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
43 (define-key rxvt-function-map "\e[2~" [insert]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
44 (define-key rxvt-function-map "\e[3~" [delete]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
45 (define-key rxvt-function-map "\e[4~" [select]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
46 (define-key rxvt-function-map "\e[5~" [prior]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
47 (define-key rxvt-function-map "\e[6~" [next]) |
83383
2a679c81f552
Merged from miles@gnu.org--gnu-2005 (patch 118-132, 551-577)
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
48 (define-key rxvt-function-map "\e[7~" [home]) |
2a679c81f552
Merged from miles@gnu.org--gnu-2005 (patch 118-132, 551-577)
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
49 (define-key rxvt-function-map "\e[8~" [end]) |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
50 (define-key rxvt-function-map "\e[11~" [f1]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
51 (define-key rxvt-function-map "\e[12~" [f2]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
52 (define-key rxvt-function-map "\e[13~" [f3]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
53 (define-key rxvt-function-map "\e[14~" [f4]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
54 (define-key rxvt-function-map "\e[15~" [f5]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
55 (define-key rxvt-function-map "\e[17~" [f6]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
56 (define-key rxvt-function-map "\e[18~" [f7]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
57 (define-key rxvt-function-map "\e[19~" [f8]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
58 (define-key rxvt-function-map "\e[20~" [f9]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
59 (define-key rxvt-function-map "\e[21~" [f10]) |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
60 ;; The strings emitted by f11 and f12 are the same as the strings |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
61 ;; emitted by S-f1 and S-f2, so don't define f11 and f12. |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
62 ;; (define-key rxvt-function-map "\e[23~" [f11]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
63 ;; (define-key rxvt-function-map "\e[24~" [f12]) |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
64 (define-key rxvt-function-map "\e[29~" [print]) |
42945 | 65 |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
66 (define-key rxvt-function-map "\e[11^" [C-f1]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
67 (define-key rxvt-function-map "\e[12^" [C-f2]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
68 (define-key rxvt-function-map "\e[13^" [C-f3]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
69 (define-key rxvt-function-map "\e[14^" [C-f4]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
70 (define-key rxvt-function-map "\e[15^" [C-f5]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
71 (define-key rxvt-function-map "\e[17^" [C-f6]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
72 (define-key rxvt-function-map "\e[18^" [C-f7]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
73 (define-key rxvt-function-map "\e[19^" [C-f8]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
74 (define-key rxvt-function-map "\e[20^" [C-f9]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
75 (define-key rxvt-function-map "\e[21^" [C-f10]) |
42945 | 76 |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
77 (define-key rxvt-function-map "\e[23~" [S-f1]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
78 (define-key rxvt-function-map "\e[24~" [S-f2]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
79 (define-key rxvt-function-map "\e[25~" [S-f3]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
80 (define-key rxvt-function-map "\e[26~" [S-f4]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
81 (define-key rxvt-function-map "\e[28~" [S-f5]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
82 (define-key rxvt-function-map "\e[29~" [S-f6]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
83 (define-key rxvt-function-map "\e[31~" [S-f7]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
84 (define-key rxvt-function-map "\e[32~" [S-f8]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
85 (define-key rxvt-function-map "\e[33~" [S-f9]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
86 (define-key rxvt-function-map "\e[34~" [S-f10]) |
42945 | 87 |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
88 (define-key rxvt-function-map "\e[23^" [C-S-f1]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
89 (define-key rxvt-function-map "\e[24^" [C-S-f2]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
90 (define-key rxvt-function-map "\e[25^" [C-S-f3]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
91 (define-key rxvt-function-map "\e[26^" [C-S-f4]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
92 (define-key rxvt-function-map "\e[28^" [C-S-f5]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
93 (define-key rxvt-function-map "\e[29^" [C-S-f6]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
94 (define-key rxvt-function-map "\e[31^" [C-S-f7]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
95 (define-key rxvt-function-map "\e[32^" [C-S-f8]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
96 (define-key rxvt-function-map "\e[33^" [C-S-f9]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
97 (define-key rxvt-function-map "\e[34^" [C-S-f10]) |
42945 | 98 |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
99 (define-key rxvt-function-map "\e[2^" [C-insert]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
100 (define-key rxvt-function-map "\e[3^" [C-delete]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
101 (define-key rxvt-function-map "\e[5^" [C-prior]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
102 (define-key rxvt-function-map "\e[6^" [C-next]) |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
103 (define-key rxvt-function-map "\e[7^" [C-home]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
104 (define-key rxvt-function-map "\e[8^" [C-end]) |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
105 (define-key rxvt-function-map "\eOd" [C-left]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
106 (define-key rxvt-function-map "\eOc" [C-right]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
107 (define-key rxvt-function-map "\eOa" [C-up]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
108 (define-key rxvt-function-map "\eOb" [C-down]) |
42945 | 109 |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
110 (define-key rxvt-function-map "\e[2;2~" [S-insert]) |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
111 (define-key rxvt-function-map "\e[3$" [S-delete]) |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
112 (define-key rxvt-function-map "\e[5$" [S-prior]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
113 (define-key rxvt-function-map "\e[6$" [S-next]) |
83383
2a679c81f552
Merged from miles@gnu.org--gnu-2005 (patch 118-132, 551-577)
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
114 (define-key rxvt-function-map "\e[7$" [S-home]) |
83305
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
115 (define-key rxvt-function-map "\e[8$" [S-end]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
116 (define-key rxvt-function-map "\e[d" [S-left]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
117 (define-key rxvt-function-map "\e[c" [S-right]) |
80cb3fe96145
Speed up `emacsclient -t' on xterms. (by suggestion of Dan Nicolaescu)
Karoly Lorentey <lorentey@elte.hu>
parents:
83297
diff
changeset
|
118 (define-key rxvt-function-map "\e[a" [S-up]) |
83316
102194c6d773
Update Lisp code for a terminal-local `function-key-map'.
Karoly Lorentey <lorentey@elte.hu>
parents:
83305
diff
changeset
|
119 (define-key rxvt-function-map "\e[b" [S-down])) |
42945 | 120 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
121 (defun terminal-init-rxvt () |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
122 "Terminal initialization function for rxvt." |
42945 | 123 |
83363
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
124 ;; The terminal-local stuff only need to be set up on the first |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
125 ;; frame on that device. |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
126 (when (eq 1 (length (frames-on-display-list))) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
127 ;; The terminal intialization C code file might have initialized |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
128 ;; function keys F11->F42 from the termcap/terminfo information. On |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
129 ;; a PC-style keyboard these keys correspond to |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
130 ;; MODIFIER-FUNCTION_KEY, where modifier is S-, C-, C-S-. The |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
131 ;; code here subsitutes the corresponding defintions in |
83383
2a679c81f552
Merged from miles@gnu.org--gnu-2005 (patch 118-132, 551-577)
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
132 ;; function-key-map. This substitution is needed because if a key |
83363
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
133 ;; definition if found in function-key-map, there are no further |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
134 ;; lookups in other keymaps. |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
135 (let ((m (terminal-local-value 'local-function-key-map nil))) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
136 (substitute-key-definition [f11] [S-f1] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
137 (substitute-key-definition [f12] [S-f2] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
138 (substitute-key-definition [f13] [S-f3] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
139 (substitute-key-definition [f14] [S-f4] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
140 (substitute-key-definition [f15] [S-f5] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
141 (substitute-key-definition [f16] [S-f6] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
142 (substitute-key-definition [f17] [S-f7] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
143 (substitute-key-definition [f18] [S-f8] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
144 (substitute-key-definition [f19] [S-f9] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
145 (substitute-key-definition [f20] [S-f10] m) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42962
diff
changeset
|
146 |
83363
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
147 (substitute-key-definition [f23] [C-f1] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
148 (substitute-key-definition [f24] [C-f2] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
149 (substitute-key-definition [f25] [C-f3] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
150 (substitute-key-definition [f26] [C-f4] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
151 (substitute-key-definition [f27] [C-f5] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
152 (substitute-key-definition [f28] [C-f6] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
153 (substitute-key-definition [f29] [C-f7] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
154 (substitute-key-definition [f30] [C-f8] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
155 (substitute-key-definition [f31] [C-f9] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
156 (substitute-key-definition [f32] [C-f10] m) |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64084
diff
changeset
|
157 |
83363
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
158 (substitute-key-definition [f33] [C-S-f1] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
159 (substitute-key-definition [f34] [C-S-f2] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
160 (substitute-key-definition [f35] [C-S-f3] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
161 (substitute-key-definition [f36] [C-S-f4] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
162 (substitute-key-definition [f37] [C-S-f5] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
163 (substitute-key-definition [f38] [C-S-f6] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
164 (substitute-key-definition [f39] [C-S-f7] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
165 (substitute-key-definition [f40] [C-S-f8] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
166 (substitute-key-definition [f41] [C-S-f9] m) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
167 (substitute-key-definition [f42] [C-S-f10] m)) |
42945 | 168 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
169 ;; Use inheritance to let the main keymap override those defaults. |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
170 ;; This way we don't override terminfo-derived settings or settings |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
171 ;; made in the .emacs file. |
83363
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
172 (let ((m (copy-keymap rxvt-function-map))) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
173 (set-keymap-parent m (keymap-parent (terminal-local-value 'local-function-key-map nil))) |
3d2bc61f2da0
Fix function-key-map massaging vs `C-x 5 2' in lisp/term/*.el. (Submitted by Dan Nicolaescu.)
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
174 (set-keymap-parent (terminal-local-value 'local-function-key-map nil) m))) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
175 |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
176 ;; 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
|
177 (rxvt-register-default-colors) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
178 (rxvt-set-background-mode) |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64596
diff
changeset
|
179 ;; 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
|
180 (tty-set-up-initial-frame-faces)) |
42945 | 181 |
182 ;; Set up colors, for those versions of rxvt that support it. | |
183 (defvar rxvt-standard-colors | |
184 ;; The names of the colors in the comments taken from the rxvt.1 man | |
42962 | 185 ;; page; the corresponding RGB values--from rgb.txt. |
42945 | 186 '(("black" 0 ( 0 0 0)) ; black |
187 ("red" 1 (205 0 0)) ; red3 | |
188 ("green" 2 ( 0 205 0)) ; green3 | |
189 ("yellow" 3 (205 205 0)) ; yellow3 | |
190 ("blue" 4 ( 0 0 205)) ; blue3 | |
191 ("magenta" 5 (205 0 205)) ; magenta3 | |
192 ("cyan" 6 ( 0 205 205)) ; cyan3 | |
65639
f552d54d9430
(rxvt-standard-colors): Fix some colors.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65621
diff
changeset
|
193 ("white" 7 (229 229 229)) ; gray90 |
f552d54d9430
(rxvt-standard-colors): Fix some colors.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65621
diff
changeset
|
194 ("brightblack" 8 ( 77 77 77)) ; gray30 |
42945 | 195 ("brightred" 9 (255 0 0)) ; red |
196 ("brightgreen" 10 ( 0 255 0)) ; green | |
197 ("brightyellow" 11 (255 255 0)) ; yellow | |
198 ("brightblue" 12 ( 0 0 255)) ; blue | |
199 ("brightmagenta" 13 (255 0 255)) ; magenta | |
200 ("brightcyan" 14 ( 0 255 255)) ; cyan | |
201 ("brightwhite" 15 (255 255 255))) ; white | |
202 "Names of 16 standard rxvt colors, their numbers, and RGB values.") | |
203 | |
204 (defun rxvt-rgb-convert-to-16bit (prim) | |
205 "Convert an 8-bit primary color value PRIM to a corresponding 16-bit value." | |
206 (min 65535 (round (* (/ prim 255.0) 65535.0)))) | |
207 | |
208 (defun rxvt-register-default-colors () | |
209 "Register the default set of colors for rxvt or compatible emulator. | |
210 | |
211 This function registers the number of colors returned by `display-color-cells' | |
212 for the currently selected frame." | |
213 (let* ((ncolors (display-color-cells)) | |
214 (colors rxvt-standard-colors) | |
215 (color (car colors))) | |
216 (if (> ncolors 0) | |
217 ;; Clear the 8 default tty colors registered by startup.el | |
218 (tty-color-clear)) | |
219 ;; Only register as many colors as are supported by the display. | |
220 (while (and (> ncolors 0) colors) | |
221 (tty-color-define (car color) (cadr color) | |
222 (mapcar 'rxvt-rgb-convert-to-16bit | |
223 (car (cddr color)))) | |
224 (setq colors (cdr colors) | |
225 color (car colors) | |
226 ncolors (1- ncolors))) | |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
227 (when (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
228 (cond |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
229 ((= ncolors 240) ; 256-color rxvt |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
230 ;; 216 non-gray colors first |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
231 (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
|
232 (while (> ncolors 24) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
233 ;; 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
|
234 ;; 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
|
235 (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
|
236 (- 256 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
237 (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
|
238 (list (round (* r 42.5)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
239 (round (* g 42.5)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
240 (round (* b 42.5))))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
241 (setq b (1+ b)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
242 (if (> b 5) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
243 (setq g (1+ g) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
244 b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
245 (if (> g 5) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
246 (setq r (1+ r) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
247 g 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
248 (setq ncolors (1- ncolors)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
249 ;; Now the 24 gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
250 (while (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
251 (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
|
252 (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
|
253 (- 256 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
254 (list color color color)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
255 (setq ncolors (1- ncolors)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
256 |
65690
dc239a66e600
* term/rxvt.el (rxvt-register-default-colors): Delete redundant
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65687
diff
changeset
|
257 ((= ncolors 72) ; rxvt-unicode |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
258 ;; 64 non-gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
259 (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
|
260 (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
|
261 (while (> ncolors 8) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
262 (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
|
263 (- 88 ncolors) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
264 (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
|
265 (list (nth r levels) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
266 (nth g levels) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
267 (nth b levels)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
268 (setq b (1+ b)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
269 (if (> b 3) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
270 (setq g (1+ g) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
271 b 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
272 (if (> g 3) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
273 (setq r (1+ r) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
274 g 0)) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
275 (setq ncolors (1- ncolors)))) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
276 ;; Now the 8 gray colors |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
277 (while (> ncolors 0) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
278 (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
|
279 (floor |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
280 (if (= ncolors 8) |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
281 46.36363636 |
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
282 (+ (* (- 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
|
283 (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
|
284 (- 88 ncolors) |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
285 (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
|
286 (setq ncolors (1- ncolors)))) |
65687
16baf997c85c
(rxvt-register-default-colors): Add support for 255
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65686
diff
changeset
|
287 (t (error "Unsupported number of rxvt colors (%d)" (+ 16 ncolors))))) |
42945 | 288 ;; Modifying color mappings means realized faces don't use the |
289 ;; right colors, so clear them. | |
290 (clear-face-cache))) | |
291 | |
292 ;; rxvt puts the default colors into an environment variable | |
293 ;; COLORFGBG. We use this to set the background mode in a more | |
294 ;; intelligent way than the default guesswork in startup.el. | |
295 (defun rxvt-set-background-mode () | |
296 "Set background mode as appropriate for the default rxvt colors." | |
83118
7652900ea029
Fixed environment variable handling during terminal initialization.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
297 (let ((fgbg (server-getenv "COLORFGBG")) |
42945 | 298 bg rgb) |
63861 | 299 (setq default-frame-background-mode 'light) |
42945 | 300 (when (and fgbg |
301 (string-match ".*;\\([0-9][0-9]?\\)\\'" fgbg)) | |
302 (setq bg (string-to-number (substring fgbg (match-beginning 1)))) | |
303 ;; The next line assumes that rxvt-standard-colors are ordered | |
304 ;; by the color index in the ascending order! | |
305 (setq rgb (car (cddr (nth bg rxvt-standard-colors)))) | |
306 ;; See the commentary in frame-set-background-mode about the | |
307 ;; computation below. | |
308 (if (< (apply '+ rgb) | |
309 ;; The following line assumes that white is the 15th | |
310 ;; color in rxvt-standard-colors. | |
311 (* (apply '+ (car (cddr (nth 15 rxvt-standard-colors)))) 0.6)) | |
63861 | 312 (setq default-frame-background-mode 'dark))) |
42945 | 313 (frame-set-background-mode (selected-frame)))) |
314 | |
65621
e1327485f073
(terminal-init-rxvt): Add entry for [end].
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64701
diff
changeset
|
315 ;; arch-tag: 20cf2fb6-6318-4bab-9dbf-1d15048f2257 |
42945 | 316 ;;; rxvt.el ends here |