Mercurial > emacs
annotate lisp/emulation/viper-util.el @ 12169:67f9dfb23d7c
(x-create-frame-with-faces): Don't use initial-frame-alist
when looking for the X resource name.
Copy parameters from default-frame-alist, before the geometry
specs from the X resource database.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 09 Jun 1995 15:42:08 +0000 |
parents | e16c06646396 |
children | a7bd91d4af97 |
rev | line source |
---|---|
10789 | 1 ;;; viper-util.el --- Utilities used by viper.el |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
2 ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc. |
11288 | 3 |
10789 | 4 ;; This file is part of GNU Emacs. |
5 | |
6 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
7 ;; it under the terms of the GNU General Public License as published by | |
8 ;; the Free Software Foundation; either version 2, or (at your option) | |
9 ;; any later version. | |
10 | |
11 ;; GNU Emacs is distributed in the hope that it will be useful, | |
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 ;; GNU General Public License for more details. | |
15 | |
16 ;; You should have received a copy of the GNU General Public License | |
17 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 | |
20 (require 'ring) | |
21 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
22 ;; Whether it is XEmacs or not |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
23 (defconst vip-xemacs-p (string-match "\\(Lucid\\|Xemacs\\)" emacs-version)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
24 ;; Whether it is Emacs or not |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
25 (defconst vip-emacs-p (not vip-xemacs-p)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
26 ;; Tell whether we are running as a window application or on a TTY |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
27 (defsubst vip-device-type () |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
28 (if vip-emacs-p |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
29 window-system |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
30 (device-type (selected-device)))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
31 ;; in XEmacs: device-type is tty on tty and stream in batch. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
32 (defsubst vip-window-display-p () |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
33 (and (vip-device-type) (not (memq (vip-device-type) '(tty stream))))) |
10789 | 34 |
35 | |
36 ;;; Macros | |
37 | |
38 (defmacro vip-deflocalvar (var default-value &optional documentation) | |
39 (` (progn | |
40 (defvar (, var) (, default-value) | |
41 (, (format "%s\n\(buffer local\)" documentation))) | |
42 (make-variable-buffer-local '(, var)) | |
43 ))) | |
44 | |
45 (defmacro vip-loop (count body) | |
46 "(vip-loop COUNT BODY) Execute BODY COUNT times." | |
47 (list 'let (list (list 'count count)) | |
48 (list 'while '(> count 0) | |
49 body | |
50 '(setq count (1- count)) | |
51 ))) | |
52 | |
53 (defmacro vip-buffer-live-p (buf) | |
54 (` (and (, buf) (get-buffer (, buf)) (buffer-name (get-buffer (, buf)))))) | |
55 | |
56 ;; return buffer-specific macro definition, given a full macro definition | |
57 (defmacro vip-kbd-buf-alist (macro-elt) | |
58 (` (nth 1 (, macro-elt)))) | |
59 ;; get a pair: (curr-buffer . macro-definition) | |
60 (defmacro vip-kbd-buf-pair (macro-elt) | |
61 (` (assoc (buffer-name) (vip-kbd-buf-alist (, macro-elt))))) | |
62 ;; get macro definition for current buffer | |
63 (defmacro vip-kbd-buf-definition (macro-elt) | |
64 (` (cdr (vip-kbd-buf-pair (, macro-elt))))) | |
65 | |
66 ;; return mode-specific macro definitions, given a full macro definition | |
67 (defmacro vip-kbd-mode-alist (macro-elt) | |
68 (` (nth 2 (, macro-elt)))) | |
69 ;; get a pair: (major-mode . macro-definition) | |
70 (defmacro vip-kbd-mode-pair (macro-elt) | |
71 (` (assoc major-mode (vip-kbd-mode-alist (, macro-elt))))) | |
72 ;; get macro definition for the current major mode | |
73 (defmacro vip-kbd-mode-definition (macro-elt) | |
74 (` (cdr (vip-kbd-mode-pair (, macro-elt))))) | |
75 | |
76 ;; return global macro definition, given a full macro definition | |
77 (defmacro vip-kbd-global-pair (macro-elt) | |
78 (` (nth 3 (, macro-elt)))) | |
79 ;; get global macro definition from an elt of macro-alist | |
80 (defmacro vip-kbd-global-definition (macro-elt) | |
81 (` (cdr (vip-kbd-global-pair (, macro-elt))))) | |
82 | |
83 ;; last elt of a sequence | |
84 (defsubst vip-seq-last-elt (seq) | |
85 (elt seq (1- (length seq)))) | |
86 | |
87 ;; Check if arg is a valid character for register | |
88 ;; TYPE is a list that can contain `letter', `Letter', and `digit'. | |
89 ;; Letter means lowercase letters, Letter means uppercase letters, and | |
90 ;; digit means digits from 1 to 9. | |
91 ;; If TYPE is nil, then down/uppercase letters and digits are allowed. | |
92 (defun vip-valid-register (reg &optional type) | |
93 (or type (setq type '(letter Letter digit))) | |
94 (or (if (memq 'letter type) | |
95 (and (<= ?a reg) (<= reg ?z))) | |
96 (if (memq 'digit type) | |
97 (and (<= ?1 reg) (<= reg ?9))) | |
98 (if (memq 'Letter type) | |
99 (and (<= ?A reg) (<= reg ?Z))) | |
100 )) | |
101 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
102 ;; checks if object is a marker, has a buffer, and points to within that buffer |
10789 | 103 (defun vip-valid-marker (marker) |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
104 (if (and (markerp marker) (marker-buffer marker)) |
10789 | 105 (let ((buf (marker-buffer marker)) |
106 (pos (marker-position marker))) | |
107 (save-excursion | |
108 (set-buffer buf) | |
109 (and (<= pos (point-max)) (<= (point-min) pos)))))) | |
110 | |
111 | |
112 (defvar vip-minibuffer-overlay-priority 300) | |
113 (defvar vip-replace-overlay-priority 400) | |
114 (defvar vip-search-overlay-priority 500) | |
115 | |
116 | |
117 ;;; XEmacs support | |
118 | |
119 (if vip-xemacs-p | |
120 (progn | |
121 (fset 'vip-read-event (symbol-function 'next-command-event)) | |
122 (fset 'vip-make-overlay (symbol-function 'make-extent)) | |
123 (fset 'vip-overlay-start (symbol-function 'extent-start-position)) | |
124 (fset 'vip-overlay-end (symbol-function 'extent-end-position)) | |
125 (fset 'vip-overlay-put (symbol-function 'set-extent-property)) | |
126 (fset 'vip-overlay-p (symbol-function 'extentp)) | |
127 (fset 'vip-overlay-get (symbol-function 'extent-property)) | |
128 (fset 'vip-move-overlay (symbol-function 'set-extent-endpoints)) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
129 (if (vip-window-display-p) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
130 (fset 'vip-iconify (symbol-function 'iconify-frame))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
131 (cond ((vip-window-display-p) |
10789 | 132 (fset 'vip-get-face (symbol-function 'get-face)) |
133 (fset 'vip-color-defined-p | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
134 (symbol-function 'valid-color-name-p)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
135 ))) |
10789 | 136 (fset 'vip-read-event (symbol-function 'read-event)) |
137 (fset 'vip-make-overlay (symbol-function 'make-overlay)) | |
138 (fset 'vip-overlay-start (symbol-function 'overlay-start)) | |
139 (fset 'vip-overlay-end (symbol-function 'overlay-end)) | |
140 (fset 'vip-overlay-put (symbol-function 'overlay-put)) | |
141 (fset 'vip-overlay-p (symbol-function 'overlayp)) | |
142 (fset 'vip-overlay-get (symbol-function 'overlay-get)) | |
143 (fset 'vip-move-overlay (symbol-function 'move-overlay)) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
144 (if (vip-window-display-p) |
10789 | 145 (fset 'vip-iconify (symbol-function 'iconify-or-deiconify-frame))) |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
146 (cond ((vip-window-display-p) |
10789 | 147 (fset 'vip-get-face (symbol-function 'internal-get-face)) |
148 (fset 'vip-color-defined-p (symbol-function 'x-color-defined-p)) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
149 ))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
150 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
151 (defsubst vip-color-display-p () |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
152 (if vip-emacs-p |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
153 (x-display-color-p) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
154 (eq (device-class (selected-device)) 'color))) |
10789 | 155 |
156 ;; OS/2 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
157 (cond ((eq (vip-device-type) 'pm) |
10789 | 158 (fset 'vip-color-defined-p |
159 (function (lambda (color) (assoc color pm-color-alist)))))) | |
160 | |
161 ;; needed to smooth out the difference between Emacs and XEmacs | |
162 (defsubst vip-italicize-face (face) | |
163 (if vip-xemacs-p | |
164 (make-face-italic face) | |
165 (make-face-italic face nil 'noerror))) | |
166 | |
167 ;; test if display is color and the colors are defined | |
168 (defsubst vip-can-use-colors (&rest colors) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
169 (if (vip-color-display-p) |
10789 | 170 (not (memq nil (mapcar 'vip-color-defined-p colors))) |
171 )) | |
172 | |
173 ;; currently doesn't work for XEmacs | |
174 (defun vip-change-cursor-color (new-color) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
175 (if (and (vip-window-display-p) (vip-color-display-p) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
176 (stringp new-color) (vip-color-defined-p new-color) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
177 (not (string= new-color (vip-get-cursor-color)))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
178 (modify-frame-parameters |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
179 (selected-frame) (list (cons 'cursor-color new-color))))) |
10789 | 180 |
181 (defsubst vip-save-cursor-color () | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
182 (if (and (vip-window-display-p) (vip-color-display-p)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
183 (let ((color (vip-get-cursor-color))) |
10789 | 184 (if (and (stringp color) (vip-color-defined-p color) |
185 (not (string= color vip-replace-overlay-cursor-color))) | |
186 (vip-overlay-put vip-replace-overlay 'vip-cursor-color color))))) | |
187 | |
188 (defsubst vip-restore-cursor-color () | |
189 (vip-change-cursor-color | |
190 (vip-overlay-get vip-replace-overlay 'vip-cursor-color))) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
191 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
192 (defsubst vip-get-cursor-color () |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
193 (cdr (assoc 'cursor-color (frame-parameters)))) |
10789 | 194 |
195 | |
196 ;; Check the current version against the major and minor version numbers | |
197 ;; using op: cur-vers op major.minor If emacs-major-version or | |
198 ;; emacs-minor-version are not defined, we assume that the current version | |
199 ;; is hopelessly outdated. We assume that emacs-major-version and | |
200 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the | |
201 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value | |
202 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be | |
203 ;; incorrect. However, this gives correct result in our cases, since we are | |
204 ;; testing for sufficiently high Emacs versions. | |
205 (defun vip-check-version (op major minor &optional type-of-emacs) | |
206 (if (and (boundp 'emacs-major-version) (boundp 'emacs-minor-version)) | |
207 (and (cond ((eq type-of-emacs 'xemacs) vip-xemacs-p) | |
208 ((eq type-of-emacs 'emacs) vip-emacs-p) | |
209 (t t)) | |
210 (cond ((eq op '=) (and (= emacs-minor-version minor) | |
211 (= emacs-major-version major))) | |
212 ((memq op '(> >= < <=)) | |
213 (and (or (funcall op emacs-major-version major) | |
214 (= emacs-major-version major)) | |
215 (if (= emacs-major-version major) | |
216 (funcall op emacs-minor-version minor) | |
217 t))) | |
218 (t | |
219 (error "%S: Invalid op in vip-check-version" op)))) | |
220 (cond ((memq op '(= > >=)) nil) | |
221 ((memq op '(< <=)) t)))) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
222 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
223 ;; warn if it is a wrong emacs |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
224 (if (or (vip-check-version '< 19 29 'emacs) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
225 (vip-check-version '< 19 12 'xemacs)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
226 (progn |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
227 (with-output-to-temp-buffer " *vip-info*" |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
228 (switch-to-buffer " *vip-info*") |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
229 (insert |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
230 (format " |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
231 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
232 This version of Viper requires |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
233 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
234 \t Emacs 19.29 and higher |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
235 \t OR |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
236 \t XEmacs 19.12 and higher |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
237 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
238 It is unlikely to work under Emacs version %s |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
239 that you are using... |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
240 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
241 Type any key to continue..." emacs-version)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
242 (beep 1) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
243 (beep 1) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
244 (vip-read-event)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
245 (kill-buffer " *vip-info*"))) |
10789 | 246 |
247 | |
248 (defun vip-get-visible-buffer-window (wind) | |
249 (if vip-xemacs-p | |
250 (get-buffer-window wind t) | |
251 (get-buffer-window wind 'visible))) | |
252 | |
253 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
254 ;; Return line position. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
255 ;; If pos is 'start then returns position of line start. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
256 ;; If pos is 'end, returns line end. If pos is 'mid, returns line center. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
257 ;; Pos = 'indent returns beginning of indentation. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
258 ;; Otherwise, returns point. Current point is not moved in any case." |
10789 | 259 (defun vip-line-pos (pos) |
260 (let ((cur-pos (point)) | |
261 (result)) | |
262 (cond | |
263 ((equal pos 'start) | |
264 (beginning-of-line)) | |
265 ((equal pos 'end) | |
266 (end-of-line)) | |
267 ((equal pos 'mid) | |
268 (goto-char (+ (vip-line-pos 'start) (vip-line-pos 'end) 2))) | |
269 ((equal pos 'indent) | |
270 (back-to-indentation)) | |
271 (t nil)) | |
272 (setq result (point)) | |
273 (goto-char cur-pos) | |
274 result)) | |
275 | |
276 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
277 ;; Like move-marker but creates a virgin marker if arg isn't already a marker. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
278 ;; The first argument must eval to a variable name. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
279 ;; Arguments: (var-name position &optional buffer). |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
280 ;; |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
281 ;; This is useful for moving markers that are supposed to be local. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
282 ;; For this, VAR-NAME should be made buffer-local with nil as a default. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
283 ;; Then, each time this var is used in `vip-move-marker-locally' in a new |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
284 ;; buffer, a new marker will be created. |
10789 | 285 (defun vip-move-marker-locally (var pos &optional buffer) |
286 (if (markerp (eval var)) | |
287 () | |
288 (set var (make-marker))) | |
289 (move-marker (eval var) pos buffer)) | |
290 | |
291 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
292 ;; Print CONDITIONS as a message. |
10789 | 293 (defun vip-message-conditions (conditions) |
294 (let ((case (car conditions)) (msg (cdr conditions))) | |
295 (if (null msg) | |
296 (message "%s" case) | |
297 (message "%s: %s" case (mapconcat 'prin1-to-string msg " "))) | |
298 (beep 1))) | |
299 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
300 |
10789 | 301 |
302 ;;; List/alist utilities | |
303 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
304 ;; Convert LIST to an alist |
10789 | 305 (defun vip-list-to-alist (lst) |
306 (let ((alist)) | |
307 (while lst | |
308 (setq alist (cons (list (car lst)) alist)) | |
309 (setq lst (cdr lst))) | |
310 alist)) | |
311 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
312 ;; Convert ALIST to a list. |
10789 | 313 (defun vip-alist-to-list (alst) |
314 (let ((lst)) | |
315 (while alst | |
316 (setq lst (cons (car (car alst)) lst)) | |
317 (setq alst (cdr alst))) | |
318 lst)) | |
319 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
320 ;; Filter ALIST using REGEXP. Return alist whose elements match the regexp. |
10789 | 321 (defun vip-filter-alist (regexp alst) |
322 (interactive "s x") | |
323 (let ((outalst) (inalst alst)) | |
324 (while (car inalst) | |
325 (if (string-match regexp (car (car inalst))) | |
326 (setq outalst (cons (car inalst) outalst))) | |
327 (setq inalst (cdr inalst))) | |
328 outalst)) | |
329 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
330 ;; Filter LIST using REGEXP. Return list whose elements match the regexp. |
10789 | 331 (defun vip-filter-list (regexp lst) |
332 (interactive "s x") | |
333 (let ((outlst) (inlst lst)) | |
334 (while (car inlst) | |
335 (if (string-match regexp (car inlst)) | |
336 (setq outlst (cons (car inlst) outlst))) | |
337 (setq inlst (cdr inlst))) | |
338 outlst)) | |
339 | |
340 | |
341 ;; Append LIS2 to LIS1, both alists, by side-effect and returns LIS1 | |
342 ;; LIS2 is modified by filtering it: deleting its members of the form | |
343 ;; \(car elt\) such that (car elt') is in LIS1. | |
344 (defun vip-append-filter-alist (lis1 lis2) | |
345 (let ((temp lis1) | |
346 elt) | |
347 | |
348 ;;filter-append the second list | |
349 (while temp | |
350 ;; delete all occurrences | |
351 (while (setq elt (assoc (car (car temp)) lis2)) | |
352 (setq lis2 (delq elt lis2))) | |
353 (setq temp (cdr temp))) | |
354 | |
355 (nconc lis1 lis2))) | |
356 | |
357 | |
358 | |
359 | |
360 ;;; Insertion ring | |
361 | |
362 ;; Rotate RING's index. DIRection can be positive or negative. | |
363 (defun vip-ring-rotate1 (ring dir) | |
364 (if (and (ring-p ring) (> (ring-length ring) 0)) | |
365 (progn | |
366 (setcar ring (cond ((> dir 0) | |
367 (ring-plus1 (car ring) (ring-length ring))) | |
368 ((< dir 0) | |
369 (ring-minus1 (car ring) (ring-length ring))) | |
370 ;; don't rotate if dir = 0 | |
371 (t (car ring)))) | |
372 (vip-current-ring-item ring) | |
373 ))) | |
374 | |
375 (defun vip-special-ring-rotate1 (ring dir) | |
376 (if (memq vip-intermediate-command | |
377 '(repeating-display-destructive-command | |
378 repeating-insertion-from-ring)) | |
379 (vip-ring-rotate1 ring dir) | |
380 ;; don't rotate otherwise | |
381 (vip-ring-rotate1 ring 0))) | |
382 | |
383 ;; current ring item; if N is given, then so many items back from the | |
384 ;; current | |
385 (defun vip-current-ring-item (ring &optional n) | |
386 (setq n (or n 0)) | |
387 (if (and (ring-p ring) (> (ring-length ring) 0)) | |
388 (aref (cdr (cdr ring)) (mod (- (car ring) 1 n) (ring-length ring))))) | |
389 | |
390 ;; push item onto ring. the second argument is a ring-variable, not value. | |
391 (defun vip-push-onto-ring (item ring-var) | |
392 (or (ring-p (eval ring-var)) | |
393 (set ring-var (make-ring (eval (intern (format "%S-size" ring-var)))))) | |
394 (or (null item) ; don't push nil | |
395 (and (stringp item) (string= item "")) ; or empty strings | |
396 (equal item (vip-current-ring-item (eval ring-var))) ; or old stuff | |
397 ;; Since vip-set-destructive-command checks if we are inside vip-repeat, | |
398 ;; we don't check whether this-command-keys is a `.'. | |
399 ;; The cmd vip-repeat makes a call to the current function only if | |
400 ;; `.' is executing a command from the command history. It doesn't | |
401 ;; call the push-onto-ring function if `.' is simply repeating the | |
402 ;; last destructive command. | |
403 ;; We only check for ESC (which happens when we do insert with a | |
404 ;; prefix argument, or if this-command-keys doesn't give anything | |
405 ;; meaningful (in that case we don't know what to show to the user). | |
406 (and (eq ring-var 'vip-command-ring) | |
407 (string-match "\\([0-9]*\e\\|^[ \t]*$\\|escape\\)" | |
408 (vip-array-to-string (this-command-keys)))) | |
409 (vip-ring-insert (eval ring-var) item)) | |
410 ) | |
411 | |
412 | |
413 ;; removing elts from ring seems to break it | |
414 (defun vip-cleanup-ring (ring) | |
415 (or (< (ring-length ring) 2) | |
416 (null (vip-current-ring-item ring)) | |
417 ;; last and previous equal | |
418 (if (equal (vip-current-ring-item ring) (vip-current-ring-item ring 1)) | |
419 (vip-ring-pop ring)))) | |
420 | |
421 ;; ring-remove seems to be buggy, so we concocted this for our purposes. | |
422 (defun vip-ring-pop (ring) | |
423 (let* ((ln (ring-length ring)) | |
424 (vec (cdr (cdr ring))) | |
425 (veclen (length vec)) | |
426 (hd (car ring)) | |
427 (idx (max 0 (ring-minus1 hd ln))) | |
428 (top-elt (aref vec idx))) | |
429 | |
430 ;; shift elements | |
431 (while (< (1+ idx) veclen) | |
432 (aset vec idx (aref vec (1+ idx))) | |
433 (setq idx (1+ idx))) | |
434 (aset vec idx nil) | |
435 | |
436 (setq hd (max 0 (ring-minus1 hd ln))) | |
437 (if (= hd (1- ln)) (setq hd 0)) | |
438 (setcar ring hd) ; move head | |
439 (setcar (cdr ring) (max 0 (1- ln))) ; adjust length | |
440 top-elt | |
441 )) | |
442 | |
443 (defun vip-ring-insert (ring item) | |
444 (let* ((ln (ring-length ring)) | |
445 (vec (cdr (cdr ring))) | |
446 (veclen (length vec)) | |
447 (hd (car ring)) | |
448 (vecpos-after-hd (if (= hd 0) ln hd)) | |
449 (idx ln)) | |
450 | |
451 (if (= ln veclen) | |
452 (progn | |
453 (aset vec hd item) ; hd is always 1+ the actual head index in vec | |
454 (setcar ring (ring-plus1 hd ln))) | |
455 (setcar (cdr ring) (1+ ln)) | |
456 (setcar ring (ring-plus1 vecpos-after-hd (1+ ln))) | |
457 (while (and (>= idx vecpos-after-hd) (> ln 0)) | |
458 (aset vec idx (aref vec (1- idx))) | |
459 (setq idx (1- idx))) | |
460 (aset vec vecpos-after-hd item)) | |
461 item)) | |
462 | |
463 | |
464 ;;; String utilities | |
465 | |
466 ;; If STRING is longer than MAX-LEN, truncate it and print ...... instead | |
467 ;; PRE-STRING is a string to prepend to the abbrev string. | |
468 ;; POST-STRING is a string to append to the abbrev string. | |
469 ;; ABBREV_SIGN is a string to be inserted before POST-STRING | |
470 ;; if the orig string was truncated. | |
471 (defun vip-abbreviate-string (string max-len | |
472 pre-string post-string abbrev-sign) | |
473 (let (truncated-str) | |
474 (setq truncated-str | |
475 (if (stringp string) | |
476 (substring string 0 (min max-len (length string))))) | |
477 (cond ((null truncated-str) "") | |
478 ((> (length string) max-len) | |
479 (format "%s%s%s%s" | |
480 pre-string truncated-str abbrev-sign post-string)) | |
481 (t (format "%s%s%s" pre-string truncated-str post-string))))) | |
482 | |
483 | |
484 ;;; Saving settings in custom file | |
485 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
486 ;; Save the current setting of VAR in CUSTOM-FILE. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
487 ;; If given, MESSAGE is a message to be displayed after that. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
488 ;; This message is erased after 2 secs, if erase-msg is non-nil. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
489 ;; Arguments: var message custom-file &optional erase-message |
10789 | 490 (defun vip-save-setting (var message custom-file &optional erase-msg) |
491 (let* ((var-name (symbol-name var)) | |
492 (var-val (if (boundp var) (eval var))) | |
493 (regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z---_']*[ \t\n)]" var-name)) | |
494 (buf (find-file-noselect (substitute-in-file-name custom-file))) | |
495 ) | |
496 (message message) | |
497 (save-excursion | |
498 (set-buffer buf) | |
499 (goto-char (point-min)) | |
500 (if (re-search-forward regexp nil t) | |
501 (let ((reg-end (1- (match-end 0)))) | |
502 (search-backward var-name) | |
503 (delete-region (match-beginning 0) reg-end) | |
504 (goto-char (match-beginning 0)) | |
505 (insert (format "%s '%S" var-name var-val))) | |
506 (goto-char (point-max)) | |
507 (if (not (bolp)) (insert "\n")) | |
508 (insert (format "(setq %s '%S)\n" var-name var-val))) | |
509 (save-buffer)) | |
510 (kill-buffer buf) | |
511 (if erase-msg | |
512 (progn | |
513 (sit-for 2) | |
514 (message ""))) | |
515 )) | |
516 | |
517 ;; Save STRING in CUSTOM-FILE. If PATTERN is non-nil, remove strings that | |
518 ;; match this pattern. | |
519 (defun vip-save-string-in-file (string custom-file &optional pattern) | |
520 (let ((buf (find-file-noselect (substitute-in-file-name custom-file)))) | |
521 (save-excursion | |
522 (set-buffer buf) | |
523 (goto-char (point-min)) | |
524 (if pattern (delete-matching-lines pattern)) | |
525 (goto-char (point-max)) | |
526 (if string (insert string)) | |
527 (save-buffer)) | |
528 (kill-buffer buf) | |
529 )) | |
530 | |
531 | |
532 ;;; Overlays | |
533 | |
534 ;; Search | |
535 | |
536 (defun vip-flash-search-pattern () | |
537 (if (vip-overlay-p vip-search-overlay) | |
538 (vip-move-overlay vip-search-overlay (match-beginning 0) (match-end 0)) | |
539 (setq vip-search-overlay | |
540 (vip-make-overlay | |
541 (match-beginning 0) (match-end 0) (current-buffer)))) | |
542 | |
543 (vip-overlay-put vip-search-overlay 'priority vip-search-overlay-priority) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
544 (if (vip-window-display-p) |
10789 | 545 (progn |
546 (vip-overlay-put vip-search-overlay 'face vip-search-face) | |
547 (sit-for 2) | |
548 (vip-overlay-put vip-search-overlay 'face nil)))) | |
549 | |
550 ;; Replace state | |
551 | |
552 (defun vip-set-replace-overlay (beg end) | |
553 (if (vip-overlay-p vip-replace-overlay) | |
554 (vip-move-replace-overlay beg end) | |
555 (setq vip-replace-overlay (vip-make-overlay beg end (current-buffer))) | |
556 (vip-overlay-put vip-replace-overlay | |
557 'vip-start | |
558 (move-marker (make-marker) | |
559 (vip-overlay-start vip-replace-overlay))) | |
560 (vip-overlay-put vip-replace-overlay | |
561 'vip-end | |
562 (move-marker (make-marker) | |
563 (vip-overlay-end vip-replace-overlay))) | |
564 (vip-overlay-put | |
565 vip-replace-overlay 'priority vip-replace-overlay-priority)) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
566 (if (vip-window-display-p) |
10789 | 567 (vip-overlay-put vip-replace-overlay 'face vip-replace-overlay-face)) |
568 (vip-save-cursor-color) | |
569 (vip-change-cursor-color vip-replace-overlay-cursor-color) | |
570 ) | |
571 | |
572 | |
573 (defsubst vip-hide-replace-overlay () | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
574 (vip-set-replace-overlay-glyphs nil nil) |
10789 | 575 (vip-restore-cursor-color) |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
576 (if (vip-window-display-p) |
10789 | 577 (vip-overlay-put vip-replace-overlay 'face nil))) |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
578 |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
579 (defsubst vip-set-replace-overlay-glyphs (before-glyph after-glyph) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
580 (if (or (not (vip-window-display-p)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
581 vip-use-replace-region-delimiters) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
582 (let ((before-name (if vip-xemacs-p 'begin-glyph 'before-string)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
583 (after-name (if vip-xemacs-p 'end-glyph 'after-string))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
584 (vip-overlay-put vip-replace-overlay before-name before-glyph) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
585 (vip-overlay-put vip-replace-overlay after-name after-glyph)))) |
10789 | 586 |
587 | |
588 (defsubst vip-replace-start () | |
589 (vip-overlay-get vip-replace-overlay 'vip-start)) | |
590 (defsubst vip-replace-end () | |
591 (vip-overlay-get vip-replace-overlay 'vip-end)) | |
592 | |
593 (defsubst vip-move-replace-overlay (beg end) | |
594 (vip-move-overlay vip-replace-overlay beg end) | |
595 (move-marker (vip-replace-start) (vip-overlay-start vip-replace-overlay)) | |
596 (move-marker (vip-replace-end) (vip-overlay-end vip-replace-overlay))) | |
597 | |
598 | |
599 ;; Minibuffer | |
600 | |
601 (defun vip-set-minibuffer-overlay () | |
602 (vip-check-minibuffer-overlay) | |
603 ;; We always move the minibuffer overlay, since in XEmacs | |
604 ;; this overlay may get detached. Moving will reattach it. | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
605 ;; This overlay is also moved via the vip-post-command-hook, |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
606 ;; to insure that it covers the whole minibuffer. |
10789 | 607 (vip-move-minibuffer-overlay) |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
608 (if (vip-window-display-p) |
10789 | 609 (progn |
610 (vip-overlay-put | |
611 vip-minibuffer-overlay 'face vip-minibuffer-current-face) | |
612 (vip-overlay-put | |
613 vip-minibuffer-overlay 'priority vip-minibuffer-overlay-priority)) | |
614 )) | |
615 | |
616 (defun vip-check-minibuffer-overlay () | |
617 (if (vip-overlay-p vip-minibuffer-overlay) | |
618 () | |
619 (setq vip-minibuffer-overlay | |
620 (vip-make-overlay 1 (1+ (buffer-size)) (current-buffer))))) | |
621 | |
622 ;; arguments to this function are dummies. they are needed just because | |
623 ;; it is used as a insert-in-front-hook to vip-minibuffer-overlay, and such | |
624 ;; hooks require 3 arguments. | |
625 (defun vip-move-minibuffer-overlay (&optional overl beg end) | |
626 (if (vip-is-in-minibuffer) | |
627 (progn | |
628 (vip-check-minibuffer-overlay) | |
629 (vip-move-overlay vip-minibuffer-overlay 1 (1+ (buffer-size)))))) | |
630 | |
631 (defsubst vip-is-in-minibuffer () | |
632 (string-match "\*Minibuf-" (buffer-name))) | |
633 | |
634 | |
635 | |
636 ;;; XEmacs compatibility | |
637 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
638 ;; Sit for VAL miliseconds. XEmacs doesn't support the millisecond arg |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
639 ;; in sit-for, so this function smoothes out the differences. |
10789 | 640 (defsubst vip-sit-for-short (val &optional nodisp) |
641 (if vip-xemacs-p | |
642 (sit-for (/ val 1000.0) nodisp) | |
643 (sit-for 0 val nodisp))) | |
644 | |
645 ;; EVENT may be a single event of a sequence of events | |
646 (defsubst vip-ESC-event-p (event) | |
647 (let ((ESC-keys '(?\e (control \[) escape)) | |
648 (key (vip-event-key event))) | |
649 (member key ESC-keys))) | |
650 | |
651 ;; like (set-mark-command nil) but doesn't push twice, if (car mark-ring) | |
652 ;; is the same as (mark t). | |
653 (defsubst vip-set-mark-if-necessary () | |
654 (setq mark-ring (delete (vip-mark-marker) mark-ring)) | |
655 (set-mark-command nil)) | |
656 | |
657 (defsubst vip-mark-marker () | |
658 (if vip-xemacs-p | |
659 (mark-marker t) | |
660 (mark-marker))) | |
661 | |
662 ;; In transient mark mode (zmacs mode), it is annoying when regions become | |
663 ;; highlighted due to Viper's pushing marks. So, we deactivate marks, unless | |
664 ;; the user explicitly wants highlighting, e.g., by hitting '' or `` | |
665 (defun vip-deactivate-mark () | |
666 (if vip-xemacs-p | |
667 (zmacs-deactivate-region) | |
668 (deactivate-mark))) | |
669 | |
670 | |
671 (defsubst vip-events-to-keys (events) | |
672 (cond (vip-xemacs-p (events-to-keys events)) | |
673 (t events))) | |
674 | |
675 | |
676 (defun vip-eval-after-load (file form) | |
677 (if vip-emacs-p | |
678 (eval-after-load file form) | |
679 (or (assoc file after-load-alist) | |
680 (setq after-load-alist (cons (list file) after-load-alist))) | |
681 (let ((elt (assoc file after-load-alist))) | |
682 (or (member form (cdr elt)) | |
683 (setq elt (nconc elt (list form))))) | |
684 form | |
685 )) | |
686 | |
687 | |
688 ;; like read-event, but in XEmacs also try to convert to char, if possible | |
689 (defun vip-read-event-convert-to-char () | |
690 (let (event) | |
691 (if vip-emacs-p | |
692 (read-event) | |
693 (setq event (next-command-event)) | |
694 (or (event-to-character event) | |
695 event)) | |
696 )) | |
697 | |
698 | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
699 ;; Emacs has a bug in eventp, which causes (eventp nil) to return (nil) |
10789 | 700 ;; instead of nil, if '(nil) was previously inadvertantly assigned to |
701 ;; unread-command-events | |
702 (defun vip-event-key (event) | |
703 (or (and event (eventp event)) | |
704 (error "vip-event-key: Wrong type argument, eventp, %S" event)) | |
705 (let ((mod (event-modifiers event)) | |
706 basis) | |
707 (setq basis | |
708 (cond | |
709 (vip-xemacs-p | |
710 (cond ((key-press-event-p event) | |
711 (event-key event)) | |
712 ((button-event-p event) | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
713 (concat "mouse-" (prin1-to-string (event-button event)))) |
10789 | 714 (t |
715 (error "vip-event-key: Unknown event, %S" event)))) | |
716 (t | |
717 ;; Emacs doesn't handle capital letters correctly, since | |
718 ;; \S-a isn't considered the same as A (it behaves as | |
719 ;; plain `a' instead). So we take care of this here | |
12139
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
720 (cond ((and (numberp event) (<= ?A event) (<= event ?Z)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
721 (setq mod nil |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
722 event event)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
723 ;; Emacs has the oddity whereby characters 128+char |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
724 ;; represent M-char *if* this appears inside a string. |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
725 ;; So, we convert them manually into (mata char). |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
726 ((and (numberp event) (< ?\C-? event) (<= event 255)) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
727 (setq mod '(meta) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
728 event (- event ?\C-? 1))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
729 (t (event-basic-type event))) |
e16c06646396
(vip-event-key): now handles keys 128--255 as meta-chars.
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
730 ))) |
10789 | 731 |
732 (if (numberp basis) | |
733 (setq basis | |
734 (if (= basis ?\C-?) | |
735 (list 'control '\?) ; taking care of an emacs bug | |
736 (intern (char-to-string basis))))) | |
737 | |
738 (if mod | |
739 (append mod (list basis)) | |
740 basis) | |
741 )) | |
742 | |
743 (defun vip-key-to-emacs-key (key) | |
744 (let (key-name char-p modifiers mod-char-list base-key base-key-name) | |
745 (cond (vip-xemacs-p key) | |
746 ((symbolp key) | |
747 (setq key-name (symbol-name key)) | |
748 (if (= (length key-name) 1) ; character event | |
749 (string-to-char key-name) | |
750 key)) | |
751 ((listp key) | |
752 (setq modifiers (subseq key 0 (1- (length key))) | |
753 base-key (vip-seq-last-elt key) | |
754 base-key-name (symbol-name base-key) | |
755 char-p (= (length base-key-name) 1)) | |
756 (setq mod-char-list | |
757 (mapcar | |
758 '(lambda (elt) (upcase (substring (symbol-name elt) 0 1))) | |
759 modifiers)) | |
760 (if char-p | |
761 (setq key-name | |
762 (car (read-from-string | |
763 (concat | |
764 "?\\" | |
765 (mapconcat 'identity mod-char-list "-\\") | |
766 "-" | |
767 base-key-name)))) | |
768 (setq key-name | |
769 (intern | |
770 (concat | |
771 (mapconcat 'identity mod-char-list "-") | |
772 "-" | |
773 base-key-name)))))) | |
774 )) | |
775 | |
776 | |
777 ;; Args can be a sequence of events, a string, or a Viper macro. Will try to | |
778 ;; convert events to keys and, if all keys are regular printable | |
779 ;; characters, will return a string. Otherwise, will return a string | |
780 ;; representing a vector of converted events. If the input was a Viper macro, | |
781 ;; will return a string that represents this macro as a vector. | |
782 (defun vip-array-to-string (event-seq &optional representation) | |
783 (let (temp) | |
784 (cond ((stringp event-seq) event-seq) | |
785 ((vip-event-vector-p event-seq) | |
786 (setq temp (mapcar 'vip-event-key event-seq)) | |
787 (if (vip-char-symbol-sequence-p temp) | |
788 (mapconcat 'symbol-name temp "") | |
789 (prin1-to-string (vconcat temp)))) | |
790 ((vip-char-symbol-sequence-p event-seq) | |
791 (mapconcat 'symbol-name event-seq "")) | |
792 (t (prin1-to-string event-seq))))) | |
793 | |
794 | |
795 (defsubst vip-fast-keysequence-p () | |
796 (not (vip-sit-for-short vip-fast-keyseq-timeout t))) | |
797 | |
798 (defun vip-read-char-exclusive () | |
799 (let (char | |
800 (echo-keystrokes 1)) | |
801 (while (null char) | |
802 (condition-case nil | |
803 (setq char (read-char)) | |
804 (error | |
805 ;; skip event if not char | |
806 (vip-read-event)))) | |
807 char)) | |
808 | |
809 | |
810 | |
811 (defun vip-setup-master-buffer (&rest other-files-or-buffers) | |
812 "Set up the current buffer as a master buffer. | |
813 Arguments become related buffers. This function should normally be used in | |
814 the `Local variables' section of a file." | |
815 (setq vip-related-files-and-buffers-ring | |
816 (make-ring (1+ (length other-files-or-buffers)))) | |
817 (mapcar '(lambda (elt) | |
818 (vip-ring-insert vip-related-files-and-buffers-ring elt)) | |
819 other-files-or-buffers) | |
820 (vip-ring-insert vip-related-files-and-buffers-ring (buffer-name)) | |
821 ) | |
822 | |
823 | |
824 (provide 'viper-util) | |
825 | |
826 ;;; viper-util.el ends here |