Merged from emacs@sv.gnu.org
[bpt/emacs.git] / lisp / emulation / viper-util.el
1 ;;; viper-util.el --- Utilities used by viper.el
2
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
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
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 ;; Compiler pacifier
30 (defvar viper-overriding-map)
31 (defvar pm-color-alist)
32 (defvar zmacs-region-stays)
33 (defvar viper-minibuffer-current-face)
34 (defvar viper-minibuffer-insert-face)
35 (defvar viper-minibuffer-vi-face)
36 (defvar viper-minibuffer-emacs-face)
37 (defvar viper-replace-overlay-face)
38 (defvar viper-fast-keyseq-timeout)
39 (defvar ex-unix-type-shell)
40 (defvar ex-unix-type-shell-options)
41 (defvar viper-ex-tmp-buf-name)
42 (defvar viper-syntax-preference)
43 (defvar viper-saved-mark)
44
45 (require 'ring)
46
47 (if noninteractive
48 (eval-when-compile
49 (let ((load-path (cons (expand-file-name ".") load-path)))
50 (or (featurep 'viper-init)
51 (load "viper-init.el" nil nil 'nosuffix))
52 )))
53 ;; end pacifier
54
55 (require 'viper-init)
56
57
58 ;; A fix for NeXT Step
59 ;; Should go away, when NS people fix the design flaw, which leaves the
60 ;; two x-* functions undefined.
61 (if (and (not (fboundp 'x-display-color-p)) (fboundp 'ns-display-color-p))
62 (fset 'x-display-color-p (symbol-function 'ns-display-color-p)))
63 (if (and (not (fboundp 'x-color-defined-p)) (fboundp 'ns-color-defined-p))
64 (fset 'x-color-defined-p (symbol-function 'ns-color-defined-p)))
65
66 \f
67 ;;; XEmacs support
68
69
70 (viper-cond-compile-for-xemacs-or-emacs
71 (progn ; xemacs
72 (fset 'viper-overlay-p (symbol-function 'extentp))
73 (fset 'viper-make-overlay (symbol-function 'make-extent))
74 (fset 'viper-overlay-live-p (symbol-function 'extent-live-p))
75 (fset 'viper-move-overlay (symbol-function 'set-extent-endpoints))
76 (fset 'viper-overlay-start (symbol-function 'extent-start-position))
77 (fset 'viper-overlay-end (symbol-function 'extent-end-position))
78 (fset 'viper-overlay-get (symbol-function 'extent-property))
79 (fset 'viper-overlay-put (symbol-function 'set-extent-property))
80 (fset 'viper-read-event (symbol-function 'next-command-event))
81 (fset 'viper-characterp (symbol-function 'characterp))
82 (fset 'viper-int-to-char (symbol-function 'int-to-char))
83 (if (viper-window-display-p)
84 (fset 'viper-iconify (symbol-function 'iconify-frame)))
85 (cond ((viper-has-face-support-p)
86 (fset 'viper-get-face (symbol-function 'get-face))
87 (fset 'viper-color-defined-p (symbol-function 'valid-color-name-p))
88 )))
89 (progn ; emacs
90 (fset 'viper-overlay-p (symbol-function 'overlayp))
91 (fset 'viper-make-overlay (symbol-function 'make-overlay))
92 (fset 'viper-overlay-live-p (symbol-function 'overlayp))
93 (fset 'viper-move-overlay (symbol-function 'move-overlay))
94 (fset 'viper-overlay-start (symbol-function 'overlay-start))
95 (fset 'viper-overlay-end (symbol-function 'overlay-end))
96 (fset 'viper-overlay-get (symbol-function 'overlay-get))
97 (fset 'viper-overlay-put (symbol-function 'overlay-put))
98 (fset 'viper-read-event (symbol-function 'read-event))
99 (fset 'viper-characterp (symbol-function 'integerp))
100 (fset 'viper-int-to-char (symbol-function 'identity))
101 (if (viper-window-display-p)
102 (fset 'viper-iconify (symbol-function 'iconify-or-deiconify-frame)))
103 (cond ((viper-has-face-support-p)
104 (fset 'viper-get-face (symbol-function 'internal-get-face))
105 (fset 'viper-color-defined-p (symbol-function 'x-color-defined-p))
106 )))
107 )
108
109
110
111 ;; CHAR is supposed to be a char or an integer (positive or negative)
112 ;; LIST is a list of chars, nil, and negative numbers
113 ;; Check if CHAR is a member by trying to convert in characters, if necessary.
114 ;; Introduced for compatibility with XEmacs, where integers are not the same as
115 ;; chars.
116 (defun viper-memq-char (char list)
117 (cond ((and (integerp char) (>= char 0))
118 (memq (viper-int-to-char char) list))
119 ((memq char list))))
120
121 ;; Check if char-or-int and char are the same as characters
122 (defun viper-char-equal (char-or-int char)
123 (cond ((and (integerp char-or-int) (>= char-or-int 0))
124 (= (viper-int-to-char char-or-int) char))
125 ((eq char-or-int char))))
126
127 ;; Like =, but accommodates null and also is t for eq-objects
128 (defun viper= (char char1)
129 (cond ((eq char char1) t)
130 ((and (viper-characterp char) (viper-characterp char1))
131 (= char char1))
132 (t nil)))
133
134 (defsubst viper-color-display-p ()
135 (viper-cond-compile-for-xemacs-or-emacs
136 (eq (device-class (selected-device)) 'color) ; xemacs
137 (x-display-color-p) ; emacs
138 ))
139
140 (defsubst viper-get-cursor-color ()
141 (viper-cond-compile-for-xemacs-or-emacs
142 (color-instance-name
143 (frame-property (selected-frame) 'cursor-color)) ; xemacs
144 (cdr (assoc 'cursor-color (frame-parameters))) ; emacs
145 ))
146
147
148 ;; OS/2
149 (cond ((eq (viper-device-type) 'pm)
150 (fset 'viper-color-defined-p
151 (lambda (color) (assoc color pm-color-alist)))))
152
153
154 ;; cursor colors
155 (defun viper-change-cursor-color (new-color)
156 (if (and (viper-window-display-p) (viper-color-display-p)
157 (stringp new-color) (viper-color-defined-p new-color)
158 (not (string= new-color (viper-get-cursor-color))))
159 (viper-cond-compile-for-xemacs-or-emacs
160 (set-frame-property
161 (selected-frame) 'cursor-color (make-color-instance new-color))
162 (modify-frame-parameters
163 (selected-frame) (list (cons 'cursor-color new-color)))
164 )
165 ))
166
167 ;; By default, saves current frame cursor color in the
168 ;; viper-saved-cursor-color-in-replace-mode property of viper-replace-overlay
169 (defun viper-save-cursor-color (before-which-mode)
170 (if (and (viper-window-display-p) (viper-color-display-p))
171 (let ((color (viper-get-cursor-color)))
172 (if (and (stringp color) (viper-color-defined-p color)
173 (not (string= color viper-replace-overlay-cursor-color)))
174 (modify-frame-parameters
175 (selected-frame)
176 (list
177 (cons
178 (cond ((eq before-which-mode 'before-replace-mode)
179 'viper-saved-cursor-color-in-replace-mode)
180 ((eq before-which-mode 'before-emacs-mode)
181 'viper-saved-cursor-color-in-emacs-mode)
182 (t
183 'viper-saved-cursor-color-in-insert-mode))
184 color)))
185 ))))
186
187
188 (defsubst viper-get-saved-cursor-color-in-replace-mode ()
189 (or
190 (funcall
191 (if viper-emacs-p 'frame-parameter 'frame-property)
192 (selected-frame)
193 'viper-saved-cursor-color-in-replace-mode)
194 (if (eq viper-current-state 'emacs-mode)
195 viper-emacs-state-cursor-color
196 viper-vi-state-cursor-color)))
197
198 (defsubst viper-get-saved-cursor-color-in-insert-mode ()
199 (or
200 (funcall
201 (if viper-emacs-p 'frame-parameter 'frame-property)
202 (selected-frame)
203 'viper-saved-cursor-color-in-insert-mode)
204 (if (eq viper-current-state 'emacs-mode)
205 viper-emacs-state-cursor-color
206 viper-vi-state-cursor-color)))
207
208 (defsubst viper-get-saved-cursor-color-in-emacs-mode ()
209 (or
210 (funcall
211 (if viper-emacs-p 'frame-parameter 'frame-property)
212 (selected-frame)
213 'viper-saved-cursor-color-in-emacs-mode)
214 viper-vi-state-cursor-color))
215
216 ;; restore cursor color from replace overlay
217 (defun viper-restore-cursor-color(after-which-mode)
218 (if (viper-overlay-p viper-replace-overlay)
219 (viper-change-cursor-color
220 (cond ((eq after-which-mode 'after-replace-mode)
221 (viper-get-saved-cursor-color-in-replace-mode))
222 ((eq after-which-mode 'after-emacs-mode)
223 (viper-get-saved-cursor-color-in-emacs-mode))
224 (t (viper-get-saved-cursor-color-in-insert-mode)))
225 )))
226
227 \f
228 ;; Check the current version against the major and minor version numbers
229 ;; using op: cur-vers op major.minor If emacs-major-version or
230 ;; emacs-minor-version are not defined, we assume that the current version
231 ;; is hopelessly outdated. We assume that emacs-major-version and
232 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the
233 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value
234 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be
235 ;; incorrect. However, this gives correct result in our cases, since we are
236 ;; testing for sufficiently high Emacs versions.
237 (defun viper-check-version (op major minor &optional type-of-emacs)
238 (if (and (boundp 'emacs-major-version) (boundp 'emacs-minor-version))
239 (and (cond ((eq type-of-emacs 'xemacs) viper-xemacs-p)
240 ((eq type-of-emacs 'emacs) viper-emacs-p)
241 (t t))
242 (cond ((eq op '=) (and (= emacs-minor-version minor)
243 (= emacs-major-version major)))
244 ((memq op '(> >= < <=))
245 (and (or (funcall op emacs-major-version major)
246 (= emacs-major-version major))
247 (if (= emacs-major-version major)
248 (funcall op emacs-minor-version minor)
249 t)))
250 (t
251 (error "%S: Invalid op in viper-check-version" op))))
252 (cond ((memq op '(= > >=)) nil)
253 ((memq op '(< <=)) t))))
254
255
256 (defun viper-get-visible-buffer-window (wind)
257 (if viper-xemacs-p
258 (get-buffer-window wind t)
259 (get-buffer-window wind 'visible)))
260
261
262 ;; Return line position.
263 ;; If pos is 'start then returns position of line start.
264 ;; If pos is 'end, returns line end. If pos is 'mid, returns line center.
265 ;; Pos = 'indent returns beginning of indentation.
266 ;; Otherwise, returns point. Current point is not moved in any case."
267 (defun viper-line-pos (pos)
268 (let ((cur-pos (point))
269 (result))
270 (cond
271 ((equal pos 'start)
272 (beginning-of-line))
273 ((equal pos 'end)
274 (end-of-line))
275 ((equal pos 'mid)
276 (goto-char (+ (viper-line-pos 'start) (viper-line-pos 'end) 2)))
277 ((equal pos 'indent)
278 (back-to-indentation))
279 (t nil))
280 (setq result (point))
281 (goto-char cur-pos)
282 result))
283
284 ;; Emacs used to count each multibyte character as several positions in the buffer,
285 ;; so we had to use Emacs' chars-in-region to count characters. Since 20.3,
286 ;; Emacs counts multibyte characters as 1 position. XEmacs has always been
287 ;; counting each char as just one pos. So, now we can simply subtract beg from
288 ;; end to determine the number of characters in a region.
289 (defun viper-chars-in-region (beg end &optional preserve-sign)
290 ;;(let ((count (abs (if (fboundp 'chars-in-region)
291 ;; (chars-in-region beg end)
292 ;; (- end beg)))))
293 (let ((count (abs (- end beg))))
294 (if (and (< end beg) preserve-sign)
295 (- count)
296 count)))
297
298 ;; Test if POS is between BEG and END
299 (defsubst viper-pos-within-region (pos beg end)
300 (and (>= pos (min beg end)) (>= (max beg end) pos)))
301
302
303 ;; Like move-marker but creates a virgin marker if arg isn't already a marker.
304 ;; The first argument must eval to a variable name.
305 ;; Arguments: (var-name position &optional buffer).
306 ;;
307 ;; This is useful for moving markers that are supposed to be local.
308 ;; For this, VAR-NAME should be made buffer-local with nil as a default.
309 ;; Then, each time this var is used in `viper-move-marker-locally' in a new
310 ;; buffer, a new marker will be created.
311 (defun viper-move-marker-locally (var pos &optional buffer)
312 (if (markerp (eval var))
313 ()
314 (set var (make-marker)))
315 (move-marker (eval var) pos buffer))
316
317
318 ;; Print CONDITIONS as a message.
319 (defun viper-message-conditions (conditions)
320 (let ((case (car conditions)) (msg (cdr conditions)))
321 (if (null msg)
322 (message "%s" case)
323 (message "%s: %s" case (mapconcat 'prin1-to-string msg " ")))
324 (beep 1)))
325
326
327 \f
328 ;;; List/alist utilities
329
330 ;; Convert LIST to an alist
331 (defun viper-list-to-alist (lst)
332 (let ((alist))
333 (while lst
334 (setq alist (cons (list (car lst)) alist))
335 (setq lst (cdr lst)))
336 alist))
337
338 ;; Convert ALIST to a list.
339 (defun viper-alist-to-list (alst)
340 (let ((lst))
341 (while alst
342 (setq lst (cons (car (car alst)) lst))
343 (setq alst (cdr alst)))
344 lst))
345
346 ;; Filter ALIST using REGEXP. Return alist whose elements match the regexp.
347 (defun viper-filter-alist (regexp alst)
348 (interactive "s x")
349 (let ((outalst) (inalst alst))
350 (while (car inalst)
351 (if (string-match regexp (car (car inalst)))
352 (setq outalst (cons (car inalst) outalst)))
353 (setq inalst (cdr inalst)))
354 outalst))
355
356 ;; Filter LIST using REGEXP. Return list whose elements match the regexp.
357 (defun viper-filter-list (regexp lst)
358 (interactive "s x")
359 (let ((outlst) (inlst lst))
360 (while (car inlst)
361 (if (string-match regexp (car inlst))
362 (setq outlst (cons (car inlst) outlst)))
363 (setq inlst (cdr inlst)))
364 outlst))
365
366
367 ;; Append LIS2 to LIS1, both alists, by side-effect and returns LIS1
368 ;; LIS2 is modified by filtering it: deleting its members of the form
369 ;; \(car elt\) such that (car elt') is in LIS1.
370 (defun viper-append-filter-alist (lis1 lis2)
371 (let ((temp lis1)
372 elt)
373 ;;filter-append the second list
374 (while temp
375 ;; delete all occurrences
376 (while (setq elt (assoc (car (car temp)) lis2))
377 (setq lis2 (delq elt lis2)))
378 (setq temp (cdr temp)))
379
380 (append lis1 lis2)))
381
382
383 \f
384 ;;; Support for :e, :r, :w file globbing
385
386 ;; Glob the file spec.
387 ;; This function is designed to work under Unix. It might also work under VMS.
388 (defun viper-glob-unix-files (filespec)
389 (let ((gshell
390 (cond (ex-unix-type-shell shell-file-name)
391 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VAX VMS
392 (t "sh"))) ; probably Unix anyway
393 (gshell-options
394 ;; using cond in anticipation of further additions
395 (cond (ex-unix-type-shell-options)
396 ))
397 (command (cond (viper-ms-style-os-p (format "\"ls -1 -d %s\"" filespec))
398 (t (format "ls -1 -d %s" filespec))))
399 status)
400 (save-excursion
401 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
402 (erase-buffer)
403 (setq status
404 (if gshell-options
405 (call-process gshell nil t nil
406 gshell-options
407 "-c"
408 command)
409 (call-process gshell nil t nil
410 "-c"
411 command)))
412 (goto-char (point-min))
413 ;; Issue an error, if no match.
414 (unless (eq 0 status)
415 (save-excursion
416 (skip-chars-forward " \t\n\j")
417 (if (looking-at "ls:")
418 (viper-forward-Word 1))
419 (error "%s: %s"
420 (if (stringp gshell)
421 gshell
422 "shell")
423 (buffer-substring (point) (viper-line-pos 'end)))
424 ))
425 (goto-char (point-min))
426 (viper-get-filenames-from-buffer 'one-per-line))
427 ))
428
429
430 ;; Interpret the stuff in the buffer as a list of file names
431 ;; return a list of file names listed in the buffer beginning at point
432 ;; If optional arg is supplied, assume each filename is listed on a separate
433 ;; line
434 (defun viper-get-filenames-from-buffer (&optional one-per-line)
435 (let ((skip-chars (if one-per-line "\t\n" " \t\n"))
436 result fname delim)
437 (skip-chars-forward skip-chars)
438 (while (not (eobp))
439 (if (cond ((looking-at "\"")
440 (setq delim ?\")
441 (re-search-forward "[^\"]+" nil t)) ; noerror
442 ((looking-at "'")
443 (setq delim ?')
444 (re-search-forward "[^']+" nil t)) ; noerror
445 (t
446 (re-search-forward
447 (concat "[^" skip-chars "]+") nil t))) ;noerror
448 (setq fname
449 (buffer-substring (match-beginning 0) (match-end 0))))
450 (if delim
451 (forward-char 1))
452 (skip-chars-forward " \t\n")
453 (setq result (cons fname result)))
454 result))
455
456 ;; convert MS-DOS wildcards to regexp
457 (defun viper-wildcard-to-regexp (wcard)
458 (save-excursion
459 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
460 (erase-buffer)
461 (insert wcard)
462 (goto-char (point-min))
463 (while (not (eobp))
464 (skip-chars-forward "^*?.\\\\")
465 (cond ((eq (char-after (point)) ?*) (insert ".")(forward-char 1))
466 ((eq (char-after (point)) ?.) (insert "\\")(forward-char 1))
467 ((eq (char-after (point)) ?\\) (insert "\\")(forward-char 1))
468 ((eq (char-after (point)) ??) (delete-char 1)(insert ".")))
469 )
470 (buffer-string)
471 ))
472
473
474 ;; glob windows files
475 ;; LIST is expected to be in reverse order
476 (defun viper-glob-mswindows-files (filespec)
477 (let ((case-fold-search t)
478 tmp tmp2)
479 (save-excursion
480 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
481 (erase-buffer)
482 (insert filespec)
483 (goto-char (point-min))
484 (setq tmp (viper-get-filenames-from-buffer))
485 (while tmp
486 (setq tmp2 (cons (directory-files
487 ;; the directory part
488 (or (file-name-directory (car tmp))
489 "")
490 t ; return full names
491 ;; the regexp part: globs the file names
492 (concat "^"
493 (viper-wildcard-to-regexp
494 (file-name-nondirectory (car tmp)))
495 "$"))
496 tmp2))
497 (setq tmp (cdr tmp)))
498 (reverse (apply 'append tmp2)))))
499
500 \f
501 ;;; Insertion ring
502
503 ;; Rotate RING's index. DIRection can be positive or negative.
504 (defun viper-ring-rotate1 (ring dir)
505 (if (and (ring-p ring) (> (ring-length ring) 0))
506 (progn
507 (setcar ring (cond ((> dir 0)
508 (ring-plus1 (car ring) (ring-length ring)))
509 ((< dir 0)
510 (ring-minus1 (car ring) (ring-length ring)))
511 ;; don't rotate if dir = 0
512 (t (car ring))))
513 (viper-current-ring-item ring)
514 )))
515
516 (defun viper-special-ring-rotate1 (ring dir)
517 (if (memq viper-intermediate-command
518 '(repeating-display-destructive-command
519 repeating-insertion-from-ring))
520 (viper-ring-rotate1 ring dir)
521 ;; don't rotate otherwise
522 (viper-ring-rotate1 ring 0)))
523
524 ;; current ring item; if N is given, then so many items back from the
525 ;; current
526 (defun viper-current-ring-item (ring &optional n)
527 (setq n (or n 0))
528 (if (and (ring-p ring) (> (ring-length ring) 0))
529 (aref (cdr (cdr ring)) (mod (- (car ring) 1 n) (ring-length ring)))))
530
531 ;; Push item onto ring. The second argument is a ring-variable, not value.
532 (defun viper-push-onto-ring (item ring-var)
533 (or (ring-p (eval ring-var))
534 (set ring-var (make-ring (eval (intern (format "%S-size" ring-var))))))
535 (or (null item) ; don't push nil
536 (and (stringp item) (string= item "")) ; or empty strings
537 (equal item (viper-current-ring-item (eval ring-var))) ; or old stuff
538 ;; Since viper-set-destructive-command checks if we are inside
539 ;; viper-repeat, we don't check whether this-command-keys is a `.'. The
540 ;; cmd viper-repeat makes a call to the current function only if `.' is
541 ;; executing a command from the command history. It doesn't call the
542 ;; push-onto-ring function if `.' is simply repeating the last
543 ;; destructive command. We only check for ESC (which happens when we do
544 ;; insert with a prefix argument, or if this-command-keys doesn't give
545 ;; anything meaningful (in that case we don't know what to show to the
546 ;; user).
547 (and (eq ring-var 'viper-command-ring)
548 (string-match "\\([0-9]*\e\\|^[ \t]*$\\|escape\\)"
549 (viper-array-to-string (this-command-keys))))
550 (viper-ring-insert (eval ring-var) item))
551 )
552
553
554 ;; removing elts from ring seems to break it
555 (defun viper-cleanup-ring (ring)
556 (or (< (ring-length ring) 2)
557 (null (viper-current-ring-item ring))
558 ;; last and previous equal
559 (if (equal (viper-current-ring-item ring)
560 (viper-current-ring-item ring 1))
561 (viper-ring-pop ring))))
562
563 ;; ring-remove seems to be buggy, so we concocted this for our purposes.
564 (defun viper-ring-pop (ring)
565 (let* ((ln (ring-length ring))
566 (vec (cdr (cdr ring)))
567 (veclen (length vec))
568 (hd (car ring))
569 (idx (max 0 (ring-minus1 hd ln)))
570 (top-elt (aref vec idx)))
571
572 ;; shift elements
573 (while (< (1+ idx) veclen)
574 (aset vec idx (aref vec (1+ idx)))
575 (setq idx (1+ idx)))
576 (aset vec idx nil)
577
578 (setq hd (max 0 (ring-minus1 hd ln)))
579 (if (= hd (1- ln)) (setq hd 0))
580 (setcar ring hd) ; move head
581 (setcar (cdr ring) (max 0 (1- ln))) ; adjust length
582 top-elt
583 ))
584
585 (defun viper-ring-insert (ring item)
586 (let* ((ln (ring-length ring))
587 (vec (cdr (cdr ring)))
588 (veclen (length vec))
589 (hd (car ring))
590 (vecpos-after-hd (if (= hd 0) ln hd))
591 (idx ln))
592
593 (if (= ln veclen)
594 (progn
595 (aset vec hd item) ; hd is always 1+ the actual head index in vec
596 (setcar ring (ring-plus1 hd ln)))
597 (setcar (cdr ring) (1+ ln))
598 (setcar ring (ring-plus1 vecpos-after-hd (1+ ln)))
599 (while (and (>= idx vecpos-after-hd) (> ln 0))
600 (aset vec idx (aref vec (1- idx)))
601 (setq idx (1- idx)))
602 (aset vec vecpos-after-hd item))
603 item))
604
605 \f
606 ;;; String utilities
607
608 ;; If STRING is longer than MAX-LEN, truncate it and print ...... instead
609 ;; PRE-STRING is a string to prepend to the abbrev string.
610 ;; POST-STRING is a string to append to the abbrev string.
611 ;; ABBREV_SIGN is a string to be inserted before POST-STRING
612 ;; if the orig string was truncated.
613 (defun viper-abbreviate-string (string max-len
614 pre-string post-string abbrev-sign)
615 (let (truncated-str)
616 (setq truncated-str
617 (if (stringp string)
618 (substring string 0 (min max-len (length string)))))
619 (cond ((null truncated-str) "")
620 ((> (length string) max-len)
621 (format "%s%s%s%s"
622 pre-string truncated-str abbrev-sign post-string))
623 (t (format "%s%s%s" pre-string truncated-str post-string)))))
624
625 ;; tells if we are over a whitespace-only line
626 (defsubst viper-over-whitespace-line ()
627 (save-excursion
628 (beginning-of-line)
629 (looking-at "^[ \t]*$")))
630
631 \f
632 ;;; Saving settings in custom file
633
634 ;; Save the current setting of VAR in CUSTOM-FILE.
635 ;; If given, MESSAGE is a message to be displayed after that.
636 ;; This message is erased after 2 secs, if erase-msg is non-nil.
637 ;; Arguments: var message custom-file &optional erase-message
638 (defun viper-save-setting (var message custom-file &optional erase-msg)
639 (let* ((var-name (symbol-name var))
640 (var-val (if (boundp var) (eval var)))
641 (regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z---_']*[ \t\n)]" var-name))
642 (buf (find-file-noselect (substitute-in-file-name custom-file)))
643 )
644 (message message)
645 (save-excursion
646 (set-buffer buf)
647 (goto-char (point-min))
648 (if (re-search-forward regexp nil t)
649 (let ((reg-end (1- (match-end 0))))
650 (search-backward var-name)
651 (delete-region (match-beginning 0) reg-end)
652 (goto-char (match-beginning 0))
653 (insert (format "%s '%S" var-name var-val)))
654 (goto-char (point-max))
655 (if (not (bolp)) (insert "\n"))
656 (insert (format "(setq %s '%S)\n" var-name var-val)))
657 (save-buffer))
658 (kill-buffer buf)
659 (if erase-msg
660 (progn
661 (sit-for 2)
662 (message "")))
663 ))
664
665 ;; Save STRING in CUSTOM-FILE. If PATTERN is non-nil, remove strings that
666 ;; match this pattern.
667 (defun viper-save-string-in-file (string custom-file &optional pattern)
668 (let ((buf (find-file-noselect (substitute-in-file-name custom-file))))
669 (save-excursion
670 (set-buffer buf)
671 (let (buffer-read-only)
672 (goto-char (point-min))
673 (if pattern (delete-matching-lines pattern))
674 (goto-char (point-max))
675 (if string (insert string))
676 (save-buffer)))
677 (kill-buffer buf)
678 ))
679
680
681 ;; define remote file test
682 (defun viper-file-remote-p (file-name)
683 (file-remote-p file-name))
684
685
686 ;; This is a simple-minded check for whether a file is under version control.
687 ;; If file,v exists but file doesn't, this file is considered to be not checked
688 ;; in and not checked out for the purpose of patching (since patch won't be
689 ;; able to read such a file anyway).
690 ;; FILE is a string representing file name
691 ;;(defun viper-file-under-version-control (file)
692 ;; (let* ((filedir (file-name-directory file))
693 ;; (file-nondir (file-name-nondirectory file))
694 ;; (trial (concat file-nondir ",v"))
695 ;; (full-trial (concat filedir trial))
696 ;; (full-rcs-trial (concat filedir "RCS/" trial)))
697 ;; (and (stringp file)
698 ;; (file-exists-p file)
699 ;; (or
700 ;; (and
701 ;; (file-exists-p full-trial)
702 ;; ;; in FAT FS, `file,v' and `file' may turn out to be the same!
703 ;; ;; don't be fooled by this!
704 ;; (not (equal (file-attributes file)
705 ;; (file-attributes full-trial))))
706 ;; ;; check if a version is in RCS/ directory
707 ;; (file-exists-p full-rcs-trial)))
708 ;; ))
709
710
711 (defsubst viper-file-checked-in-p (file)
712 (and (featurep 'vc-hooks)
713 ;; CVS files are considered not checked in
714 (not (memq (vc-backend file) '(nil CVS)))
715 (if (fboundp 'vc-state)
716 (and
717 (not (memq (vc-state file) '(edited needs-merge)))
718 (not (stringp (vc-state file))))
719 ;; XEmacs has no vc-state
720 (not (vc-locking-user file)))
721 ))
722
723 ;; checkout if visited file is checked in
724 (defun viper-maybe-checkout (buf)
725 (let ((file (expand-file-name (buffer-file-name buf)))
726 (checkout-function (key-binding "\C-x\C-q")))
727 (if (and (viper-file-checked-in-p file)
728 (or (beep 1) t)
729 (y-or-n-p
730 (format
731 "File %s is checked in. Check it out? "
732 (viper-abbreviate-file-name file))))
733 (with-current-buffer buf
734 (command-execute checkout-function)))))
735
736
737
738 \f
739 ;;; Overlays
740 (defun viper-put-on-search-overlay (beg end)
741 (if (viper-overlay-p viper-search-overlay)
742 (viper-move-overlay viper-search-overlay beg end)
743 (setq viper-search-overlay (viper-make-overlay beg end (current-buffer)))
744 (viper-overlay-put
745 viper-search-overlay 'priority viper-search-overlay-priority))
746 (viper-overlay-put viper-search-overlay 'face viper-search-face))
747
748 ;; Search
749
750 (defun viper-flash-search-pattern ()
751 (if (not (viper-has-face-support-p))
752 nil
753 (viper-put-on-search-overlay (match-beginning 0) (match-end 0))
754 (sit-for 2)
755 (viper-overlay-put viper-search-overlay 'face nil)))
756
757 (defun viper-hide-search-overlay ()
758 (if (not (viper-overlay-p viper-search-overlay))
759 (progn
760 (setq viper-search-overlay
761 (viper-make-overlay (point-min) (point-min) (current-buffer)))
762 (viper-overlay-put
763 viper-search-overlay 'priority viper-search-overlay-priority)))
764 (viper-overlay-put viper-search-overlay 'face nil))
765
766 ;; Replace state
767
768 (defsubst viper-move-replace-overlay (beg end)
769 (viper-move-overlay viper-replace-overlay beg end))
770
771 (defun viper-set-replace-overlay (beg end)
772 (if (viper-overlay-live-p viper-replace-overlay)
773 (viper-move-replace-overlay beg end)
774 (setq viper-replace-overlay (viper-make-overlay beg end (current-buffer)))
775 ;; never detach
776 (viper-overlay-put
777 viper-replace-overlay (if viper-emacs-p 'evaporate 'detachable) nil)
778 (viper-overlay-put
779 viper-replace-overlay 'priority viper-replace-overlay-priority)
780 ;; If Emacs will start supporting overlay maps, as it currently supports
781 ;; text-property maps, we could do away with viper-replace-minor-mode and
782 ;; just have keymap attached to replace overlay.
783 ;;(viper-overlay-put
784 ;; viper-replace-overlay
785 ;; (if viper-xemacs-p 'keymap 'local-map)
786 ;; viper-replace-map)
787 )
788 (if (viper-has-face-support-p)
789 (viper-overlay-put
790 viper-replace-overlay 'face viper-replace-overlay-face))
791 (viper-save-cursor-color 'before-replace-mode)
792 (viper-change-cursor-color viper-replace-overlay-cursor-color)
793 )
794
795
796 (defun viper-set-replace-overlay-glyphs (before-glyph after-glyph)
797 (or (viper-overlay-live-p viper-replace-overlay)
798 (viper-set-replace-overlay (point-min) (point-min)))
799 (if (or (not (viper-has-face-support-p))
800 viper-use-replace-region-delimiters)
801 (let ((before-name (if viper-xemacs-p 'begin-glyph 'before-string))
802 (after-name (if viper-xemacs-p 'end-glyph 'after-string)))
803 (viper-overlay-put viper-replace-overlay before-name before-glyph)
804 (viper-overlay-put viper-replace-overlay after-name after-glyph))))
805
806 (defun viper-hide-replace-overlay ()
807 (viper-set-replace-overlay-glyphs nil nil)
808 (viper-restore-cursor-color 'after-replace-mode)
809 (viper-restore-cursor-color 'after-insert-mode)
810 (if (viper-has-face-support-p)
811 (viper-overlay-put viper-replace-overlay 'face nil)))
812
813
814 (defsubst viper-replace-start ()
815 (viper-overlay-start viper-replace-overlay))
816 (defsubst viper-replace-end ()
817 (viper-overlay-end viper-replace-overlay))
818
819
820 ;; Minibuffer
821
822 (defun viper-set-minibuffer-overlay ()
823 (viper-check-minibuffer-overlay)
824 (if (viper-has-face-support-p)
825 (progn
826 (viper-overlay-put
827 viper-minibuffer-overlay 'face viper-minibuffer-current-face)
828 (viper-overlay-put
829 viper-minibuffer-overlay 'priority viper-minibuffer-overlay-priority)
830 ;; never detach
831 (viper-overlay-put
832 viper-minibuffer-overlay
833 (if viper-emacs-p 'evaporate 'detachable)
834 nil)
835 ;; make viper-minibuffer-overlay open-ended
836 ;; In emacs, it is made open ended at creation time
837 (if viper-xemacs-p
838 (progn
839 (viper-overlay-put viper-minibuffer-overlay 'start-open nil)
840 (viper-overlay-put viper-minibuffer-overlay 'end-open nil)))
841 )))
842
843 (defun viper-check-minibuffer-overlay ()
844 (if (viper-overlay-live-p viper-minibuffer-overlay)
845 (viper-move-overlay
846 viper-minibuffer-overlay
847 (if (fboundp 'minibuffer-prompt-end) (minibuffer-prompt-end) 1)
848 (1+ (buffer-size)))
849 (setq viper-minibuffer-overlay
850 (if viper-xemacs-p
851 (viper-make-overlay 1 (1+ (buffer-size)) (current-buffer))
852 ;; make overlay open-ended
853 (viper-make-overlay
854 (if (fboundp 'minibuffer-prompt-end) (minibuffer-prompt-end) 1)
855 (1+ (buffer-size))
856 (current-buffer) nil 'rear-advance)))
857 ))
858
859
860 (defsubst viper-is-in-minibuffer ()
861 (save-match-data
862 (string-match "\*Minibuf-" (buffer-name))))
863
864
865 \f
866 ;;; XEmacs compatibility
867
868 (defun viper-abbreviate-file-name (file)
869 (viper-cond-compile-for-xemacs-or-emacs
870 ;; XEmacs requires addl argument
871 (abbreviate-file-name file t)
872 ;; emacs
873 (abbreviate-file-name file)
874 ))
875
876 ;; Sit for VAL milliseconds. XEmacs doesn't support the millisecond arg
877 ;; in sit-for, so this function smoothes out the differences.
878 (defsubst viper-sit-for-short (val &optional nodisp)
879 (if viper-xemacs-p
880 (sit-for (/ val 1000.0) nodisp)
881 (sit-for 0 val nodisp)))
882
883 ;; EVENT may be a single event of a sequence of events
884 (defsubst viper-ESC-event-p (event)
885 (let ((ESC-keys '(?\e (control \[) escape))
886 (key (viper-event-key event)))
887 (member key ESC-keys)))
888
889 ;; checks if object is a marker, has a buffer, and points to within that buffer
890 (defun viper-valid-marker (marker)
891 (if (and (markerp marker) (marker-buffer marker))
892 (let ((buf (marker-buffer marker))
893 (pos (marker-position marker)))
894 (save-excursion
895 (set-buffer buf)
896 (and (<= pos (point-max)) (<= (point-min) pos))))))
897
898 (defsubst viper-mark-marker ()
899 (viper-cond-compile-for-xemacs-or-emacs
900 (mark-marker t) ; xemacs
901 (mark-marker) ; emacs
902 ))
903
904 ;; like (set-mark-command nil) but doesn't push twice, if (car mark-ring)
905 ;; is the same as (mark t).
906 (defsubst viper-set-mark-if-necessary ()
907 (setq mark-ring (delete (viper-mark-marker) mark-ring))
908 (set-mark-command nil)
909 (setq viper-saved-mark (point)))
910
911 ;; In transient mark mode (zmacs mode), it is annoying when regions become
912 ;; highlighted due to Viper's pushing marks. So, we deactivate marks, unless
913 ;; the user explicitly wants highlighting, e.g., by hitting '' or ``
914 (defun viper-deactivate-mark ()
915 (viper-cond-compile-for-xemacs-or-emacs
916 (zmacs-deactivate-region)
917 (deactivate-mark)
918 ))
919
920 (defsubst viper-leave-region-active ()
921 (viper-cond-compile-for-xemacs-or-emacs
922 (setq zmacs-region-stays t)
923 nil
924 ))
925
926 ;; Check if arg is a valid character for register
927 ;; TYPE is a list that can contain `letter', `Letter', and `digit'.
928 ;; Letter means lowercase letters, Letter means uppercase letters, and
929 ;; digit means digits from 1 to 9.
930 ;; If TYPE is nil, then down/uppercase letters and digits are allowed.
931 (defun viper-valid-register (reg &optional type)
932 (or type (setq type '(letter Letter digit)))
933 (or (if (memq 'letter type)
934 (and (<= ?a reg) (<= reg ?z)))
935 (if (memq 'digit type)
936 (and (<= ?1 reg) (<= reg ?9)))
937 (if (memq 'Letter type)
938 (and (<= ?A reg) (<= reg ?Z)))
939 ))
940
941
942
943 ;; it is suggested that an event must be copied before it is assigned to
944 ;; last-command-event in XEmacs
945 (defun viper-copy-event (event)
946 (viper-cond-compile-for-xemacs-or-emacs
947 (copy-event event) ; xemacs
948 event ; emacs
949 ))
950
951 ;; Uses different timeouts for ESC-sequences and others
952 (defsubst viper-fast-keysequence-p ()
953 (not (viper-sit-for-short
954 (if (viper-ESC-event-p last-input-event)
955 viper-ESC-keyseq-timeout
956 viper-fast-keyseq-timeout)
957 t)))
958
959 ;; like read-event, but in XEmacs also try to convert to char, if possible
960 (defun viper-read-event-convert-to-char ()
961 (let (event)
962 (viper-cond-compile-for-xemacs-or-emacs
963 (progn
964 (setq event (next-command-event))
965 (or (event-to-character event)
966 event))
967 (read-event)
968 )
969 ))
970
971 ;; Viperized read-key-sequence
972 (defun viper-read-key-sequence (prompt &optional continue-echo)
973 (let (inhibit-quit event keyseq)
974 (setq keyseq (read-key-sequence prompt continue-echo))
975 (setq event (if viper-xemacs-p
976 (elt keyseq 0) ; XEmacs returns vector of events
977 (elt (listify-key-sequence keyseq) 0)))
978 (if (viper-ESC-event-p event)
979 (let (unread-command-events)
980 (if (viper-fast-keysequence-p)
981 (let ((viper-vi-global-user-minor-mode nil)
982 (viper-vi-local-user-minor-mode nil)
983 (viper-vi-intercept-minor-mode nil)
984 (viper-insert-intercept-minor-mode nil)
985 (viper-replace-minor-mode nil) ; actually unnecessary
986 (viper-insert-global-user-minor-mode nil)
987 (viper-insert-local-user-minor-mode nil))
988 ;; Note: set unread-command-events only after testing for fast
989 ;; keysequence. Otherwise, viper-fast-keysequence-p will be
990 ;; always t -- whether there is anything after ESC or not
991 (viper-set-unread-command-events keyseq)
992 (setq keyseq (read-key-sequence nil)))
993 (viper-set-unread-command-events keyseq)
994 (setq keyseq (read-key-sequence nil)))))
995 keyseq))
996
997
998 ;; This function lets function-key-map convert key sequences into logical
999 ;; keys. This does a better job than viper-read-event when it comes to kbd
1000 ;; macros, since it enables certain macros to be shared between X and TTY modes
1001 ;; by correctly mapping key sequences for Left/Right/... (one an ascii
1002 ;; terminal) into logical keys left, right, etc.
1003 (defun viper-read-key ()
1004 (let ((overriding-local-map viper-overriding-map)
1005 (inhibit-quit t)
1006 help-char key)
1007 (use-global-map viper-overriding-map)
1008 (unwind-protect
1009 (setq key (elt (viper-read-key-sequence nil) 0))
1010 (use-global-map global-map))
1011 key))
1012
1013
1014 ;; Emacs has a bug in eventp, which causes (eventp nil) to return (nil)
1015 ;; instead of nil, if '(nil) was previously inadvertently assigned to
1016 ;; unread-command-events
1017 (defun viper-event-key (event)
1018 (or (and event (eventp event))
1019 (error "viper-event-key: Wrong type argument, eventp, %S" event))
1020 (when (viper-cond-compile-for-xemacs-or-emacs
1021 (or (key-press-event-p event) (mouse-event-p event)) ; xemacs
1022 t ; emacs
1023 )
1024 (let ((mod (event-modifiers event))
1025 basis)
1026 (setq basis
1027 (viper-cond-compile-for-xemacs-or-emacs
1028 ;; XEmacs
1029 (cond ((key-press-event-p event)
1030 (event-key event))
1031 ((button-event-p event)
1032 (concat "mouse-" (prin1-to-string (event-button event))))
1033 (t
1034 (error "viper-event-key: Unknown event, %S" event)))
1035 ;; Emacs doesn't handle capital letters correctly, since
1036 ;; \S-a isn't considered the same as A (it behaves as
1037 ;; plain `a' instead). So we take care of this here
1038 (cond ((and (viper-characterp event) (<= ?A event) (<= event ?Z))
1039 (setq mod nil
1040 event event))
1041 ;; Emacs has the oddity whereby characters 128+char
1042 ;; represent M-char *if* this appears inside a string.
1043 ;; So, we convert them manually to (meta char).
1044 ((and (viper-characterp event)
1045 (< ?\C-? event) (<= event 255))
1046 (setq mod '(meta)
1047 event (- event ?\C-? 1)))
1048 ((and (null mod) (eq event 'return))
1049 (setq event ?\C-m))
1050 ((and (null mod) (eq event 'space))
1051 (setq event ?\ ))
1052 ((and (null mod) (eq event 'delete))
1053 (setq event ?\C-?))
1054 ((and (null mod) (eq event 'backspace))
1055 (setq event ?\C-h))
1056 (t (event-basic-type event)))
1057 ) ; viper-cond-compile-for-xemacs-or-emacs
1058 )
1059 (if (viper-characterp basis)
1060 (setq basis
1061 (if (viper= basis ?\C-?)
1062 (list 'control '\?) ; taking care of an emacs bug
1063 (intern (char-to-string basis)))))
1064 (if mod
1065 (append mod (list basis))
1066 basis))))
1067
1068 (defun viper-key-to-emacs-key (key)
1069 (let (key-name char-p modifiers mod-char-list base-key base-key-name)
1070 (cond (viper-xemacs-p key)
1071
1072 ((symbolp key)
1073 (setq key-name (symbol-name key))
1074 (cond ((= (length key-name) 1) ; character event
1075 (string-to-char key-name))
1076 ;; Emacs doesn't recognize `return' and `escape' as events on
1077 ;; dumb terminals, so we translate them into characters
1078 ((and viper-emacs-p (not (viper-window-display-p))
1079 (string= key-name "return"))
1080 ?\C-m)
1081 ((and viper-emacs-p (not (viper-window-display-p))
1082 (string= key-name "escape"))
1083 ?\e)
1084 ;; pass symbol-event as is
1085 (t key)))
1086
1087 ((listp key)
1088 (setq modifiers (viper-subseq key 0 (1- (length key)))
1089 base-key (viper-seq-last-elt key)
1090 base-key-name (symbol-name base-key)
1091 char-p (= (length base-key-name) 1))
1092 (setq mod-char-list
1093 (mapcar
1094 '(lambda (elt) (upcase (substring (symbol-name elt) 0 1)))
1095 modifiers))
1096 (if char-p
1097 (setq key-name
1098 (car (read-from-string
1099 (concat
1100 "?\\"
1101 (mapconcat 'identity mod-char-list "-\\")
1102 "-"
1103 base-key-name))))
1104 (setq key-name
1105 (intern
1106 (concat
1107 (mapconcat 'identity mod-char-list "-")
1108 "-"
1109 base-key-name))))))
1110 ))
1111
1112
1113 ;; LIS is assumed to be a list of events of characters
1114 (defun viper-eventify-list-xemacs (lis)
1115 (mapcar
1116 (lambda (elt)
1117 (cond ((viper-characterp elt) (character-to-event elt))
1118 ((eventp elt) elt)
1119 (t (error
1120 "viper-eventify-list-xemacs: can't convert to event, %S"
1121 elt))))
1122 lis))
1123
1124
1125 ;; Smoothes out the difference between Emacs' unread-command-events
1126 ;; and XEmacs unread-command-event. Arg is a character, an event, a list of
1127 ;; events or a sequence of keys.
1128 ;;
1129 ;; Due to the way unread-command-events in Emacs (not XEmacs), a non-event
1130 ;; symbol in unread-command-events list may cause Emacs to turn this symbol
1131 ;; into an event. Below, we delete nil from event lists, since nil is the most
1132 ;; common symbol that might appear in this wrong context.
1133 (defun viper-set-unread-command-events (arg)
1134 (if viper-emacs-p
1135 (setq
1136 unread-command-events
1137 (let ((new-events
1138 (cond ((eventp arg) (list arg))
1139 ((listp arg) arg)
1140 ((sequencep arg)
1141 (listify-key-sequence arg))
1142 (t (error
1143 "viper-set-unread-command-events: Invalid argument, %S"
1144 arg)))))
1145 (if (not (eventp nil))
1146 (setq new-events (delq nil new-events)))
1147 (append new-events unread-command-events)))
1148 ;; XEmacs
1149 (setq
1150 unread-command-events
1151 (append
1152 (cond ((viper-characterp arg) (list (character-to-event arg)))
1153 ((eventp arg) (list arg))
1154 ((stringp arg) (mapcar 'character-to-event arg))
1155 ((vectorp arg) (append arg nil)) ; turn into list
1156 ((listp arg) (viper-eventify-list-xemacs arg))
1157 (t (error
1158 "viper-set-unread-command-events: Invalid argument, %S" arg)))
1159 unread-command-events))))
1160
1161
1162 ;; Check if vec is a vector of key-press events representing characters
1163 ;; XEmacs only
1164 (defun viper-event-vector-p (vec)
1165 (and (vectorp vec)
1166 (eval (cons 'and (mapcar '(lambda (elt) (if (eventp elt) t)) vec)))))
1167
1168
1169 ;; check if vec is a vector of character symbols
1170 (defun viper-char-symbol-sequence-p (vec)
1171 (and
1172 (sequencep vec)
1173 (eval
1174 (cons 'and
1175 (mapcar (lambda (elt)
1176 (and (symbolp elt) (= (length (symbol-name elt)) 1)))
1177 vec)))))
1178
1179
1180 (defun viper-char-array-p (array)
1181 (eval (cons 'and (mapcar 'viper-characterp array))))
1182
1183
1184 ;; Args can be a sequence of events, a string, or a Viper macro. Will try to
1185 ;; convert events to keys and, if all keys are regular printable
1186 ;; characters, will return a string. Otherwise, will return a string
1187 ;; representing a vector of converted events. If the input was a Viper macro,
1188 ;; will return a string that represents this macro as a vector.
1189 (defun viper-array-to-string (event-seq)
1190 (let (temp temp2)
1191 (cond ((stringp event-seq) event-seq)
1192 ((viper-event-vector-p event-seq)
1193 (setq temp (mapcar 'viper-event-key event-seq))
1194 (cond ((viper-char-symbol-sequence-p temp)
1195 (mapconcat 'symbol-name temp ""))
1196 ((and (viper-char-array-p
1197 (setq temp2 (mapcar 'viper-key-to-character temp))))
1198 (mapconcat 'char-to-string temp2 ""))
1199 (t (prin1-to-string (vconcat temp)))))
1200 ((viper-char-symbol-sequence-p event-seq)
1201 (mapconcat 'symbol-name event-seq ""))
1202 ((and (vectorp event-seq)
1203 (viper-char-array-p
1204 (setq temp (mapcar 'viper-key-to-character event-seq))))
1205 (mapconcat 'char-to-string temp ""))
1206 (t (prin1-to-string event-seq)))))
1207
1208 (defun viper-key-press-events-to-chars (events)
1209 (mapconcat (viper-cond-compile-for-xemacs-or-emacs
1210 (lambda (elt) (char-to-string (event-to-character elt))) ; xemacs
1211 'char-to-string ; emacs
1212 )
1213 events
1214 ""))
1215
1216
1217 (defun viper-read-char-exclusive ()
1218 (let (char
1219 (echo-keystrokes 1))
1220 (while (null char)
1221 (condition-case nil
1222 (setq char (read-char))
1223 (error
1224 ;; skip event if not char
1225 (viper-read-event))))
1226 char))
1227
1228 ;; key is supposed to be in viper's representation, e.g., (control l), a
1229 ;; character, etc.
1230 (defun viper-key-to-character (key)
1231 (cond ((eq key 'space) ?\ )
1232 ((eq key 'delete) ?\C-?)
1233 ((eq key 'return) ?\C-m)
1234 ((eq key 'backspace) ?\C-h)
1235 ((and (symbolp key)
1236 (= 1 (length (symbol-name key))))
1237 (string-to-char (symbol-name key)))
1238 ((and (listp key)
1239 (eq (car key) 'control)
1240 (symbol-name (nth 1 key))
1241 (= 1 (length (symbol-name (nth 1 key)))))
1242 (read (format "?\\C-%s" (symbol-name (nth 1 key)))))
1243 (t key)))
1244
1245
1246 (defun viper-setup-master-buffer (&rest other-files-or-buffers)
1247 "Set up the current buffer as a master buffer.
1248 Arguments become related buffers. This function should normally be used in
1249 the `Local variables' section of a file."
1250 (setq viper-related-files-and-buffers-ring
1251 (make-ring (1+ (length other-files-or-buffers))))
1252 (mapcar '(lambda (elt)
1253 (viper-ring-insert viper-related-files-and-buffers-ring elt))
1254 other-files-or-buffers)
1255 (viper-ring-insert viper-related-files-and-buffers-ring (buffer-name))
1256 )
1257
1258 ;;; Movement utilities
1259
1260 ;; Characters that should not be considered as part of the word, in reformed-vi
1261 ;; syntax mode.
1262 ;; Note: \\ (quoted \) must appear before `-' because this string is listified
1263 ;; into characters at some point and then put back to string. The result is
1264 ;; used in skip-chars-forward, which treats - specially. Here we achieve the
1265 ;; effect of quoting - and preventing it from being special.
1266 (defconst viper-non-word-characters-reformed-vi
1267 "!@#$%^&*()\\-+=|\\~`{}[];:'\",<.>/?")
1268 ;; These are characters that are not to be considered as parts of a word in
1269 ;; Viper.
1270 ;; Set each time state changes and at loading time
1271 (viper-deflocalvar viper-non-word-characters nil)
1272
1273 ;; must be buffer-local
1274 (viper-deflocalvar viper-ALPHA-char-class "w"
1275 "String of syntax classes characterizing Viper's alphanumeric symbols.
1276 In addition, the symbol `_' may be considered alphanumeric if
1277 `viper-syntax-preference' is `strict-vi' or `reformed-vi'.")
1278
1279 (defconst viper-strict-ALPHA-chars "a-zA-Z0-9_"
1280 "Regexp matching the set of alphanumeric characters acceptable to strict
1281 Vi.")
1282 (defconst viper-strict-SEP-chars " \t\n"
1283 "Regexp matching the set of alphanumeric characters acceptable to strict
1284 Vi.")
1285 (defconst viper-strict-SEP-chars-sans-newline " \t"
1286 "Regexp matching the set of alphanumeric characters acceptable to strict
1287 Vi.")
1288
1289 (defconst viper-SEP-char-class " -"
1290 "String of syntax classes for Vi separators.
1291 Usually contains ` ', linefeed, TAB or formfeed.")
1292
1293
1294 ;; Set Viper syntax classes and related variables according to
1295 ;; `viper-syntax-preference'.
1296 (defun viper-update-syntax-classes (&optional set-default)
1297 (let ((preference (cond ((eq viper-syntax-preference 'emacs)
1298 "w") ; Viper words have only Emacs word chars
1299 ((eq viper-syntax-preference 'extended)
1300 "w_") ; Viper words have Emacs word & symbol chars
1301 (t "w"))) ; Viper words are Emacs words plus `_'
1302 (non-word-chars (cond ((eq viper-syntax-preference 'reformed-vi)
1303 (viper-string-to-list
1304 viper-non-word-characters-reformed-vi))
1305 (t nil))))
1306 (if set-default
1307 (setq-default viper-ALPHA-char-class preference
1308 viper-non-word-characters non-word-chars)
1309 (setq viper-ALPHA-char-class preference
1310 viper-non-word-characters non-word-chars))
1311 ))
1312
1313 ;; SYMBOL is used because customize requires it, but it is ignored, unless it
1314 ;; is `nil'. If nil, use setq.
1315 (defun viper-set-syntax-preference (&optional symbol value)
1316 "Set Viper syntax preference.
1317 If called interactively or if SYMBOL is nil, sets syntax preference in current
1318 buffer. If called non-interactively, preferably via the customization widget,
1319 sets the default value."
1320 (interactive)
1321 (or value
1322 (setq value
1323 (completing-read
1324 "Viper syntax preference: "
1325 '(("strict-vi") ("reformed-vi") ("extended") ("emacs"))
1326 nil 'require-match)))
1327 (if (stringp value) (setq value (intern value)))
1328 (or (memq value '(strict-vi reformed-vi extended emacs))
1329 (error "Invalid Viper syntax preference, %S" value))
1330 (if symbol
1331 (setq-default viper-syntax-preference value)
1332 (setq viper-syntax-preference value))
1333 (viper-update-syntax-classes))
1334
1335 (defcustom viper-syntax-preference 'reformed-vi
1336 "*Syntax type characterizing Viper's alphanumeric symbols.
1337 Affects movement and change commands that deal with Vi-style words.
1338 Works best when set in the hooks to various major modes.
1339
1340 `strict-vi' means Viper words are (hopefully) exactly as in Vi.
1341
1342 `reformed-vi' means Viper words are like Emacs words \(as determined using
1343 Emacs syntax tables, which are different for different major modes\) with two
1344 exceptions: the symbol `_' is always part of a word and typical Vi non-word
1345 symbols, such as `,',:,\",),{, etc., are excluded.
1346 This behaves very close to `strict-vi', but also works well with non-ASCII
1347 characters from various alphabets.
1348
1349 `extended' means Viper word constituents are symbols that are marked as being
1350 parts of words OR symbols in Emacs syntax tables.
1351 This is most appropriate for major modes intended for editing programs.
1352
1353 `emacs' means Viper words are the same as Emacs words as specified by Emacs
1354 syntax tables.
1355 This option is appropriate if you like Emacs-style words."
1356 :type '(radio (const strict-vi) (const reformed-vi)
1357 (const extended) (const emacs))
1358 :set 'viper-set-syntax-preference
1359 :group 'viper)
1360 (make-variable-buffer-local 'viper-syntax-preference)
1361
1362
1363 ;; addl-chars are characters to be temporarily considered as alphanumerical
1364 (defun viper-looking-at-alpha (&optional addl-chars)
1365 (or (stringp addl-chars) (setq addl-chars ""))
1366 (if (eq viper-syntax-preference 'reformed-vi)
1367 (setq addl-chars (concat addl-chars "_")))
1368 (let ((char (char-after (point))))
1369 (if char
1370 (if (eq viper-syntax-preference 'strict-vi)
1371 (looking-at (concat "[" viper-strict-ALPHA-chars addl-chars "]"))
1372 (or
1373 ;; or one of the additional chars being asked to include
1374 (viper-memq-char char (viper-string-to-list addl-chars))
1375 (and
1376 ;; not one of the excluded word chars (note:
1377 ;; viper-non-word-characters is a list)
1378 (not (viper-memq-char char viper-non-word-characters))
1379 ;; char of the Viper-word syntax class
1380 (viper-memq-char (char-syntax char)
1381 (viper-string-to-list viper-ALPHA-char-class))))))
1382 ))
1383
1384 (defun viper-looking-at-separator ()
1385 (let ((char (char-after (point))))
1386 (if char
1387 (if (eq viper-syntax-preference 'strict-vi)
1388 (viper-memq-char char (viper-string-to-list viper-strict-SEP-chars))
1389 (or (eq char ?\n) ; RET is always a separator in Vi
1390 (viper-memq-char (char-syntax char)
1391 (viper-string-to-list viper-SEP-char-class)))))
1392 ))
1393
1394 (defsubst viper-looking-at-alphasep (&optional addl-chars)
1395 (or (viper-looking-at-separator) (viper-looking-at-alpha addl-chars)))
1396
1397 (defun viper-skip-alpha-forward (&optional addl-chars)
1398 (or (stringp addl-chars) (setq addl-chars ""))
1399 (viper-skip-syntax
1400 'forward
1401 (cond ((eq viper-syntax-preference 'strict-vi)
1402 "")
1403 (t viper-ALPHA-char-class))
1404 (cond ((eq viper-syntax-preference 'strict-vi)
1405 (concat viper-strict-ALPHA-chars addl-chars))
1406 (t addl-chars))))
1407
1408 (defun viper-skip-alpha-backward (&optional addl-chars)
1409 (or (stringp addl-chars) (setq addl-chars ""))
1410 (viper-skip-syntax
1411 'backward
1412 (cond ((eq viper-syntax-preference 'strict-vi)
1413 "")
1414 (t viper-ALPHA-char-class))
1415 (cond ((eq viper-syntax-preference 'strict-vi)
1416 (concat viper-strict-ALPHA-chars addl-chars))
1417 (t addl-chars))))
1418
1419 ;; weird syntax tables may confuse strict-vi style
1420 (defsubst viper-skip-all-separators-forward (&optional within-line)
1421 (if (eq viper-syntax-preference 'strict-vi)
1422 (if within-line
1423 (skip-chars-forward viper-strict-SEP-chars-sans-newline)
1424 (skip-chars-forward viper-strict-SEP-chars))
1425 (viper-skip-syntax 'forward
1426 viper-SEP-char-class
1427 (or within-line "\n")
1428 (if within-line (viper-line-pos 'end)))))
1429
1430 (defsubst viper-skip-all-separators-backward (&optional within-line)
1431 (if (eq viper-syntax-preference 'strict-vi)
1432 (if within-line
1433 (skip-chars-backward viper-strict-SEP-chars-sans-newline)
1434 (skip-chars-backward viper-strict-SEP-chars))
1435 (viper-skip-syntax 'backward
1436 viper-SEP-char-class
1437 (or within-line "\n")
1438 (if within-line (viper-line-pos 'start)))))
1439 (defun viper-skip-nonseparators (direction)
1440 (viper-skip-syntax
1441 direction
1442 (concat "^" viper-SEP-char-class)
1443 nil
1444 (viper-line-pos (if (eq direction 'forward) 'end 'start))))
1445
1446
1447 ;; skip over non-word constituents and non-separators
1448 (defun viper-skip-nonalphasep-forward ()
1449 (if (eq viper-syntax-preference 'strict-vi)
1450 (skip-chars-forward
1451 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars))
1452 (viper-skip-syntax
1453 'forward
1454 (concat "^" viper-ALPHA-char-class viper-SEP-char-class)
1455 ;; Emacs may consider some of these as words, but we don't want them
1456 viper-non-word-characters
1457 (viper-line-pos 'end))))
1458
1459 (defun viper-skip-nonalphasep-backward ()
1460 (if (eq viper-syntax-preference 'strict-vi)
1461 (skip-chars-backward
1462 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars))
1463 (viper-skip-syntax
1464 'backward
1465 (concat "^" viper-ALPHA-char-class viper-SEP-char-class)
1466 ;; Emacs may consider some of these as words, but we don't want them
1467 viper-non-word-characters
1468 (viper-line-pos 'start))))
1469
1470 ;; Skip SYNTAX like skip-syntax-* and ADDL-CHARS like skip-chars-*
1471 ;; Return the number of chars traveled.
1472 ;; Both SYNTAX or ADDL-CHARS can be strings or lists of characters.
1473 ;; When SYNTAX is "w", then viper-non-word-characters are not considered to be
1474 ;; words, even if Emacs syntax table says they are.
1475 (defun viper-skip-syntax (direction syntax addl-chars &optional limit)
1476 (let ((total 0)
1477 (local 1)
1478 (skip-chars-func
1479 (if (eq direction 'forward)
1480 'skip-chars-forward 'skip-chars-backward))
1481 (skip-syntax-func
1482 (if (eq direction 'forward)
1483 'viper-forward-char-carefully 'viper-backward-char-carefully))
1484 char-looked-at syntax-of-char-looked-at negated-syntax)
1485 (setq addl-chars
1486 (cond ((listp addl-chars) (viper-charlist-to-string addl-chars))
1487 ((stringp addl-chars) addl-chars)
1488 (t "")))
1489 (setq syntax
1490 (cond ((listp syntax) syntax)
1491 ((stringp syntax) (viper-string-to-list syntax))
1492 (t nil)))
1493 (if (memq ?^ syntax) (setq negated-syntax t))
1494
1495 (while (and (not (= local 0))
1496 (cond ((eq direction 'forward)
1497 (not (eobp)))
1498 (t (not (bobp)))))
1499 (setq char-looked-at (viper-char-at-pos direction)
1500 ;; if outside the range, set to nil
1501 syntax-of-char-looked-at (if char-looked-at
1502 (char-syntax char-looked-at)))
1503 (setq local
1504 (+ (if (and
1505 (cond ((and limit (eq direction 'forward))
1506 (< (point) limit))
1507 (limit ; backward & limit
1508 (> (point) limit))
1509 (t t)) ; no limit
1510 ;; char under/before cursor has appropriate syntax
1511 (if negated-syntax
1512 (not (memq syntax-of-char-looked-at syntax))
1513 (memq syntax-of-char-looked-at syntax))
1514 ;; if char-syntax class is "word", make sure it is not one
1515 ;; of the excluded characters
1516 (if (and (eq syntax-of-char-looked-at ?w)
1517 (not negated-syntax))
1518 (not (viper-memq-char
1519 char-looked-at viper-non-word-characters))
1520 t))
1521 (funcall skip-syntax-func 1)
1522 0)
1523 (funcall skip-chars-func addl-chars limit)))
1524 (setq total (+ total local)))
1525 total
1526 ))
1527
1528 ;; tells when point is at the beginning of field
1529 (defun viper-beginning-of-field ()
1530 (or (bobp)
1531 (not (eq (get-char-property (point) 'field)
1532 (get-char-property (1- (point)) 'field)))))
1533
1534
1535 ;; this is copied from cl-extra.el
1536 ;; Return the subsequence of SEQ from START to END.
1537 ;; If END is omitted, it defaults to the length of the sequence.
1538 ;; If START or END is negative, it counts from the end.
1539 (defun viper-subseq (seq start &optional end)
1540 (if (stringp seq) (substring seq start end)
1541 (let (len)
1542 (and end (< end 0) (setq end (+ end (setq len (length seq)))))
1543 (if (< start 0) (setq start (+ start (or len (setq len (length seq))))))
1544 (cond ((listp seq)
1545 (if (> start 0) (setq seq (nthcdr start seq)))
1546 (if end
1547 (let ((res nil))
1548 (while (>= (setq end (1- end)) start)
1549 (push (pop seq) res))
1550 (nreverse res))
1551 (copy-sequence seq)))
1552 (t
1553 (or end (setq end (or len (length seq))))
1554 (let ((res (make-vector (max (- end start) 0) nil))
1555 (i 0))
1556 (while (< start end)
1557 (aset res i (aref seq start))
1558 (setq i (1+ i) start (1+ start)))
1559 res))))))
1560
1561
1562
1563 (provide 'viper-util)
1564
1565
1566 ;;; Local Variables:
1567 ;;; eval: (put 'viper-deflocalvar 'lisp-indent-hook 'defun)
1568 ;;; End:
1569
1570 ;;; arch-tag: 7f023fd5-dd9e-4378-a397-9c179553b0e3
1571 ;;; viper-util.el ends here