Mercurial > emacs
annotate lisp/double.el @ 105838:5a494d9d4e4f
(define-obsolete-variable-alias): Use dolist,
and only put a prop if it is non-nil.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 03 Nov 2009 15:28:13 +0000 |
parents | dbe70c3aa01d |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25531
diff
changeset
|
1 ;;; double.el --- support for keyboard remapping with double clicking |
6000 | 2 |
74439 | 3 ;; Copyright (C) 1994, 1997, 1998, 2001, 2002, 2003, 2004, |
100908 | 4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
6000 | 5 |
17982 | 6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
6000 | 7 ;; Keywords: i18n |
8 | |
6001 | 9 ;; This file is part of GNU Emacs. |
10 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
6000 | 12 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
14 ;; (at your option) any later version. |
6001 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
6000 | 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. | |
6001 | 20 |
6000 | 21 ;; You should have received a copy of the GNU General Public License |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
6000 | 23 |
24 ;;; Commentary: | |
25 | |
26 ;; This mode is intended for use with languages that adds a small | |
27 ;; number of extra letters not available on the keyboard. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47253
diff
changeset
|
28 ;; |
6000 | 29 ;; Examples includes Scandinavian and German with an US keyboard. |
30 ;; | |
31 ;; The idea is that certain keys are overloaded. When you press it | |
32 ;; once it will insert one string, and when you press it twice the | |
33 ;; string will be replaced by another. This can be used for mapping | |
34 ;; keys on a US keyboard to generate characters according to the local | |
35 ;; keyboard convention when pressed once, and according to US keyboard | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47253
diff
changeset
|
36 ;; convention when pressed twice. |
6000 | 37 ;; |
38 ;; To use this mode, you must define the variable `double-map' and | |
39 ;; then enable double mode with `M-x double-mode'. Read the | |
40 ;; documentation for both of them. | |
41 ;; | |
42 ;; The default mapping is for getting Danish/Norwegian keyboard layout | |
43 ;; using ISO Latin 1 on a US keyboard. | |
44 ;; | |
14040 | 45 ;; Important node: While I would like to hear comments, bug reports, |
6000 | 46 ;; suggestions, please do @strong{not} expect me to put other mappings |
14040 | 47 ;; than the default into this file. There are billions and billions |
6000 | 48 ;; of such mappings, and just supporting the most common would |
49 ;; increase the size of this nice small file manyfold. | |
50 | |
51 ;;; Code: | |
52 | |
20083
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
53 (defgroup double nil |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
54 "Remap keyboard, but get original by typing the same key twice." |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
55 :group 'i18n) |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
56 |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
57 (defcustom double-map |
6000 | 58 '((?\; "\346" ";") |
59 (?\' "\370" "'") | |
60 (?\[ "\345" "[") | |
61 (?\: "\306" ":") | |
62 (?\" "\330" "\"") | |
63 (?\{ "\305" "{")) | |
64 "Alist of key translations activated by double mode. | |
65 | |
66 Each entry is a list with three elements: | |
67 1. The key activating the translation. | |
68 2. The string to be inserted when the key is pressed once. | |
20083
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
69 3. The string to be inserted when the key is pressed twice." |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
70 :group 'double |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
71 :type '(repeat (list (character :tag "Key") |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
72 (string :tag "Once") |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
73 (string :tag "Twice")))) |
6000 | 74 |
20083
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
75 (defcustom double-prefix-only t |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
76 "Non-nil means that Double mode mapping only works for prefix keys. |
47253
d09547c3e778
(double-prefix-only): Fix spacing.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
77 That is, for any key `X' in `double-map', `X' alone will be mapped |
20083
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
78 but not `C-u X' or `ESC X' since the X is not the prefix key." |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
79 :group 'double |
280dcaeeede3
Removed changelog comment section.
Karl Heuer <kwzh@gnu.org>
parents:
17982
diff
changeset
|
80 :type 'boolean) |
8008
049bc48732d6
(double-prefix-only): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7279
diff
changeset
|
81 |
6000 | 82 ;;; Read Event |
83 | |
84 (defvar double-last-event nil) | |
85 ;; The last key that generated a double key event. | |
86 | |
87 (defun double-read-event (prompt) | |
88 ;; Read an event | |
89 (if isearch-mode (isearch-update)) | |
90 (if prompt | |
91 (prog2 (message "%s%c" prompt double-last-event) | |
92 (read-event) | |
93 (message "")) | |
94 (read-event))) | |
95 | |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
96 (global-set-key [ignore] 'ignore) |
6000 | 97 |
98 (or (boundp 'isearch-mode-map) | |
99 (load-library "isearch")) | |
100 | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47253
diff
changeset
|
101 (define-key isearch-mode-map [ignore] |
6000 | 102 (function (lambda () (interactive) (isearch-update)))) |
103 | |
104 (defun double-translate-key (prompt) | |
105 ;; Translate input events using double map. | |
101013
dbe70c3aa01d
Replace last-input-char with last-input-event.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
106 (let ((key last-input-event)) |
6000 | 107 (cond (unread-command-events |
108 ;; Artificial event, ignore it. | |
109 (vector key)) | |
8008
049bc48732d6
(double-prefix-only): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7279
diff
changeset
|
110 ((and double-prefix-only |
049bc48732d6
(double-prefix-only): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7279
diff
changeset
|
111 (> (length (this-command-keys)) 1)) |
049bc48732d6
(double-prefix-only): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7279
diff
changeset
|
112 ;; This is not a prefix key, ignore it. |
049bc48732d6
(double-prefix-only): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7279
diff
changeset
|
113 (vector key)) |
6000 | 114 ((eq key 'magic-start) |
115 ;; End of generated event. See if he will repeat it... | |
116 (let ((new (double-read-event prompt)) | |
117 (entry (assoc double-last-event double-map))) | |
60312
789a36c2bc56
(double-translate-key): Call force-window-update after
Kim F. Storm <storm@cua.dk>
parents:
52401
diff
changeset
|
118 (force-window-update (selected-window)) |
6000 | 119 (if (eq new double-last-event) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47253
diff
changeset
|
120 (progn |
6000 | 121 (setq unread-command-events |
122 (append (make-list (1- (length (nth 1 entry))) | |
7279
89ed0051e237
(double-translate-key): Changed 'delete to 127 to make
Richard M. Stallman <rms@gnu.org>
parents:
6001
diff
changeset
|
123 127) |
6000 | 124 (nth 2 entry) |
125 '(magic-end))) | |
126 (vector 127)) | |
127 (setq unread-command-events (list new)) | |
7279
89ed0051e237
(double-translate-key): Changed 'delete to 127 to make
Richard M. Stallman <rms@gnu.org>
parents:
6001
diff
changeset
|
128 [ignore]))) |
6000 | 129 ((eq key 'magic-end) |
130 ;; End of double event. Ignore. | |
7279
89ed0051e237
(double-translate-key): Changed 'delete to 127 to make
Richard M. Stallman <rms@gnu.org>
parents:
6001
diff
changeset
|
131 [ignore]) |
6000 | 132 (t |
133 ;; New key. | |
134 (let ((exp (nth 1 (assoc key double-map)))) | |
135 (setq double-last-event key) | |
136 (setq unread-command-events | |
137 (append (substring exp 1) '(magic-start))) | |
138 (vector (aref exp 0))))))) | |
139 | |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
140 ;;; Mode |
6000 | 141 |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
142 ;; This feature seemed useless and it confused describe-mode, |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
143 ;; so I deleted it. |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
144 ;; (defvar double-mode-name "Double") |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
145 ;; ;; Name of current double mode. |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
146 ;; (make-variable-buffer-local 'double-mode-name) |
6000 | 147 |
25531
e42d6599cade
(double-mode): Customize the variable.
Dave Love <fx@gnu.org>
parents:
23003
diff
changeset
|
148 ;;;###autoload |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
149 (define-minor-mode double-mode |
10067
8ab32ff7b97c
(double-mode-name): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
8008
diff
changeset
|
150 "Toggle Double mode. |
78492
7c8949dbfa0d
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78236
diff
changeset
|
151 With prefix argument ARG, turn Double mode on if ARG is positive, otherwise |
7c8949dbfa0d
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78236
diff
changeset
|
152 turn it off. |
6000 | 153 |
11561
56399c411b8b
(double-mode): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
10067
diff
changeset
|
154 When Double mode is on, some keys will insert different strings |
56399c411b8b
(double-mode): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
10067
diff
changeset
|
155 when pressed twice. See variable `double-map' for details." |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
156 :lighter " Double" |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
157 :link '(emacs-commentary-link "double") |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
158 (kill-local-variable 'key-translation-map) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
159 (when double-mode |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
160 ;; Set up key-translation-map as indicated by `double-map'. |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
161 ;; XXX I don't think key-translation-map should be made local here. -- Lorentey |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
162 (make-local-variable 'key-translation-map) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
163 (let ((map (make-sparse-keymap))) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
164 (set-keymap-parent map key-translation-map) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
165 (setq key-translation-map map) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
166 (dolist (entry (append double-map '((magic-start) (magic-end)))) |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
167 (define-key map |
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
168 (vector (nth 0 entry)) 'double-translate-key))))) |
6000 | 169 |
170 (provide 'double) | |
171 | |
85501
da629dcb5063
([ignore]): Use ignore.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83652
diff
changeset
|
172 ;; arch-tag: 2e170036-44cb-4493-bc32-ada0a4395221 |
6000 | 173 ;;; double.el ends here |