1 ;;; viper-util.el --- Utilities used by viper.el
3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
26 (defvar viper-overriding-map
)
27 (defvar pm-color-alist
)
28 (defvar zmacs-region-stays
)
29 (defvar viper-minibuffer-current-face
)
30 (defvar viper-minibuffer-insert-face
)
31 (defvar viper-minibuffer-vi-face
)
32 (defvar viper-minibuffer-emacs-face
)
33 (defvar viper-replace-overlay-face
)
34 (defvar viper-fast-keyseq-timeout
)
35 (defvar ex-unix-type-shell
)
36 (defvar ex-unix-type-shell-options
)
37 (defvar viper-ex-tmp-buf-name
)
38 (defvar viper-syntax-preference
)
45 (let ((load-path (cons (expand-file-name ".") load-path
)))
46 (or (featurep 'viper-init
)
47 (load "viper-init.el" nil nil
'nosuffix
))
54 ;; A fix for NeXT Step
55 ;; Should go away, when NS people fix the design flaw, which leaves the
56 ;; two x-* functions undefined.
57 (if (and (not (fboundp 'x-display-color-p
)) (fboundp 'ns-display-color-p
))
58 (fset 'x-display-color-p
(symbol-function 'ns-display-color-p
)))
59 (if (and (not (fboundp 'x-color-defined-p
)) (fboundp 'ns-color-defined-p
))
60 (fset 'x-color-defined-p
(symbol-function 'ns-color-defined-p
)))
68 (fset 'viper-read-event
(symbol-function 'next-command-event
))
69 (fset 'viper-make-overlay
(symbol-function 'make-extent
))
70 (fset 'viper-overlay-start
(symbol-function 'extent-start-position
))
71 (fset 'viper-overlay-end
(symbol-function 'extent-end-position
))
72 (fset 'viper-overlay-put
(symbol-function 'set-extent-property
))
73 (fset 'viper-overlay-p
(symbol-function 'extentp
))
74 (fset 'viper-overlay-get
(symbol-function 'extent-property
))
75 (fset 'viper-move-overlay
(symbol-function 'set-extent-endpoints
))
76 (fset 'viper-overlay-live-p
(symbol-function 'extent-live-p
))
77 (if (viper-window-display-p)
78 (fset 'viper-iconify
(symbol-function 'iconify-frame
)))
79 (cond ((viper-has-face-support-p)
80 (fset 'viper-get-face
(symbol-function 'get-face
))
81 (fset 'viper-color-defined-p
82 (symbol-function 'valid-color-name-p
))
84 (fset 'viper-read-event
(symbol-function 'read-event
))
85 (fset 'viper-make-overlay
(symbol-function 'make-overlay
))
86 (fset 'viper-overlay-start
(symbol-function 'overlay-start
))
87 (fset 'viper-overlay-end
(symbol-function 'overlay-end
))
88 (fset 'viper-overlay-put
(symbol-function 'overlay-put
))
89 (fset 'viper-overlay-p
(symbol-function 'overlayp
))
90 (fset 'viper-overlay-get
(symbol-function 'overlay-get
))
91 (fset 'viper-move-overlay
(symbol-function 'move-overlay
))
92 (fset 'viper-overlay-live-p
(symbol-function 'overlayp
))
93 (if (viper-window-display-p)
94 (fset 'viper-iconify
(symbol-function 'iconify-or-deiconify-frame
)))
95 (cond ((viper-has-face-support-p)
96 (fset 'viper-get-face
(symbol-function 'internal-get-face
))
97 (fset 'viper-color-defined-p
(symbol-function 'x-color-defined-p
))
101 (fset 'viper-characterp
103 (if viper-xemacs-p
'characterp
'integerp
)))
105 ;; CHAR is supposed to be a char or an integer (positive or negative)
106 ;; LIST is a list of chars, nil, and negative numbers
107 ;; Check if CHAR is a member by trying to convert into integers, if necessary.
108 ;; Introduced for compatibility with XEmacs, where integers are not the same as
110 (defun viper-memq-char (char list
)
111 (cond (viper-emacs-p (memq char list
))
112 ((and (integerp char
) (>= char
0)) (memq (int-to-char char
) list
))
115 ;; Like =, but accommodates null and also is t for eq-objects
116 (defun viper= (char char1
)
117 (cond ((eq char char1
) t
)
118 ((and (viper-characterp char
) (viper-characterp char1
))
122 (defsubst viper-color-display-p
()
125 (eq (device-class (selected-device)) 'color
)))
127 (defsubst viper-get-cursor-color
()
129 (cdr (assoc 'cursor-color
(frame-parameters)))
130 (color-instance-name (frame-property (selected-frame) 'cursor-color
))))
134 (cond ((eq (viper-device-type) 'pm
)
135 (fset 'viper-color-defined-p
136 (lambda (color) (assoc color pm-color-alist
)))))
140 (defun viper-change-cursor-color (new-color)
141 (if (and (viper-window-display-p) (viper-color-display-p)
142 (stringp new-color
) (viper-color-defined-p new-color
)
143 (not (string= new-color
(viper-get-cursor-color))))
145 (modify-frame-parameters
146 (selected-frame) (list (cons 'cursor-color new-color
)))
148 (selected-frame) 'cursor-color
(make-color-instance new-color
)))
151 ;; By default, saves current frame cursor color in the
152 ;; viper-saved-cursor-color-in-replace-mode property of viper-replace-overlay
153 (defun viper-save-cursor-color (before-which-mode)
154 (if (and (viper-window-display-p) (viper-color-display-p))
155 (let ((color (viper-get-cursor-color)))
156 (if (and (stringp color
) (viper-color-defined-p color
)
157 (not (string= color viper-replace-overlay-cursor-color
)))
158 (modify-frame-parameters
162 (if (eq before-which-mode
'before-replace-mode
)
163 'viper-saved-cursor-color-in-replace-mode
164 'viper-saved-cursor-color-in-insert-mode
)
169 (defsubst viper-get-saved-cursor-color-in-replace-mode
()
172 (if viper-emacs-p
'frame-parameter
'frame-property
)
174 'viper-saved-cursor-color-in-replace-mode
)
175 viper-vi-state-cursor-color
))
177 (defsubst viper-get-saved-cursor-color-in-insert-mode
()
180 (if viper-emacs-p
'frame-parameter
'frame-property
)
182 'viper-saved-cursor-color-in-insert-mode
)
183 viper-vi-state-cursor-color
))
185 ;; restore cursor color from replace overlay
186 (defun viper-restore-cursor-color(after-which-mode)
187 (if (viper-overlay-p viper-replace-overlay
)
188 (viper-change-cursor-color
189 (if (eq after-which-mode
'after-replace-mode
)
190 (viper-get-saved-cursor-color-in-replace-mode)
191 (viper-get-saved-cursor-color-in-insert-mode))
195 ;; Check the current version against the major and minor version numbers
196 ;; using op: cur-vers op major.minor If emacs-major-version or
197 ;; emacs-minor-version are not defined, we assume that the current version
198 ;; is hopelessly outdated. We assume that emacs-major-version and
199 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the
200 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value
201 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be
202 ;; incorrect. However, this gives correct result in our cases, since we are
203 ;; testing for sufficiently high Emacs versions.
204 (defun viper-check-version (op major minor
&optional type-of-emacs
)
205 (if (and (boundp 'emacs-major-version
) (boundp 'emacs-minor-version
))
206 (and (cond ((eq type-of-emacs
'xemacs
) viper-xemacs-p
)
207 ((eq type-of-emacs
'emacs
) viper-emacs-p
)
209 (cond ((eq op
'=) (and (= emacs-minor-version minor
)
210 (= emacs-major-version major
)))
211 ((memq op
'(> >= < <=))
212 (and (or (funcall op emacs-major-version major
)
213 (= emacs-major-version major
))
214 (if (= emacs-major-version major
)
215 (funcall op emacs-minor-version minor
)
218 (error "%S: Invalid op in viper-check-version" op
))))
219 (cond ((memq op
'(= > >=)) nil
)
220 ((memq op
'(< <=)) t
))))
223 (defun viper-get-visible-buffer-window (wind)
225 (get-buffer-window wind t
)
226 (get-buffer-window wind
'visible
)))
229 ;; Return line position.
230 ;; If pos is 'start then returns position of line start.
231 ;; If pos is 'end, returns line end. If pos is 'mid, returns line center.
232 ;; Pos = 'indent returns beginning of indentation.
233 ;; Otherwise, returns point. Current point is not moved in any case."
234 (defun viper-line-pos (pos)
235 (let ((cur-pos (point))
243 (goto-char (+ (viper-line-pos 'start
) (viper-line-pos 'end
) 2)))
245 (back-to-indentation))
247 (setq result
(point))
251 ;; Emacs counts each multibyte character as several positions in the buffer, so
252 ;; we use Emacs' chars-in-region. XEmacs is counting each char as just one pos,
253 ;; so we can simply subtract.
254 (defun viper-chars-in-region (beg end
&optional preserve-sign
)
255 (let ((count (abs (if (fboundp 'chars-in-region
)
256 (chars-in-region beg end
)
258 (if (and (< end beg
) preserve-sign
)
262 ;; Test if POS is between BEG and END
263 (defsubst viper-pos-within-region
(pos beg end
)
264 (and (>= pos
(min beg end
)) (>= (max beg end
) pos
)))
267 ;; Like move-marker but creates a virgin marker if arg isn't already a marker.
268 ;; The first argument must eval to a variable name.
269 ;; Arguments: (var-name position &optional buffer).
271 ;; This is useful for moving markers that are supposed to be local.
272 ;; For this, VAR-NAME should be made buffer-local with nil as a default.
273 ;; Then, each time this var is used in `viper-move-marker-locally' in a new
274 ;; buffer, a new marker will be created.
275 (defun viper-move-marker-locally (var pos
&optional buffer
)
276 (if (markerp (eval var
))
278 (set var
(make-marker)))
279 (move-marker (eval var
) pos buffer
))
282 ;; Print CONDITIONS as a message.
283 (defun viper-message-conditions (conditions)
284 (let ((case (car conditions
)) (msg (cdr conditions
)))
287 (message "%s: %s" case
(mapconcat 'prin1-to-string msg
" ")))
292 ;;; List/alist utilities
294 ;; Convert LIST to an alist
295 (defun viper-list-to-alist (lst)
298 (setq alist
(cons (list (car lst
)) alist
))
299 (setq lst
(cdr lst
)))
302 ;; Convert ALIST to a list.
303 (defun viper-alist-to-list (alst)
306 (setq lst
(cons (car (car alst
)) lst
))
307 (setq alst
(cdr alst
)))
310 ;; Filter ALIST using REGEXP. Return alist whose elements match the regexp.
311 (defun viper-filter-alist (regexp alst
)
313 (let ((outalst) (inalst alst
))
315 (if (string-match regexp
(car (car inalst
)))
316 (setq outalst
(cons (car inalst
) outalst
)))
317 (setq inalst
(cdr inalst
)))
320 ;; Filter LIST using REGEXP. Return list whose elements match the regexp.
321 (defun viper-filter-list (regexp lst
)
323 (let ((outlst) (inlst lst
))
325 (if (string-match regexp
(car inlst
))
326 (setq outlst
(cons (car inlst
) outlst
)))
327 (setq inlst
(cdr inlst
)))
331 ;; Append LIS2 to LIS1, both alists, by side-effect and returns LIS1
332 ;; LIS2 is modified by filtering it: deleting its members of the form
333 ;; \(car elt\) such that (car elt') is in LIS1.
334 (defun viper-append-filter-alist (lis1 lis2
)
338 ;;filter-append the second list
340 ;; delete all occurrences
341 (while (setq elt
(assoc (car (car temp
)) lis2
))
342 (setq lis2
(delq elt lis2
)))
343 (setq temp
(cdr temp
)))
348 ;;; Support for :e, :r, :w file globbing
350 ;; Glob the file spec.
351 ;; This function is designed to work under Unix. It might also work under VMS.
352 (defun viper-glob-unix-files (filespec)
354 (cond (ex-unix-type-shell shell-file-name
)
355 ((memq system-type
'(vax-vms axp-vms
)) "*dcl*") ; VAX VMS
356 (t "sh"))) ; probably Unix anyway
358 ;; using cond in anticipation of further additions
359 (cond (ex-unix-type-shell-options)
361 (command (cond (viper-ms-style-os-p (format "\"ls -1 -d %s\"" filespec
))
362 (t (format "ls -1 -d %s" filespec
))))
365 (set-buffer (get-buffer-create viper-ex-tmp-buf-name
))
369 (call-process gshell nil t nil
373 (call-process gshell nil t nil
376 (goto-char (point-min))
377 ;; Issue an error, if no match.
380 (skip-chars-forward " \t\n\j")
381 (if (looking-at "ls:")
382 (viper-forward-Word 1))
387 (buffer-substring (point) (viper-line-pos 'end
)))
389 (goto-char (point-min))
390 (viper-get-filenames-from-buffer 'one-per-line
))
394 ;; Interpret the stuff in the buffer as a list of file names
395 ;; return a list of file names listed in the buffer beginning at point
396 ;; If optional arg is supplied, assume each filename is listed on a separate
398 (defun viper-get-filenames-from-buffer (&optional one-per-line
)
399 (let ((skip-chars (if one-per-line
"\t\n" " \t\n"))
401 (skip-chars-forward skip-chars
)
403 (if (cond ((looking-at "\"")
405 (re-search-forward "[^\"]+" nil t
)) ; noerror
408 (re-search-forward "[^']+" nil t
)) ; noerror
411 (concat "[^" skip-chars
"]+") nil t
))) ;noerror
413 (buffer-substring (match-beginning 0) (match-end 0))))
416 (skip-chars-forward " \t\n")
417 (setq result
(cons fname result
)))
420 ;; convert MS-DOS wildcards to regexp
421 (defun viper-wildcard-to-regexp (wcard)
423 (set-buffer (get-buffer-create viper-ex-tmp-buf-name
))
426 (goto-char (point-min))
428 (skip-chars-forward "^*?.\\\\")
429 (cond ((eq (char-after (point)) ?
*) (insert ".")(forward-char 1))
430 ((eq (char-after (point)) ?.
) (insert "\\")(forward-char 1))
431 ((eq (char-after (point)) ?
\\) (insert "\\")(forward-char 1))
432 ((eq (char-after (point)) ??
) (delete-char 1)(insert ".")))
438 ;; glob windows files
439 ;; LIST is expected to be in reverse order
440 (defun viper-glob-mswindows-files (filespec)
441 (let ((case-fold-search t
)
444 (set-buffer (get-buffer-create viper-ex-tmp-buf-name
))
447 (goto-char (point-min))
448 (setq tmp
(viper-get-filenames-from-buffer))
450 (setq tmp2
(cons (directory-files
451 ;; the directory part
452 (or (file-name-directory (car tmp
))
454 t
; return full names
455 ;; the regexp part: globs the file names
457 (viper-wildcard-to-regexp
458 (file-name-nondirectory (car tmp
)))
461 (setq tmp
(cdr tmp
)))
462 (reverse (apply 'append tmp2
)))))
467 ;; Rotate RING's index. DIRection can be positive or negative.
468 (defun viper-ring-rotate1 (ring dir
)
469 (if (and (ring-p ring
) (> (ring-length ring
) 0))
471 (setcar ring
(cond ((> dir
0)
472 (ring-plus1 (car ring
) (ring-length ring
)))
474 (ring-minus1 (car ring
) (ring-length ring
)))
475 ;; don't rotate if dir = 0
477 (viper-current-ring-item ring
)
480 (defun viper-special-ring-rotate1 (ring dir
)
481 (if (memq viper-intermediate-command
482 '(repeating-display-destructive-command
483 repeating-insertion-from-ring
))
484 (viper-ring-rotate1 ring dir
)
485 ;; don't rotate otherwise
486 (viper-ring-rotate1 ring
0)))
488 ;; current ring item; if N is given, then so many items back from the
490 (defun viper-current-ring-item (ring &optional n
)
492 (if (and (ring-p ring
) (> (ring-length ring
) 0))
493 (aref (cdr (cdr ring
)) (mod (- (car ring
) 1 n
) (ring-length ring
)))))
495 ;; Push item onto ring. The second argument is a ring-variable, not value.
496 (defun viper-push-onto-ring (item ring-var
)
497 (or (ring-p (eval ring-var
))
498 (set ring-var
(make-ring (eval (intern (format "%S-size" ring-var
))))))
499 (or (null item
) ; don't push nil
500 (and (stringp item
) (string= item
"")) ; or empty strings
501 (equal item
(viper-current-ring-item (eval ring-var
))) ; or old stuff
502 ;; Since viper-set-destructive-command checks if we are inside
503 ;; viper-repeat, we don't check whether this-command-keys is a `.'. The
504 ;; cmd viper-repeat makes a call to the current function only if `.' is
505 ;; executing a command from the command history. It doesn't call the
506 ;; push-onto-ring function if `.' is simply repeating the last
507 ;; destructive command. We only check for ESC (which happens when we do
508 ;; insert with a prefix argument, or if this-command-keys doesn't give
509 ;; anything meaningful (in that case we don't know what to show to the
511 (and (eq ring-var
'viper-command-ring
)
512 (string-match "\\([0-9]*\e\\|^[ \t]*$\\|escape\\)"
513 (viper-array-to-string (this-command-keys))))
514 (viper-ring-insert (eval ring-var
) item
))
518 ;; removing elts from ring seems to break it
519 (defun viper-cleanup-ring (ring)
520 (or (< (ring-length ring
) 2)
521 (null (viper-current-ring-item ring
))
522 ;; last and previous equal
523 (if (equal (viper-current-ring-item ring
)
524 (viper-current-ring-item ring
1))
525 (viper-ring-pop ring
))))
527 ;; ring-remove seems to be buggy, so we concocted this for our purposes.
528 (defun viper-ring-pop (ring)
529 (let* ((ln (ring-length ring
))
530 (vec (cdr (cdr ring
)))
531 (veclen (length vec
))
533 (idx (max 0 (ring-minus1 hd ln
)))
534 (top-elt (aref vec idx
)))
537 (while (< (1+ idx
) veclen
)
538 (aset vec idx
(aref vec
(1+ idx
)))
542 (setq hd
(max 0 (ring-minus1 hd ln
)))
543 (if (= hd
(1- ln
)) (setq hd
0))
544 (setcar ring hd
) ; move head
545 (setcar (cdr ring
) (max 0 (1- ln
))) ; adjust length
549 (defun viper-ring-insert (ring item
)
550 (let* ((ln (ring-length ring
))
551 (vec (cdr (cdr ring
)))
552 (veclen (length vec
))
554 (vecpos-after-hd (if (= hd
0) ln hd
))
559 (aset vec hd item
) ; hd is always 1+ the actual head index in vec
560 (setcar ring
(ring-plus1 hd ln
)))
561 (setcar (cdr ring
) (1+ ln
))
562 (setcar ring
(ring-plus1 vecpos-after-hd
(1+ ln
)))
563 (while (and (>= idx vecpos-after-hd
) (> ln
0))
564 (aset vec idx
(aref vec
(1- idx
)))
566 (aset vec vecpos-after-hd item
))
572 ;; If STRING is longer than MAX-LEN, truncate it and print ...... instead
573 ;; PRE-STRING is a string to prepend to the abbrev string.
574 ;; POST-STRING is a string to append to the abbrev string.
575 ;; ABBREV_SIGN is a string to be inserted before POST-STRING
576 ;; if the orig string was truncated.
577 (defun viper-abbreviate-string (string max-len
578 pre-string post-string abbrev-sign
)
582 (substring string
0 (min max-len
(length string
)))))
583 (cond ((null truncated-str
) "")
584 ((> (length string
) max-len
)
586 pre-string truncated-str abbrev-sign post-string
))
587 (t (format "%s%s%s" pre-string truncated-str post-string
)))))
589 ;; tells if we are over a whitespace-only line
590 (defsubst viper-over-whitespace-line
()
593 (looking-at "^[ \t]*$")))
596 ;;; Saving settings in custom file
598 ;; Save the current setting of VAR in CUSTOM-FILE.
599 ;; If given, MESSAGE is a message to be displayed after that.
600 ;; This message is erased after 2 secs, if erase-msg is non-nil.
601 ;; Arguments: var message custom-file &optional erase-message
602 (defun viper-save-setting (var message custom-file
&optional erase-msg
)
603 (let* ((var-name (symbol-name var
))
604 (var-val (if (boundp var
) (eval var
)))
605 (regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z---_']*[ \t\n)]" var-name
))
606 (buf (find-file-noselect (substitute-in-file-name custom-file
)))
611 (goto-char (point-min))
612 (if (re-search-forward regexp nil t
)
613 (let ((reg-end (1- (match-end 0))))
614 (search-backward var-name
)
615 (delete-region (match-beginning 0) reg-end
)
616 (goto-char (match-beginning 0))
617 (insert (format "%s '%S" var-name var-val
)))
618 (goto-char (point-max))
619 (if (not (bolp)) (insert "\n"))
620 (insert (format "(setq %s '%S)\n" var-name var-val
)))
629 ;; Save STRING in CUSTOM-FILE. If PATTERN is non-nil, remove strings that
630 ;; match this pattern.
631 (defun viper-save-string-in-file (string custom-file
&optional pattern
)
632 (let ((buf (find-file-noselect (substitute-in-file-name custom-file
))))
635 (let (buffer-read-only)
636 (goto-char (point-min))
637 (if pattern
(delete-matching-lines pattern
))
638 (goto-char (point-max))
639 (if string
(insert string
))
645 ;; define remote file test
646 (or (fboundp 'viper-file-remote-p
) ; user supplied his own function: use it
647 (defun viper-file-remote-p (file-name)
648 (car (cond ((featurep 'efs-auto
) (efs-ftp-path file-name
))
649 ((fboundp 'file-remote-p
) (file-remote-p file-name
))
650 (t (require 'ange-ftp
)
651 ;; Can happen only in Emacs, since XEmacs has file-remote-p
652 (ange-ftp-ftp-name file-name
))))))
656 ;; This is a simple-minded check for whether a file is under version control.
657 ;; If file,v exists but file doesn't, this file is considered to be not checked
658 ;; in and not checked out for the purpose of patching (since patch won't be
659 ;; able to read such a file anyway).
660 ;; FILE is a string representing file name
661 ;;(defun viper-file-under-version-control (file)
662 ;; (let* ((filedir (file-name-directory file))
663 ;; (file-nondir (file-name-nondirectory file))
664 ;; (trial (concat file-nondir ",v"))
665 ;; (full-trial (concat filedir trial))
666 ;; (full-rcs-trial (concat filedir "RCS/" trial)))
667 ;; (and (stringp file)
668 ;; (file-exists-p file)
671 ;; (file-exists-p full-trial)
672 ;; ;; in FAT FS, `file,v' and `file' may turn out to be the same!
673 ;; ;; don't be fooled by this!
674 ;; (not (equal (file-attributes file)
675 ;; (file-attributes full-trial))))
676 ;; ;; check if a version is in RCS/ directory
677 ;; (file-exists-p full-rcs-trial)))
681 (defsubst viper-file-checked-in-p
(file)
682 (and (featurep 'vc-hooks
)
683 ;; CVS files are considered not checked in
684 (not (memq (vc-backend file
) '(nil CVS
)))
685 (not (memq (vc-state file
) '(edited needs-merge
)))
686 (not (stringp (vc-state file
)))))
688 ;; checkout if visited file is checked in
689 (defun viper-maybe-checkout (buf)
690 (let ((file (expand-file-name (buffer-file-name buf
)))
691 (checkout-function (key-binding "\C-x\C-q")))
692 (if (and (viper-file-checked-in-p file
)
696 "File %s is checked in. Check it out? "
697 (viper-abbreviate-file-name file
))))
698 (with-current-buffer buf
699 (command-execute checkout-function
)))))
705 (defun viper-put-on-search-overlay (beg end
)
706 (if (viper-overlay-p viper-search-overlay
)
707 (viper-move-overlay viper-search-overlay beg end
)
708 (setq viper-search-overlay
(viper-make-overlay beg end
(current-buffer)))
710 viper-search-overlay
'priority viper-search-overlay-priority
))
711 (viper-overlay-put viper-search-overlay
'face viper-search-face
))
715 (defun viper-flash-search-pattern ()
716 (if (not (viper-has-face-support-p))
718 (viper-put-on-search-overlay (match-beginning 0) (match-end 0))
720 (viper-overlay-put viper-search-overlay
'face nil
)))
722 (defun viper-hide-search-overlay ()
723 (if (not (viper-overlay-p viper-search-overlay
))
725 (setq viper-search-overlay
726 (viper-make-overlay (point-min) (point-min) (current-buffer)))
728 viper-search-overlay
'priority viper-search-overlay-priority
)))
729 (viper-overlay-put viper-search-overlay
'face nil
))
733 (defsubst viper-move-replace-overlay
(beg end
)
734 (viper-move-overlay viper-replace-overlay beg end
))
736 (defun viper-set-replace-overlay (beg end
)
737 (if (viper-overlay-live-p viper-replace-overlay
)
738 (viper-move-replace-overlay beg end
)
739 (setq viper-replace-overlay
(viper-make-overlay beg end
(current-buffer)))
742 viper-replace-overlay
(if viper-emacs-p
'evaporate
'detachable
) nil
)
744 viper-replace-overlay
'priority viper-replace-overlay-priority
)
745 ;; If Emacs will start supporting overlay maps, as it currently supports
746 ;; text-property maps, we could do away with viper-replace-minor-mode and
747 ;; just have keymap attached to replace overlay.
749 ;; viper-replace-overlay
750 ;; (if viper-xemacs-p 'keymap 'local-map)
751 ;; viper-replace-map)
753 (if (viper-has-face-support-p)
755 viper-replace-overlay
'face viper-replace-overlay-face
))
756 (viper-save-cursor-color 'before-replace-mode
)
757 (viper-change-cursor-color viper-replace-overlay-cursor-color
)
761 (defun viper-set-replace-overlay-glyphs (before-glyph after-glyph
)
762 (or (viper-overlay-live-p viper-replace-overlay
)
763 (viper-set-replace-overlay (point-min) (point-min)))
764 (if (or (not (viper-has-face-support-p))
765 viper-use-replace-region-delimiters
)
766 (let ((before-name (if viper-xemacs-p
'begin-glyph
'before-string
))
767 (after-name (if viper-xemacs-p
'end-glyph
'after-string
)))
768 (viper-overlay-put viper-replace-overlay before-name before-glyph
)
769 (viper-overlay-put viper-replace-overlay after-name after-glyph
))))
771 (defun viper-hide-replace-overlay ()
772 (viper-set-replace-overlay-glyphs nil nil
)
773 (viper-restore-cursor-color 'after-replace-mode
)
774 (viper-restore-cursor-color 'after-insert-mode
)
775 (if (viper-has-face-support-p)
776 (viper-overlay-put viper-replace-overlay
'face nil
)))
779 (defsubst viper-replace-start
()
780 (viper-overlay-start viper-replace-overlay
))
781 (defsubst viper-replace-end
()
782 (viper-overlay-end viper-replace-overlay
))
787 (defun viper-set-minibuffer-overlay ()
788 (viper-check-minibuffer-overlay)
789 (if (viper-has-face-support-p)
792 viper-minibuffer-overlay
'face viper-minibuffer-current-face
)
794 viper-minibuffer-overlay
'priority viper-minibuffer-overlay-priority
)
797 viper-minibuffer-overlay
798 (if viper-emacs-p
'evaporate
'detachable
)
800 ;; make viper-minibuffer-overlay open-ended
801 ;; In emacs, it is made open ended at creation time
804 (viper-overlay-put viper-minibuffer-overlay
'start-open nil
)
805 (viper-overlay-put viper-minibuffer-overlay
'end-open nil
)))
808 (defun viper-check-minibuffer-overlay ()
809 (or (viper-overlay-p viper-minibuffer-overlay
)
810 (setq viper-minibuffer-overlay
812 (viper-make-overlay 1 (1+ (buffer-size)) (current-buffer))
813 ;; make overlay open-ended
815 1 (1+ (buffer-size)) (current-buffer) nil
'rear-advance
)))
819 (defsubst viper-is-in-minibuffer
()
821 (string-match "\*Minibuf-" (buffer-name))))
825 ;;; XEmacs compatibility
827 (defun viper-abbreviate-file-name (file)
829 (abbreviate-file-name file
)
830 ;; XEmacs requires addl argument
831 (abbreviate-file-name file t
)))
833 ;; Sit for VAL milliseconds. XEmacs doesn't support the millisecond arg
834 ;; in sit-for, so this function smoothes out the differences.
835 (defsubst viper-sit-for-short
(val &optional nodisp
)
837 (sit-for (/ val
1000.0) nodisp
)
838 (sit-for 0 val nodisp
)))
840 ;; EVENT may be a single event of a sequence of events
841 (defsubst viper-ESC-event-p
(event)
842 (let ((ESC-keys '(?\e
(control \
[) escape
))
843 (key (viper-event-key event
)))
844 (member key ESC-keys
)))
846 ;; checks if object is a marker, has a buffer, and points to within that buffer
847 (defun viper-valid-marker (marker)
848 (if (and (markerp marker
) (marker-buffer marker
))
849 (let ((buf (marker-buffer marker
))
850 (pos (marker-position marker
)))
853 (and (<= pos
(point-max)) (<= (point-min) pos
))))))
855 (defsubst viper-mark-marker
()
860 ;; like (set-mark-command nil) but doesn't push twice, if (car mark-ring)
861 ;; is the same as (mark t).
862 (defsubst viper-set-mark-if-necessary
()
863 (setq mark-ring
(delete (viper-mark-marker) mark-ring
))
864 (set-mark-command nil
)
865 (setq viper-saved-mark
(point)))
867 ;; In transient mark mode (zmacs mode), it is annoying when regions become
868 ;; highlighted due to Viper's pushing marks. So, we deactivate marks, unless
869 ;; the user explicitly wants highlighting, e.g., by hitting '' or ``
870 (defun viper-deactivate-mark ()
872 (zmacs-deactivate-region)
875 (defsubst viper-leave-region-active
()
877 (setq zmacs-region-stays t
)))
879 ;; Check if arg is a valid character for register
880 ;; TYPE is a list that can contain `letter', `Letter', and `digit'.
881 ;; Letter means lowercase letters, Letter means uppercase letters, and
882 ;; digit means digits from 1 to 9.
883 ;; If TYPE is nil, then down/uppercase letters and digits are allowed.
884 (defun viper-valid-register (reg &optional type
)
885 (or type
(setq type
'(letter Letter digit
)))
886 (or (if (memq 'letter type
)
887 (and (<= ?a reg
) (<= reg ?z
)))
888 (if (memq 'digit type
)
889 (and (<= ?
1 reg
) (<= reg ?
9)))
890 (if (memq 'Letter type
)
891 (and (<= ?A reg
) (<= reg ?Z
)))
895 (defsubst viper-events-to-keys
(events)
896 (cond (viper-xemacs-p (events-to-keys events
))
900 ;; it is suggested that an event must be copied before it is assigned to
901 ;; last-command-event in XEmacs
902 (defun viper-copy-event (event)
907 ;; like read-event, but in XEmacs also try to convert to char, if possible
908 (defun viper-read-event-convert-to-char ()
912 (setq event
(next-command-event))
913 (or (event-to-character event
)
917 ;; This function lets function-key-map convert key sequences into logical
918 ;; keys. This does a better job than viper-read-event when it comes to kbd
919 ;; macros, since it enables certain macros to be shared between X and TTY modes
920 ;; by correctly mapping key sequences for Left/Right/... (one an ascii
921 ;; terminal) into logical keys left, right, etc.
922 (defun viper-read-key ()
923 (let ((overriding-local-map viper-overriding-map
)
926 (use-global-map viper-overriding-map
)
928 (setq key
(elt (read-key-sequence nil
) 0))
929 (use-global-map global-map
))
933 ;; Emacs has a bug in eventp, which causes (eventp nil) to return (nil)
934 ;; instead of nil, if '(nil) was previously inadvertently assigned to
935 ;; unread-command-events
936 (defun viper-event-key (event)
937 (or (and event
(eventp event
))
938 (error "viper-event-key: Wrong type argument, eventp, %S" event
))
939 (when (cond (viper-xemacs-p (or (key-press-event-p event
)
940 (mouse-event-p event
)))
942 (let ((mod (event-modifiers event
))
947 (cond ((key-press-event-p event
)
949 ((button-event-p event
)
950 (concat "mouse-" (prin1-to-string (event-button event
))))
952 (error "viper-event-key: Unknown event, %S" event
))))
954 ;; Emacs doesn't handle capital letters correctly, since
955 ;; \S-a isn't considered the same as A (it behaves as
956 ;; plain `a' instead). So we take care of this here
957 (cond ((and (viper-characterp event
) (<= ?A event
) (<= event ?Z
))
960 ;; Emacs has the oddity whereby characters 128+char
961 ;; represent M-char *if* this appears inside a string.
962 ;; So, we convert them manually to (meta char).
963 ((and (viper-characterp event
)
964 (< ?\C-? event
) (<= event
255))
966 event
(- event ?\C-?
1)))
967 ((and (null mod
) (eq event
'return
))
969 ((and (null mod
) (eq event
'space
))
971 ((and (null mod
) (eq event
'delete
))
973 ((and (null mod
) (eq event
'backspace
))
975 (t (event-basic-type event
)))
977 (if (viper-characterp basis
)
979 (if (viper= basis ?\C-?
)
980 (list 'control
'\?) ; taking care of an emacs bug
981 (intern (char-to-string basis
)))))
983 (append mod
(list basis
))
986 (defun viper-key-to-emacs-key (key)
987 (let (key-name char-p modifiers mod-char-list base-key base-key-name
)
988 (cond (viper-xemacs-p key
)
991 (setq key-name
(symbol-name key
))
992 (cond ((= (length key-name
) 1) ; character event
993 (string-to-char key-name
))
994 ;; Emacs doesn't recognize `return' and `escape' as events on
995 ;; dumb terminals, so we translate them into characters
996 ((and viper-emacs-p
(not (viper-window-display-p))
997 (string= key-name
"return"))
999 ((and viper-emacs-p
(not (viper-window-display-p))
1000 (string= key-name
"escape"))
1002 ;; pass symbol-event as is
1006 (setq modifiers
(subseq key
0 (1- (length key
)))
1007 base-key
(viper-seq-last-elt key
)
1008 base-key-name
(symbol-name base-key
)
1009 char-p
(= (length base-key-name
) 1))
1012 '(lambda (elt) (upcase (substring (symbol-name elt
) 0 1)))
1016 (car (read-from-string
1019 (mapconcat 'identity mod-char-list
"-\\")
1025 (mapconcat 'identity mod-char-list
"-")
1031 ;; Args can be a sequence of events, a string, or a Viper macro. Will try to
1032 ;; convert events to keys and, if all keys are regular printable
1033 ;; characters, will return a string. Otherwise, will return a string
1034 ;; representing a vector of converted events. If the input was a Viper macro,
1035 ;; will return a string that represents this macro as a vector.
1036 (defun viper-array-to-string (event-seq)
1038 (cond ((stringp event-seq
) event-seq
)
1039 ((viper-event-vector-p event-seq
)
1040 (setq temp
(mapcar 'viper-event-key event-seq
))
1041 (cond ((viper-char-symbol-sequence-p temp
)
1042 (mapconcat 'symbol-name temp
""))
1043 ((and (viper-char-array-p
1044 (setq temp2
(mapcar 'viper-key-to-character temp
))))
1045 (mapconcat 'char-to-string temp2
""))
1046 (t (prin1-to-string (vconcat temp
)))))
1047 ((viper-char-symbol-sequence-p event-seq
)
1048 (mapconcat 'symbol-name event-seq
""))
1049 ((and (vectorp event-seq
)
1051 (setq temp
(mapcar 'viper-key-to-character event-seq
))))
1052 (mapconcat 'char-to-string temp
""))
1053 (t (prin1-to-string event-seq
)))))
1055 (defun viper-key-press-events-to-chars (events)
1056 (mapconcat (if viper-emacs-p
1058 (lambda (elt) (char-to-string (event-to-character elt
))))
1063 ;; Uses different timeouts for ESC-sequences and others
1064 (defsubst viper-fast-keysequence-p
()
1065 (not (viper-sit-for-short
1066 (if (viper-ESC-event-p last-input-event
)
1067 viper-ESC-keyseq-timeout
1068 viper-fast-keyseq-timeout
)
1071 (defun viper-read-char-exclusive ()
1073 (echo-keystrokes 1))
1076 (setq char
(read-char))
1078 ;; skip event if not char
1079 (viper-read-event))))
1082 ;; key is supposed to be in viper's representation, e.g., (control l), a
1084 (defun viper-key-to-character (key)
1085 (cond ((eq key
'space
) ?\
)
1086 ((eq key
'delete
) ?\C-?
)
1087 ((eq key
'return
) ?\C-m
)
1088 ((eq key
'backspace
) ?\C-h
)
1090 (= 1 (length (symbol-name key
))))
1091 (string-to-char (symbol-name key
)))
1093 (eq (car key
) 'control
)
1094 (symbol-name (nth 1 key
))
1095 (= 1 (length (symbol-name (nth 1 key
)))))
1096 (read (format "?\\C-%s" (symbol-name (nth 1 key
)))))
1100 (defun viper-setup-master-buffer (&rest other-files-or-buffers
)
1101 "Set up the current buffer as a master buffer.
1102 Arguments become related buffers. This function should normally be used in
1103 the `Local variables' section of a file."
1104 (setq viper-related-files-and-buffers-ring
1105 (make-ring (1+ (length other-files-or-buffers
))))
1106 (mapcar '(lambda (elt)
1107 (viper-ring-insert viper-related-files-and-buffers-ring elt
))
1108 other-files-or-buffers
)
1109 (viper-ring-insert viper-related-files-and-buffers-ring
(buffer-name))
1112 ;;; Movement utilities
1114 ;; Characters that should not be considered as part of the word, in reformed-vi
1116 (defconst viper-non-word-characters-reformed-vi
1117 "!@#$%^&*()-+=|\\~`{}[];:'\",<.>/?")
1118 ;; These are characters that are not to be considered as parts of a word in
1120 ;; Set each time state changes and at loading time
1121 (viper-deflocalvar viper-non-word-characters nil
)
1123 ;; must be buffer-local
1124 (viper-deflocalvar viper-ALPHA-char-class
"w"
1125 "String of syntax classes characterizing Viper's alphanumeric symbols.
1126 In addition, the symbol `_' may be considered alphanumeric if
1127 `viper-syntax-preference' is `strict-vi' or `reformed-vi'.")
1129 (defconst viper-strict-ALPHA-chars
"a-zA-Z0-9_"
1130 "Regexp matching the set of alphanumeric characters acceptable to strict
1132 (defconst viper-strict-SEP-chars
" \t\n"
1133 "Regexp matching the set of alphanumeric characters acceptable to strict
1135 (defconst viper-strict-SEP-chars-sans-newline
" \t"
1136 "Regexp matching the set of alphanumeric characters acceptable to strict
1139 (defconst viper-SEP-char-class
" -"
1140 "String of syntax classes for Vi separators.
1141 Usually contains ` ', linefeed, TAB or formfeed.")
1144 ;; Set Viper syntax classes and related variables according to
1145 ;; `viper-syntax-preference'.
1146 (defun viper-update-syntax-classes (&optional set-default
)
1147 (let ((preference (cond ((eq viper-syntax-preference
'emacs
)
1148 "w") ; Viper words have only Emacs word chars
1149 ((eq viper-syntax-preference
'extended
)
1150 "w_") ; Viper words have Emacs word & symbol chars
1151 (t "w"))) ; Viper words are Emacs words plus `_'
1152 (non-word-chars (cond ((eq viper-syntax-preference
'reformed-vi
)
1153 (viper-string-to-list
1154 viper-non-word-characters-reformed-vi
))
1157 (setq-default viper-ALPHA-char-class preference
1158 viper-non-word-characters non-word-chars
)
1159 (setq viper-ALPHA-char-class preference
1160 viper-non-word-characters non-word-chars
))
1163 ;; SYMBOL is used because customize requires it, but it is ignored, unless it
1164 ;; is `nil'. If nil, use setq.
1165 (defun viper-set-syntax-preference (&optional symbol value
)
1166 "Set Viper syntax preference.
1167 If called interactively or if SYMBOL is nil, sets syntax preference in current
1168 buffer. If called non-interactively, preferably via the customization widget,
1169 sets the default value."
1174 "Viper syntax preference: "
1175 '(("strict-vi") ("reformed-vi") ("extended") ("emacs"))
1176 nil
'require-match
)))
1177 (if (stringp value
) (setq value
(intern value
)))
1178 (or (memq value
'(strict-vi reformed-vi extended emacs
))
1179 (error "Invalid Viper syntax preference, %S" value
))
1181 (setq-default viper-syntax-preference value
)
1182 (setq viper-syntax-preference value
))
1183 (viper-update-syntax-classes))
1185 (defcustom viper-syntax-preference
'reformed-vi
1186 "*Syntax type characterizing Viper's alphanumeric symbols.
1187 Affects movement and change commands that deal with Vi-style words.
1188 Works best when set in the hooks to various major modes.
1190 `strict-vi' means Viper words are (hopefully) exactly as in Vi.
1192 `reformed-vi' means Viper words are like Emacs words \(as determined using
1193 Emacs syntax tables, which are different for different major modes\) with two
1194 exceptions: the symbol `_' is always part of a word and typical Vi non-word
1195 symbols, such as `,',:,\",),{, etc., are excluded.
1196 This behaves very close to `strict-vi', but also works well with non-ASCII
1197 characters from various alphabets.
1199 `extended' means Viper word constituents are symbols that are marked as being
1200 parts of words OR symbols in Emacs syntax tables.
1201 This is most appropriate for major modes intended for editing programs.
1203 `emacs' means Viper words are the same as Emacs words as specified by Emacs
1205 This option is appropriate if you like Emacs-style words."
1206 :type
'(radio (const strict-vi
) (const reformed-vi
)
1207 (const extended
) (const emacs
))
1208 :set
'viper-set-syntax-preference
1210 (make-variable-buffer-local 'viper-syntax-preference
)
1213 ;; addl-chars are characters to be temporarily considered as alphanumerical
1214 (defun viper-looking-at-alpha (&optional addl-chars
)
1215 (or (stringp addl-chars
) (setq addl-chars
""))
1216 (if (eq viper-syntax-preference
'reformed-vi
)
1217 (setq addl-chars
(concat addl-chars
"_")))
1218 (let ((char (char-after (point))))
1220 (if (eq viper-syntax-preference
'strict-vi
)
1221 (looking-at (concat "[" viper-strict-ALPHA-chars addl-chars
"]"))
1223 ;; or one of the additional chars being asked to include
1224 (viper-memq-char char
(viper-string-to-list addl-chars
))
1226 ;; not one of the excluded word chars (note:
1227 ;; viper-non-word-characters is a list)
1228 (not (viper-memq-char char viper-non-word-characters
))
1229 ;; char of the Viper-word syntax class
1230 (viper-memq-char (char-syntax char
)
1231 (viper-string-to-list viper-ALPHA-char-class
))))))
1234 (defun viper-looking-at-separator ()
1235 (let ((char (char-after (point))))
1237 (if (eq viper-syntax-preference
'strict-vi
)
1238 (viper-memq-char char
(viper-string-to-list viper-strict-SEP-chars
))
1239 (or (eq char ?
\n) ; RET is always a separator in Vi
1240 (viper-memq-char (char-syntax char
)
1241 (viper-string-to-list viper-SEP-char-class
)))))
1244 (defsubst viper-looking-at-alphasep
(&optional addl-chars
)
1245 (or (viper-looking-at-separator) (viper-looking-at-alpha addl-chars
)))
1247 (defun viper-skip-alpha-forward (&optional addl-chars
)
1248 (or (stringp addl-chars
) (setq addl-chars
""))
1251 (cond ((eq viper-syntax-preference
'strict-vi
)
1253 (t viper-ALPHA-char-class
))
1254 (cond ((eq viper-syntax-preference
'strict-vi
)
1255 (concat viper-strict-ALPHA-chars addl-chars
))
1258 (defun viper-skip-alpha-backward (&optional addl-chars
)
1259 (or (stringp addl-chars
) (setq addl-chars
""))
1262 (cond ((eq viper-syntax-preference
'strict-vi
)
1264 (t viper-ALPHA-char-class
))
1265 (cond ((eq viper-syntax-preference
'strict-vi
)
1266 (concat viper-strict-ALPHA-chars addl-chars
))
1269 ;; weird syntax tables may confuse strict-vi style
1270 (defsubst viper-skip-all-separators-forward
(&optional within-line
)
1271 (if (eq viper-syntax-preference
'strict-vi
)
1273 (skip-chars-forward viper-strict-SEP-chars-sans-newline
)
1274 (skip-chars-forward viper-strict-SEP-chars
))
1275 (viper-skip-syntax 'forward
1276 viper-SEP-char-class
1277 (or within-line
"\n")
1278 (if within-line
(viper-line-pos 'end
)))))
1279 (defsubst viper-skip-all-separators-backward
(&optional within-line
)
1280 (if (eq viper-syntax-preference
'strict-vi
)
1282 (skip-chars-backward viper-strict-SEP-chars-sans-newline
)
1283 (skip-chars-backward viper-strict-SEP-chars
))
1284 (viper-skip-syntax 'backward
1285 viper-SEP-char-class
1286 (or within-line
"\n")
1287 (if within-line
(viper-line-pos 'start
)))))
1288 (defun viper-skip-nonseparators (direction)
1291 (concat "^" viper-SEP-char-class
)
1293 (viper-line-pos (if (eq direction
'forward
) 'end
'start
))))
1296 ;; skip over non-word constituents and non-separators
1297 (defun viper-skip-nonalphasep-forward ()
1298 (if (eq viper-syntax-preference
'strict-vi
)
1300 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars
))
1303 (concat "^" viper-ALPHA-char-class viper-SEP-char-class
)
1304 ;; Emacs may consider some of these as words, but we don't want them
1305 viper-non-word-characters
1306 (viper-line-pos 'end
))))
1307 (defun viper-skip-nonalphasep-backward ()
1308 (if (eq viper-syntax-preference
'strict-vi
)
1309 (skip-chars-backward
1310 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars
))
1313 (concat "^" viper-ALPHA-char-class viper-SEP-char-class
)
1314 ;; Emacs may consider some of these as words, but we don't want them
1315 viper-non-word-characters
1316 (viper-line-pos 'start
))))
1318 ;; Skip SYNTAX like skip-syntax-* and ADDL-CHARS like skip-chars-*
1319 ;; Return the number of chars traveled.
1320 ;; Both SYNTAX or ADDL-CHARS can be strings or lists of characters.
1321 ;; When SYNTAX is "w", then viper-non-word-characters are not considered to be
1322 ;; words, even if Emacs syntax table says they are.
1323 (defun viper-skip-syntax (direction syntax addl-chars
&optional limit
)
1327 (if (eq direction
'forward
)
1328 'skip-chars-forward
'skip-chars-backward
))
1330 (if (eq direction
'forward
)
1331 'viper-forward-char-carefully
'viper-backward-char-carefully
))
1332 char-looked-at syntax-of-char-looked-at negated-syntax
)
1334 (cond ((listp addl-chars
) (viper-charlist-to-string addl-chars
))
1335 ((stringp addl-chars
) addl-chars
)
1338 (cond ((listp syntax
) syntax
)
1339 ((stringp syntax
) (viper-string-to-list syntax
))
1341 (if (memq ?^ syntax
) (setq negated-syntax t
))
1343 (while (and (not (= local
0))
1344 (cond ((eq direction
'forward
)
1347 (setq char-looked-at
(viper-char-at-pos direction
)
1348 ;; if outside the range, set to nil
1349 syntax-of-char-looked-at
(if char-looked-at
1350 (char-syntax char-looked-at
)))
1353 (cond ((and limit
(eq direction
'forward
))
1355 (limit ; backward & limit
1358 ;; char under/before cursor has appropriate syntax
1360 (not (memq syntax-of-char-looked-at syntax
))
1361 (memq syntax-of-char-looked-at syntax
))
1362 ;; if char-syntax class is "word", make sure it is not one
1363 ;; of the excluded characters
1364 (if (and (eq syntax-of-char-looked-at ?w
)
1365 (not negated-syntax
))
1366 (not (viper-memq-char
1367 char-looked-at viper-non-word-characters
))
1369 (funcall skip-syntax-func
1)
1371 (funcall skip-chars-func addl-chars limit
)))
1372 (setq total
(+ total local
)))
1378 (provide 'viper-util
)
1381 ;;; Local Variables:
1382 ;;; eval: (put 'viper-deflocalvar 'lisp-indent-hook 'defun)
1385 ;;; viper-util.el ends here