*** empty log message ***
[emacs.git] / lisp / emulation / viper-util.el
blobb8fdf3365ba1265cc8300fa4f20c103276bb5b7f
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)
10 ;; any later version.
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.
23 ;; Code
25 ;; Compiler pacifier
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)
40 (require 'cl)
41 (require 'ring)
43 (if noninteractive
44 (eval-when-compile
45 (let ((load-path (cons (expand-file-name ".") load-path)))
46 (or (featurep 'viper-init)
47 (load "viper-init.el" nil nil 'nosuffix))
48 )))
49 ;; end pacifier
51 (require 'viper-init)
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)))
63 ;;; XEmacs support
66 (if viper-xemacs-p
67 (progn
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 (if (viper-window-display-p)
77 (fset 'viper-iconify (symbol-function 'iconify-frame)))
78 (cond ((viper-has-face-support-p)
79 (fset 'viper-get-face (symbol-function 'get-face))
80 (fset 'viper-color-defined-p
81 (symbol-function 'valid-color-name-p))
82 )))
83 (fset 'viper-read-event (symbol-function 'read-event))
84 (fset 'viper-make-overlay (symbol-function 'make-overlay))
85 (fset 'viper-overlay-start (symbol-function 'overlay-start))
86 (fset 'viper-overlay-end (symbol-function 'overlay-end))
87 (fset 'viper-overlay-put (symbol-function 'overlay-put))
88 (fset 'viper-overlay-p (symbol-function 'overlayp))
89 (fset 'viper-overlay-get (symbol-function 'overlay-get))
90 (fset 'viper-move-overlay (symbol-function 'move-overlay))
91 (if (viper-window-display-p)
92 (fset 'viper-iconify (symbol-function 'iconify-or-deiconify-frame)))
93 (cond ((viper-has-face-support-p)
94 (fset 'viper-get-face (symbol-function 'internal-get-face))
95 (fset 'viper-color-defined-p (symbol-function 'x-color-defined-p))
96 )))
99 (fset 'viper-characterp
100 (symbol-function
101 (if viper-xemacs-p 'characterp 'integerp)))
103 (defsubst viper-color-display-p ()
104 (if viper-emacs-p
105 (x-display-color-p)
106 (eq (device-class (selected-device)) 'color)))
108 (defsubst viper-get-cursor-color ()
109 (if viper-emacs-p
110 (cdr (assoc 'cursor-color (frame-parameters)))
111 (color-instance-name (frame-property (selected-frame) 'cursor-color))))
114 ;; OS/2
115 (cond ((eq (viper-device-type) 'pm)
116 (fset 'viper-color-defined-p
117 (lambda (color) (assoc color pm-color-alist)))))
120 ;; cursor colors
121 (defun viper-change-cursor-color (new-color)
122 (if (and (viper-window-display-p) (viper-color-display-p)
123 (stringp new-color) (viper-color-defined-p new-color)
124 (not (string= new-color (viper-get-cursor-color))))
125 (modify-frame-parameters
126 (selected-frame) (list (cons 'cursor-color new-color)))))
128 ;; By default, saves current frame cursor color in the
129 ;; viper-saved-cursor-color-in-replace-mode property of viper-replace-overlay
130 (defun viper-save-cursor-color (before-which-mode)
131 (if (and (viper-window-display-p) (viper-color-display-p))
132 (let ((color (viper-get-cursor-color)))
133 (if (and (stringp color) (viper-color-defined-p color)
134 (not (string= color viper-replace-overlay-cursor-color)))
135 (modify-frame-parameters
136 (selected-frame)
137 (list
138 (cons
139 (if (eq before-which-mode 'before-replace-mode)
140 'viper-saved-cursor-color-in-replace-mode
141 'viper-saved-cursor-color-in-insert-mode)
142 color)))
143 ))))
146 (defsubst viper-get-saved-cursor-color-in-replace-mode ()
148 (funcall
149 (if viper-emacs-p 'frame-parameter 'frame-property)
150 (selected-frame)
151 'viper-saved-cursor-color-in-replace-mode)
152 viper-vi-state-cursor-color))
154 (defsubst viper-get-saved-cursor-color-in-insert-mode ()
156 (funcall
157 (if viper-emacs-p 'frame-parameter 'frame-property)
158 (selected-frame)
159 'viper-saved-cursor-color-in-insert-mode)
160 viper-vi-state-cursor-color))
162 ;; restore cursor color from replace overlay
163 (defun viper-restore-cursor-color(after-which-mode)
164 (if (viper-overlay-p viper-replace-overlay)
165 (viper-change-cursor-color
166 (if (eq after-which-mode 'after-replace-mode)
167 (viper-get-saved-cursor-color-in-replace-mode)
168 (viper-get-saved-cursor-color-in-insert-mode))
172 ;; Check the current version against the major and minor version numbers
173 ;; using op: cur-vers op major.minor If emacs-major-version or
174 ;; emacs-minor-version are not defined, we assume that the current version
175 ;; is hopelessly outdated. We assume that emacs-major-version and
176 ;; emacs-minor-version are defined. Otherwise, for Emacs/XEmacs 19, if the
177 ;; current minor version is < 10 (xemacs) or < 23 (emacs) the return value
178 ;; will be nil (when op is =, >, or >=) and t (when op is <, <=), which may be
179 ;; incorrect. However, this gives correct result in our cases, since we are
180 ;; testing for sufficiently high Emacs versions.
181 (defun viper-check-version (op major minor &optional type-of-emacs)
182 (if (and (boundp 'emacs-major-version) (boundp 'emacs-minor-version))
183 (and (cond ((eq type-of-emacs 'xemacs) viper-xemacs-p)
184 ((eq type-of-emacs 'emacs) viper-emacs-p)
185 (t t))
186 (cond ((eq op '=) (and (= emacs-minor-version minor)
187 (= emacs-major-version major)))
188 ((memq op '(> >= < <=))
189 (and (or (funcall op emacs-major-version major)
190 (= emacs-major-version major))
191 (if (= emacs-major-version major)
192 (funcall op emacs-minor-version minor)
193 t)))
195 (error "%S: Invalid op in viper-check-version" op))))
196 (cond ((memq op '(= > >=)) nil)
197 ((memq op '(< <=)) t))))
200 (defun viper-get-visible-buffer-window (wind)
201 (if viper-xemacs-p
202 (get-buffer-window wind t)
203 (get-buffer-window wind 'visible)))
206 ;; Return line position.
207 ;; If pos is 'start then returns position of line start.
208 ;; If pos is 'end, returns line end. If pos is 'mid, returns line center.
209 ;; Pos = 'indent returns beginning of indentation.
210 ;; Otherwise, returns point. Current point is not moved in any case."
211 (defun viper-line-pos (pos)
212 (let ((cur-pos (point))
213 (result))
214 (cond
215 ((equal pos 'start)
216 (beginning-of-line))
217 ((equal pos 'end)
218 (end-of-line))
219 ((equal pos 'mid)
220 (goto-char (+ (viper-line-pos 'start) (viper-line-pos 'end) 2)))
221 ((equal pos 'indent)
222 (back-to-indentation))
223 (t nil))
224 (setq result (point))
225 (goto-char cur-pos)
226 result))
228 ;; Emacs counts each multibyte character as several positions in the buffer, so
229 ;; we use Emacs' chars-in-region. XEmacs is counting each char as just one pos,
230 ;; so we can simply subtract.
231 (defun viper-chars-in-region (beg end &optional preserve-sign)
232 (let ((count (abs (if (fboundp 'chars-in-region)
233 (chars-in-region beg end)
234 (- end beg)))))
235 (if (and (< end beg) preserve-sign)
236 (- count)
237 count)))
239 ;; Test if POS is between BEG and END
240 (defsubst viper-pos-within-region (pos beg end)
241 (and (>= pos (min beg end)) (>= (max beg end) pos)))
244 ;; Like move-marker but creates a virgin marker if arg isn't already a marker.
245 ;; The first argument must eval to a variable name.
246 ;; Arguments: (var-name position &optional buffer).
248 ;; This is useful for moving markers that are supposed to be local.
249 ;; For this, VAR-NAME should be made buffer-local with nil as a default.
250 ;; Then, each time this var is used in `viper-move-marker-locally' in a new
251 ;; buffer, a new marker will be created.
252 (defun viper-move-marker-locally (var pos &optional buffer)
253 (if (markerp (eval var))
255 (set var (make-marker)))
256 (move-marker (eval var) pos buffer))
259 ;; Print CONDITIONS as a message.
260 (defun viper-message-conditions (conditions)
261 (let ((case (car conditions)) (msg (cdr conditions)))
262 (if (null msg)
263 (message "%s" case)
264 (message "%s: %s" case (mapconcat 'prin1-to-string msg " ")))
265 (beep 1)))
269 ;;; List/alist utilities
271 ;; Convert LIST to an alist
272 (defun viper-list-to-alist (lst)
273 (let ((alist))
274 (while lst
275 (setq alist (cons (list (car lst)) alist))
276 (setq lst (cdr lst)))
277 alist))
279 ;; Convert ALIST to a list.
280 (defun viper-alist-to-list (alst)
281 (let ((lst))
282 (while alst
283 (setq lst (cons (car (car alst)) lst))
284 (setq alst (cdr alst)))
285 lst))
287 ;; Filter ALIST using REGEXP. Return alist whose elements match the regexp.
288 (defun viper-filter-alist (regexp alst)
289 (interactive "s x")
290 (let ((outalst) (inalst alst))
291 (while (car inalst)
292 (if (string-match regexp (car (car inalst)))
293 (setq outalst (cons (car inalst) outalst)))
294 (setq inalst (cdr inalst)))
295 outalst))
297 ;; Filter LIST using REGEXP. Return list whose elements match the regexp.
298 (defun viper-filter-list (regexp lst)
299 (interactive "s x")
300 (let ((outlst) (inlst lst))
301 (while (car inlst)
302 (if (string-match regexp (car inlst))
303 (setq outlst (cons (car inlst) outlst)))
304 (setq inlst (cdr inlst)))
305 outlst))
308 ;; Append LIS2 to LIS1, both alists, by side-effect and returns LIS1
309 ;; LIS2 is modified by filtering it: deleting its members of the form
310 ;; \(car elt\) such that (car elt') is in LIS1.
311 (defun viper-append-filter-alist (lis1 lis2)
312 (let ((temp lis1)
313 elt)
315 ;;filter-append the second list
316 (while temp
317 ;; delete all occurrences
318 (while (setq elt (assoc (car (car temp)) lis2))
319 (setq lis2 (delq elt lis2)))
320 (setq temp (cdr temp)))
322 (nconc lis1 lis2)))
325 ;;; Support for :e, :r, :w file globbing
327 ;; Glob the file spec.
328 ;; This function is designed to work under Unix. It might also work under VMS.
329 (defun viper-glob-unix-files (filespec)
330 (let ((gshell
331 (cond (ex-unix-type-shell shell-file-name)
332 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VAX VMS
333 (t "sh"))) ; probably Unix anyway
334 (gshell-options
335 ;; using cond in anticipation of further additions
336 (cond (ex-unix-type-shell-options)
338 (command (cond (viper-ms-style-os-p (format "\"ls -1 -d %s\"" filespec))
339 (t (format "ls -1 -d %s" filespec))))
340 status)
341 (save-excursion
342 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
343 (erase-buffer)
344 (setq status
345 (if gshell-options
346 (call-process gshell nil t nil
347 gshell-options
348 "-c"
349 command)
350 (call-process gshell nil t nil
351 "-c"
352 command)))
353 (goto-char (point-min))
354 ;; Issue an error, if no match.
355 (if (> status 0)
356 (save-excursion
357 (skip-chars-forward " \t\n\j")
358 (if (looking-at "ls:")
359 (viper-forward-Word 1))
360 (error "%s: %s"
361 (if (stringp gshell)
362 gshell
363 "shell")
364 (buffer-substring (point) (viper-line-pos 'end)))
366 (goto-char (point-min))
367 (viper-get-filenames-from-buffer 'one-per-line))
371 ;; Interpret the stuff in the buffer as a list of file names
372 ;; return a list of file names listed in the buffer beginning at point
373 ;; If optional arg is supplied, assume each filename is listed on a separate
374 ;; line
375 (defun viper-get-filenames-from-buffer (&optional one-per-line)
376 (let ((skip-chars (if one-per-line "\t\n" " \t\n"))
377 result fname delim)
378 (skip-chars-forward skip-chars)
379 (while (not (eobp))
380 (if (cond ((looking-at "\"")
381 (setq delim ?\")
382 (re-search-forward "[^\"]+" nil t)) ; noerror
383 ((looking-at "'")
384 (setq delim ?')
385 (re-search-forward "[^']+" nil t)) ; noerror
387 (re-search-forward
388 (concat "[^" skip-chars "]+") nil t))) ;noerror
389 (setq fname
390 (buffer-substring (match-beginning 0) (match-end 0))))
391 (if delim
392 (forward-char 1))
393 (skip-chars-forward " \t\n")
394 (setq result (cons fname result)))
395 result))
397 ;; convert MS-DOS wildcards to regexp
398 (defun viper-wildcard-to-regexp (wcard)
399 (save-excursion
400 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
401 (erase-buffer)
402 (insert wcard)
403 (goto-char (point-min))
404 (while (not (eobp))
405 (skip-chars-forward "^*?.\\\\")
406 (cond ((eq (char-after (point)) ?*) (insert ".")(forward-char 1))
407 ((eq (char-after (point)) ?.) (insert "\\")(forward-char 1))
408 ((eq (char-after (point)) ?\\) (insert "\\")(forward-char 1))
409 ((eq (char-after (point)) ??) (delete-char 1)(insert ".")))
411 (buffer-string)
415 ;; glob windows files
416 ;; LIST is expected to be in reverse order
417 (defun viper-glob-mswindows-files (filespec)
418 (let ((case-fold-search t)
419 tmp tmp2)
420 (save-excursion
421 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
422 (erase-buffer)
423 (insert filespec)
424 (goto-char (point-min))
425 (setq tmp (viper-get-filenames-from-buffer))
426 (while tmp
427 (setq tmp2 (cons (directory-files
428 ;; the directory part
429 (or (file-name-directory (car tmp))
431 t ; return full names
432 ;; the regexp part: globs the file names
433 (concat "^"
434 (viper-wildcard-to-regexp
435 (file-name-nondirectory (car tmp)))
436 "$"))
437 tmp2))
438 (setq tmp (cdr tmp)))
439 (reverse (apply 'append tmp2)))))
442 ;;; Insertion ring
444 ;; Rotate RING's index. DIRection can be positive or negative.
445 (defun viper-ring-rotate1 (ring dir)
446 (if (and (ring-p ring) (> (ring-length ring) 0))
447 (progn
448 (setcar ring (cond ((> dir 0)
449 (ring-plus1 (car ring) (ring-length ring)))
450 ((< dir 0)
451 (ring-minus1 (car ring) (ring-length ring)))
452 ;; don't rotate if dir = 0
453 (t (car ring))))
454 (viper-current-ring-item ring)
457 (defun viper-special-ring-rotate1 (ring dir)
458 (if (memq viper-intermediate-command
459 '(repeating-display-destructive-command
460 repeating-insertion-from-ring))
461 (viper-ring-rotate1 ring dir)
462 ;; don't rotate otherwise
463 (viper-ring-rotate1 ring 0)))
465 ;; current ring item; if N is given, then so many items back from the
466 ;; current
467 (defun viper-current-ring-item (ring &optional n)
468 (setq n (or n 0))
469 (if (and (ring-p ring) (> (ring-length ring) 0))
470 (aref (cdr (cdr ring)) (mod (- (car ring) 1 n) (ring-length ring)))))
472 ;; Push item onto ring. The second argument is a ring-variable, not value.
473 (defun viper-push-onto-ring (item ring-var)
474 (or (ring-p (eval ring-var))
475 (set ring-var (make-ring (eval (intern (format "%S-size" ring-var))))))
476 (or (null item) ; don't push nil
477 (and (stringp item) (string= item "")) ; or empty strings
478 (equal item (viper-current-ring-item (eval ring-var))) ; or old stuff
479 ;; Since viper-set-destructive-command checks if we are inside
480 ;; viper-repeat, we don't check whether this-command-keys is a `.'. The
481 ;; cmd viper-repeat makes a call to the current function only if `.' is
482 ;; executing a command from the command history. It doesn't call the
483 ;; push-onto-ring function if `.' is simply repeating the last
484 ;; destructive command. We only check for ESC (which happens when we do
485 ;; insert with a prefix argument, or if this-command-keys doesn't give
486 ;; anything meaningful (in that case we don't know what to show to the
487 ;; user).
488 (and (eq ring-var 'viper-command-ring)
489 (string-match "\\([0-9]*\e\\|^[ \t]*$\\|escape\\)"
490 (viper-array-to-string (this-command-keys))))
491 (viper-ring-insert (eval ring-var) item))
495 ;; removing elts from ring seems to break it
496 (defun viper-cleanup-ring (ring)
497 (or (< (ring-length ring) 2)
498 (null (viper-current-ring-item ring))
499 ;; last and previous equal
500 (if (equal (viper-current-ring-item ring)
501 (viper-current-ring-item ring 1))
502 (viper-ring-pop ring))))
504 ;; ring-remove seems to be buggy, so we concocted this for our purposes.
505 (defun viper-ring-pop (ring)
506 (let* ((ln (ring-length ring))
507 (vec (cdr (cdr ring)))
508 (veclen (length vec))
509 (hd (car ring))
510 (idx (max 0 (ring-minus1 hd ln)))
511 (top-elt (aref vec idx)))
513 ;; shift elements
514 (while (< (1+ idx) veclen)
515 (aset vec idx (aref vec (1+ idx)))
516 (setq idx (1+ idx)))
517 (aset vec idx nil)
519 (setq hd (max 0 (ring-minus1 hd ln)))
520 (if (= hd (1- ln)) (setq hd 0))
521 (setcar ring hd) ; move head
522 (setcar (cdr ring) (max 0 (1- ln))) ; adjust length
523 top-elt
526 (defun viper-ring-insert (ring item)
527 (let* ((ln (ring-length ring))
528 (vec (cdr (cdr ring)))
529 (veclen (length vec))
530 (hd (car ring))
531 (vecpos-after-hd (if (= hd 0) ln hd))
532 (idx ln))
534 (if (= ln veclen)
535 (progn
536 (aset vec hd item) ; hd is always 1+ the actual head index in vec
537 (setcar ring (ring-plus1 hd ln)))
538 (setcar (cdr ring) (1+ ln))
539 (setcar ring (ring-plus1 vecpos-after-hd (1+ ln)))
540 (while (and (>= idx vecpos-after-hd) (> ln 0))
541 (aset vec idx (aref vec (1- idx)))
542 (setq idx (1- idx)))
543 (aset vec vecpos-after-hd item))
544 item))
547 ;;; String utilities
549 ;; If STRING is longer than MAX-LEN, truncate it and print ...... instead
550 ;; PRE-STRING is a string to prepend to the abbrev string.
551 ;; POST-STRING is a string to append to the abbrev string.
552 ;; ABBREV_SIGN is a string to be inserted before POST-STRING
553 ;; if the orig string was truncated.
554 (defun viper-abbreviate-string (string max-len
555 pre-string post-string abbrev-sign)
556 (let (truncated-str)
557 (setq truncated-str
558 (if (stringp string)
559 (substring string 0 (min max-len (length string)))))
560 (cond ((null truncated-str) "")
561 ((> (length string) max-len)
562 (format "%s%s%s%s"
563 pre-string truncated-str abbrev-sign post-string))
564 (t (format "%s%s%s" pre-string truncated-str post-string)))))
566 ;; tells if we are over a whitespace-only line
567 (defsubst viper-over-whitespace-line ()
568 (save-excursion
569 (beginning-of-line)
570 (looking-at "^[ \t]*$")))
573 ;;; Saving settings in custom file
575 ;; Save the current setting of VAR in CUSTOM-FILE.
576 ;; If given, MESSAGE is a message to be displayed after that.
577 ;; This message is erased after 2 secs, if erase-msg is non-nil.
578 ;; Arguments: var message custom-file &optional erase-message
579 (defun viper-save-setting (var message custom-file &optional erase-msg)
580 (let* ((var-name (symbol-name var))
581 (var-val (if (boundp var) (eval var)))
582 (regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z---_']*[ \t\n)]" var-name))
583 (buf (find-file-noselect (substitute-in-file-name custom-file)))
585 (message message)
586 (save-excursion
587 (set-buffer buf)
588 (goto-char (point-min))
589 (if (re-search-forward regexp nil t)
590 (let ((reg-end (1- (match-end 0))))
591 (search-backward var-name)
592 (delete-region (match-beginning 0) reg-end)
593 (goto-char (match-beginning 0))
594 (insert (format "%s '%S" var-name var-val)))
595 (goto-char (point-max))
596 (if (not (bolp)) (insert "\n"))
597 (insert (format "(setq %s '%S)\n" var-name var-val)))
598 (save-buffer))
599 (kill-buffer buf)
600 (if erase-msg
601 (progn
602 (sit-for 2)
603 (message "")))
606 ;; Save STRING in CUSTOM-FILE. If PATTERN is non-nil, remove strings that
607 ;; match this pattern.
608 (defun viper-save-string-in-file (string custom-file &optional pattern)
609 (let ((buf (find-file-noselect (substitute-in-file-name custom-file))))
610 (save-excursion
611 (set-buffer buf)
612 (let (buffer-read-only)
613 (goto-char (point-min))
614 (if pattern (delete-matching-lines pattern))
615 (goto-char (point-max))
616 (if string (insert string))
617 (save-buffer)))
618 (kill-buffer buf)
622 ;; define remote file test
623 (or (fboundp 'viper-file-remote-p) ; user supplied his own function: use it
624 (defun viper-file-remote-p (file-name)
625 (car (cond ((featurep 'efs-auto) (efs-ftp-path file-name))
626 ((fboundp 'file-remote-p) (file-remote-p file-name))
627 (t (require 'ange-ftp)
628 ;; Can happen only in Emacs, since XEmacs has file-remote-p
629 (ange-ftp-ftp-name file-name))))))
633 ;; This is a simple-minded check for whether a file is under version control.
634 ;; If file,v exists but file doesn't, this file is considered to be not checked
635 ;; in and not checked out for the purpose of patching (since patch won't be
636 ;; able to read such a file anyway).
637 ;; FILE is a string representing file name
638 ;;(defun viper-file-under-version-control (file)
639 ;; (let* ((filedir (file-name-directory file))
640 ;; (file-nondir (file-name-nondirectory file))
641 ;; (trial (concat file-nondir ",v"))
642 ;; (full-trial (concat filedir trial))
643 ;; (full-rcs-trial (concat filedir "RCS/" trial)))
644 ;; (and (stringp file)
645 ;; (file-exists-p file)
646 ;; (or
647 ;; (and
648 ;; (file-exists-p full-trial)
649 ;; ;; in FAT FS, `file,v' and `file' may turn out to be the same!
650 ;; ;; don't be fooled by this!
651 ;; (not (equal (file-attributes file)
652 ;; (file-attributes full-trial))))
653 ;; ;; check if a version is in RCS/ directory
654 ;; (file-exists-p full-rcs-trial)))
655 ;; ))
658 (defsubst viper-file-checked-in-p (file)
659 (and (featurep 'vc-hooks)
660 ;; CVS files are considered not checked in
661 (not (memq (vc-backend file) '(nil CVS)))
662 (not (vc-locking-user file))))
664 ;; checkout if visited file is checked in
665 (defun viper-maybe-checkout (buf)
666 (let ((file (expand-file-name (buffer-file-name buf)))
667 (checkout-function (key-binding "\C-x\C-q")))
668 (if (and (viper-file-checked-in-p file)
669 (or (beep 1) t)
670 (y-or-n-p
671 (format
672 "File %s is checked in. Check it out? "
673 (viper-abbreviate-file-name file))))
674 (with-current-buffer buf
675 (command-execute checkout-function)))))
680 ;;; Overlays
682 ;; Search
684 (defun viper-flash-search-pattern ()
685 (if (viper-overlay-p viper-search-overlay)
686 (viper-move-overlay
687 viper-search-overlay (match-beginning 0) (match-end 0))
688 (setq viper-search-overlay
689 (viper-make-overlay
690 (match-beginning 0) (match-end 0) (current-buffer))))
692 (viper-overlay-put
693 viper-search-overlay 'priority viper-search-overlay-priority)
694 (if (viper-has-face-support-p)
695 (progn
696 (viper-overlay-put viper-search-overlay 'face viper-search-face)
697 (sit-for 2)
698 (viper-overlay-put viper-search-overlay 'face nil))))
701 ;; Replace state
703 (defsubst viper-move-replace-overlay (beg end)
704 (viper-move-overlay viper-replace-overlay beg end))
706 (defun viper-set-replace-overlay (beg end)
707 (if (viper-overlay-p viper-replace-overlay)
708 (viper-move-replace-overlay beg end)
709 (setq viper-replace-overlay (viper-make-overlay beg end (current-buffer)))
710 ;; never detach
711 (viper-overlay-put
712 viper-replace-overlay (if viper-emacs-p 'evaporate 'detachable) nil)
713 (viper-overlay-put
714 viper-replace-overlay 'priority viper-replace-overlay-priority)
715 ;; If Emacs will start supporting overlay maps, as it currently supports
716 ;; text-property maps, we could do away with viper-replace-minor-mode and
717 ;; just have keymap attached to replace overlay.
718 ;;(viper-overlay-put
719 ;; viper-replace-overlay
720 ;; (if viper-xemacs-p 'keymap 'local-map)
721 ;; viper-replace-map)
723 (if (viper-has-face-support-p)
724 (viper-overlay-put
725 viper-replace-overlay 'face viper-replace-overlay-face))
726 (viper-save-cursor-color 'before-replace-mode)
727 (viper-change-cursor-color viper-replace-overlay-cursor-color)
731 (defun viper-set-replace-overlay-glyphs (before-glyph after-glyph)
732 (if (or (not (viper-has-face-support-p))
733 viper-use-replace-region-delimiters)
734 (let ((before-name (if viper-xemacs-p 'begin-glyph 'before-string))
735 (after-name (if viper-xemacs-p 'end-glyph 'after-string)))
736 (viper-overlay-put viper-replace-overlay before-name before-glyph)
737 (viper-overlay-put viper-replace-overlay after-name after-glyph))))
739 (defun viper-hide-replace-overlay ()
740 (viper-set-replace-overlay-glyphs nil nil)
741 (viper-restore-cursor-color 'after-replace-mode)
742 (viper-restore-cursor-color 'after-insert-mode)
743 (if (viper-has-face-support-p)
744 (viper-overlay-put viper-replace-overlay 'face nil)))
747 (defsubst viper-replace-start ()
748 (viper-overlay-start viper-replace-overlay))
749 (defsubst viper-replace-end ()
750 (viper-overlay-end viper-replace-overlay))
753 ;; Minibuffer
755 (defun viper-set-minibuffer-overlay ()
756 (viper-check-minibuffer-overlay)
757 (if (viper-has-face-support-p)
758 (progn
759 (viper-overlay-put
760 viper-minibuffer-overlay 'face viper-minibuffer-current-face)
761 (viper-overlay-put
762 viper-minibuffer-overlay 'priority viper-minibuffer-overlay-priority)
763 ;; never detach
764 (viper-overlay-put
765 viper-minibuffer-overlay
766 (if viper-emacs-p 'evaporate 'detachable)
767 nil)
768 ;; make viper-minibuffer-overlay open-ended
769 ;; In emacs, it is made open ended at creation time
770 (if viper-xemacs-p
771 (progn
772 (viper-overlay-put viper-minibuffer-overlay 'start-open nil)
773 (viper-overlay-put viper-minibuffer-overlay 'end-open nil)))
776 (defun viper-check-minibuffer-overlay ()
777 (or (viper-overlay-p viper-minibuffer-overlay)
778 (setq viper-minibuffer-overlay
779 (if viper-xemacs-p
780 (viper-make-overlay 1 (1+ (buffer-size)) (current-buffer))
781 ;; make overlay open-ended
782 (viper-make-overlay
783 1 (1+ (buffer-size)) (current-buffer) nil 'rear-advance)))
787 (defsubst viper-is-in-minibuffer ()
788 (save-match-data
789 (string-match "\*Minibuf-" (buffer-name))))
793 ;;; XEmacs compatibility
795 (defun viper-abbreviate-file-name (file)
796 (if viper-emacs-p
797 (abbreviate-file-name file)
798 ;; XEmacs requires addl argument
799 (abbreviate-file-name file t)))
801 ;; Sit for VAL milliseconds. XEmacs doesn't support the millisecond arg
802 ;; in sit-for, so this function smoothes out the differences.
803 (defsubst viper-sit-for-short (val &optional nodisp)
804 (if viper-xemacs-p
805 (sit-for (/ val 1000.0) nodisp)
806 (sit-for 0 val nodisp)))
808 ;; EVENT may be a single event of a sequence of events
809 (defsubst viper-ESC-event-p (event)
810 (let ((ESC-keys '(?\e (control \[) escape))
811 (key (viper-event-key event)))
812 (member key ESC-keys)))
814 ;; checks if object is a marker, has a buffer, and points to within that buffer
815 (defun viper-valid-marker (marker)
816 (if (and (markerp marker) (marker-buffer marker))
817 (let ((buf (marker-buffer marker))
818 (pos (marker-position marker)))
819 (save-excursion
820 (set-buffer buf)
821 (and (<= pos (point-max)) (<= (point-min) pos))))))
823 (defsubst viper-mark-marker ()
824 (if viper-xemacs-p
825 (mark-marker t)
826 (mark-marker)))
828 ;; like (set-mark-command nil) but doesn't push twice, if (car mark-ring)
829 ;; is the same as (mark t).
830 (defsubst viper-set-mark-if-necessary ()
831 (setq mark-ring (delete (viper-mark-marker) mark-ring))
832 (set-mark-command nil)
833 (setq viper-saved-mark (point)))
835 ;; In transient mark mode (zmacs mode), it is annoying when regions become
836 ;; highlighted due to Viper's pushing marks. So, we deactivate marks, unless
837 ;; the user explicitly wants highlighting, e.g., by hitting '' or ``
838 (defun viper-deactivate-mark ()
839 (if viper-xemacs-p
840 (zmacs-deactivate-region)
841 (deactivate-mark)))
843 (defsubst viper-leave-region-active ()
844 (if viper-xemacs-p
845 (setq zmacs-region-stays t)))
847 ;; Check if arg is a valid character for register
848 ;; TYPE is a list that can contain `letter', `Letter', and `digit'.
849 ;; Letter means lowercase letters, Letter means uppercase letters, and
850 ;; digit means digits from 1 to 9.
851 ;; If TYPE is nil, then down/uppercase letters and digits are allowed.
852 (defun viper-valid-register (reg &optional type)
853 (or type (setq type '(letter Letter digit)))
854 (or (if (memq 'letter type)
855 (and (<= ?a reg) (<= reg ?z)))
856 (if (memq 'digit type)
857 (and (<= ?1 reg) (<= reg ?9)))
858 (if (memq 'Letter type)
859 (and (<= ?A reg) (<= reg ?Z)))
863 (defsubst viper-events-to-keys (events)
864 (cond (viper-xemacs-p (events-to-keys events))
865 (t events)))
868 ;; it is suggested that an event must be copied before it is assigned to
869 ;; last-command-event in XEmacs
870 (defun viper-copy-event (event)
871 (if viper-xemacs-p
872 (copy-event event)
873 event))
875 ;; like read-event, but in XEmacs also try to convert to char, if possible
876 (defun viper-read-event-convert-to-char ()
877 (let (event)
878 (if viper-emacs-p
879 (read-event)
880 (setq event (next-command-event))
881 (or (event-to-character event)
882 event))
885 ;; This function lets function-key-map convert key sequences into logical
886 ;; keys. This does a better job than viper-read-event when it comes to kbd
887 ;; macros, since it enables certain macros to be shared between X and TTY modes
888 ;; by correctly mapping key sequences for Left/Right/... (one an ascii
889 ;; terminal) into logical keys left, right, etc.
890 (defun viper-read-key ()
891 (let ((overriding-local-map viper-overriding-map)
892 (inhibit-quit t)
893 help-char key)
894 (use-global-map viper-overriding-map)
895 (unwind-protect
896 (setq key (elt (read-key-sequence nil) 0))
897 (use-global-map global-map))
898 key))
901 ;; Emacs has a bug in eventp, which causes (eventp nil) to return (nil)
902 ;; instead of nil, if '(nil) was previously inadvertently assigned to
903 ;; unread-command-events
904 (defun viper-event-key (event)
905 (or (and event (eventp event))
906 (error "viper-event-key: Wrong type argument, eventp, %S" event))
907 (when (cond (viper-xemacs-p (or (key-press-event-p event)
908 (mouse-event-p event)))
909 (t t))
910 (let ((mod (event-modifiers event))
911 basis)
912 (setq basis
913 (cond
914 (viper-xemacs-p
915 (cond ((key-press-event-p event)
916 (event-key event))
917 ((button-event-p event)
918 (concat "mouse-" (prin1-to-string (event-button event))))
920 (error "viper-event-key: Unknown event, %S" event))))
922 ;; Emacs doesn't handle capital letters correctly, since
923 ;; \S-a isn't considered the same as A (it behaves as
924 ;; plain `a' instead). So we take care of this here
925 (cond ((and (viper-characterp event) (<= ?A event) (<= event ?Z))
926 (setq mod nil
927 event event))
928 ;; Emacs has the oddity whereby characters 128+char
929 ;; represent M-char *if* this appears inside a string.
930 ;; So, we convert them manually to (meta char).
931 ((and (viper-characterp event)
932 (< ?\C-? event) (<= event 255))
933 (setq mod '(meta)
934 event (- event ?\C-? 1)))
935 ((and (null mod) (eq event 'return))
936 (setq event ?\C-m))
937 ((and (null mod) (eq event 'space))
938 (setq event ?\ ))
939 ((and (null mod) (eq event 'delete))
940 (setq event ?\C-?))
941 ((and (null mod) (eq event 'backspace))
942 (setq event ?\C-h))
943 (t (event-basic-type event)))
945 (if (viper-characterp basis)
946 (setq basis
947 (if (= basis ?\C-?)
948 (list 'control '\?) ; taking care of an emacs bug
949 (intern (char-to-string basis)))))
950 (if mod
951 (append mod (list basis))
952 basis))))
954 (defun viper-key-to-emacs-key (key)
955 (let (key-name char-p modifiers mod-char-list base-key base-key-name)
956 (cond (viper-xemacs-p key)
958 ((symbolp key)
959 (setq key-name (symbol-name key))
960 (cond ((= (length key-name) 1) ; character event
961 (string-to-char key-name))
962 ;; Emacs doesn't recognize `return' and `escape' as events on
963 ;; dumb terminals, so we translate them into characters
964 ((and viper-emacs-p (not (viper-window-display-p))
965 (string= key-name "return"))
966 ?\C-m)
967 ((and viper-emacs-p (not (viper-window-display-p))
968 (string= key-name "escape"))
969 ?\e)
970 ;; pass symbol-event as is
971 (t key)))
973 ((listp key)
974 (setq modifiers (subseq key 0 (1- (length key)))
975 base-key (viper-seq-last-elt key)
976 base-key-name (symbol-name base-key)
977 char-p (= (length base-key-name) 1))
978 (setq mod-char-list
979 (mapcar
980 '(lambda (elt) (upcase (substring (symbol-name elt) 0 1)))
981 modifiers))
982 (if char-p
983 (setq key-name
984 (car (read-from-string
985 (concat
986 "?\\"
987 (mapconcat 'identity mod-char-list "-\\")
989 base-key-name))))
990 (setq key-name
991 (intern
992 (concat
993 (mapconcat 'identity mod-char-list "-")
995 base-key-name))))))
999 ;; Args can be a sequence of events, a string, or a Viper macro. Will try to
1000 ;; convert events to keys and, if all keys are regular printable
1001 ;; characters, will return a string. Otherwise, will return a string
1002 ;; representing a vector of converted events. If the input was a Viper macro,
1003 ;; will return a string that represents this macro as a vector.
1004 (defun viper-array-to-string (event-seq)
1005 (let (temp temp2)
1006 (cond ((stringp event-seq) event-seq)
1007 ((viper-event-vector-p event-seq)
1008 (setq temp (mapcar 'viper-event-key event-seq))
1009 (cond ((viper-char-symbol-sequence-p temp)
1010 (mapconcat 'symbol-name temp ""))
1011 ((and (viper-char-array-p
1012 (setq temp2 (mapcar 'viper-key-to-character temp))))
1013 (mapconcat 'char-to-string temp2 ""))
1014 (t (prin1-to-string (vconcat temp)))))
1015 ((viper-char-symbol-sequence-p event-seq)
1016 (mapconcat 'symbol-name event-seq ""))
1017 ((and (vectorp event-seq)
1018 (viper-char-array-p
1019 (setq temp (mapcar 'viper-key-to-character event-seq))))
1020 (mapconcat 'char-to-string temp ""))
1021 (t (prin1-to-string event-seq)))))
1023 (defun viper-key-press-events-to-chars (events)
1024 (mapconcat (if viper-emacs-p
1025 'char-to-string
1026 (lambda (elt) (char-to-string (event-to-character elt))))
1027 events
1028 ""))
1031 ;; Uses different timeouts for ESC-sequences and others
1032 (defsubst viper-fast-keysequence-p ()
1033 (not (viper-sit-for-short
1034 (if (viper-ESC-event-p last-input-event)
1035 viper-ESC-keyseq-timeout
1036 viper-fast-keyseq-timeout)
1037 t)))
1039 (defun viper-read-char-exclusive ()
1040 (let (char
1041 (echo-keystrokes 1))
1042 (while (null char)
1043 (condition-case nil
1044 (setq char (read-char))
1045 (error
1046 ;; skip event if not char
1047 (viper-read-event))))
1048 char))
1050 ;; key is supposed to be in viper's representation, e.g., (control l), a
1051 ;; character, etc.
1052 (defun viper-key-to-character (key)
1053 (cond ((eq key 'space) ?\ )
1054 ((eq key 'delete) ?\C-?)
1055 ((eq key 'return) ?\C-m)
1056 ((eq key 'backspace) ?\C-h)
1057 ((and (symbolp key)
1058 (= 1 (length (symbol-name key))))
1059 (string-to-char (symbol-name key)))
1060 ((and (listp key)
1061 (eq (car key) 'control)
1062 (symbol-name (nth 1 key))
1063 (= 1 (length (symbol-name (nth 1 key)))))
1064 (read (format "?\\C-%s" (symbol-name (nth 1 key)))))
1065 (t key)))
1068 (defun viper-setup-master-buffer (&rest other-files-or-buffers)
1069 "Set up the current buffer as a master buffer.
1070 Arguments become related buffers. This function should normally be used in
1071 the `Local variables' section of a file."
1072 (setq viper-related-files-and-buffers-ring
1073 (make-ring (1+ (length other-files-or-buffers))))
1074 (mapcar '(lambda (elt)
1075 (viper-ring-insert viper-related-files-and-buffers-ring elt))
1076 other-files-or-buffers)
1077 (viper-ring-insert viper-related-files-and-buffers-ring (buffer-name))
1080 ;;; Movement utilities
1082 ;; Characters that should not be considered as part of the word, in reformed-vi
1083 ;; syntax mode.
1084 (defconst viper-non-word-characters-reformed-vi
1085 "!@#$%^&*()-+=|\\~`{}[];:'\",<.>/?")
1086 ;; These are characters that are not to be considered as parts of a word in
1087 ;; Viper.
1088 ;; Set each time state changes and at loading time
1089 (viper-deflocalvar viper-non-word-characters nil)
1091 ;; must be buffer-local
1092 (viper-deflocalvar viper-ALPHA-char-class "w"
1093 "String of syntax classes characterizing Viper's alphanumeric symbols.
1094 In addition, the symbol `_' may be considered alphanumeric if
1095 `viper-syntax-preference' is `strict-vi' or `reformed-vi'.")
1097 (defconst viper-strict-ALPHA-chars "a-zA-Z0-9_"
1098 "Regexp matching the set of alphanumeric characters acceptable to strict
1099 Vi.")
1100 (defconst viper-strict-SEP-chars " \t\n"
1101 "Regexp matching the set of alphanumeric characters acceptable to strict
1102 Vi.")
1103 (defconst viper-strict-SEP-chars-sans-newline " \t"
1104 "Regexp matching the set of alphanumeric characters acceptable to strict
1105 Vi.")
1107 (defconst viper-SEP-char-class " -"
1108 "String of syntax classes for Vi separators.
1109 Usually contains ` ', linefeed, TAB or formfeed.")
1112 ;; Set Viper syntax classes and related variables according to
1113 ;; `viper-syntax-preference'.
1114 (defun viper-update-syntax-classes (&optional set-default)
1115 (let ((preference (cond ((eq viper-syntax-preference 'emacs)
1116 "w") ; Viper words have only Emacs word chars
1117 ((eq viper-syntax-preference 'extended)
1118 "w_") ; Viper words have Emacs word & symbol chars
1119 (t "w"))) ; Viper words are Emacs words plus `_'
1120 (non-word-chars (cond ((eq viper-syntax-preference 'reformed-vi)
1121 (viper-string-to-list
1122 viper-non-word-characters-reformed-vi))
1123 (t nil))))
1124 (if set-default
1125 (setq-default viper-ALPHA-char-class preference
1126 viper-non-word-characters non-word-chars)
1127 (setq viper-ALPHA-char-class preference
1128 viper-non-word-characters non-word-chars))
1131 ;; SYMBOL is used because customize requires it, but it is ignored, unless it
1132 ;; is `nil'. If nil, use setq.
1133 (defun viper-set-syntax-preference (&optional symbol value)
1134 "Set Viper syntax preference.
1135 If called interactively or if SYMBOL is nil, sets syntax preference in current
1136 buffer. If called non-interactively, preferably via the customization widget,
1137 sets the default value."
1138 (interactive)
1139 (or value
1140 (setq value
1141 (completing-read
1142 "Viper syntax preference: "
1143 '(("strict-vi") ("reformed-vi") ("extended") ("emacs"))
1144 nil 'require-match)))
1145 (if (stringp value) (setq value (intern value)))
1146 (or (memq value '(strict-vi reformed-vi extended emacs))
1147 (error "Invalid Viper syntax preference, %S" value))
1148 (if symbol
1149 (setq-default viper-syntax-preference value)
1150 (setq viper-syntax-preference value))
1151 (viper-update-syntax-classes))
1153 (defcustom viper-syntax-preference 'reformed-vi
1154 "*Syntax type characterizing Viper's alphanumeric symbols.
1155 Affects movement and change commands that deal with Vi-style words.
1156 Works best when set in the hooks to various major modes.
1158 `strict-vi' means Viper words are (hopefully) exactly as in Vi.
1160 `reformed-vi' means Viper words are like Emacs words \(as determined using
1161 Emacs syntax tables, which are different for different major modes\) with two
1162 exceptions: the symbol `_' is always part of a word and typical Vi non-word
1163 symbols, such as `,',:,\",),{, etc., are excluded.
1164 This behaves very close to `strict-vi', but also works well with non-ASCII
1165 characters from various alphabets.
1167 `extended' means Viper word constituents are symbols that are marked as being
1168 parts of words OR symbols in Emacs syntax tables.
1169 This is most appropriate for major modes intended for editing programs.
1171 `emacs' means Viper words are the same as Emacs words as specified by Emacs
1172 syntax tables.
1173 This option is appropriate if you like Emacs-style words."
1174 :type '(radio (const strict-vi) (const reformed-vi)
1175 (const extended) (const emacs))
1176 :set 'viper-set-syntax-preference
1177 :group 'viper)
1178 (make-variable-buffer-local 'viper-syntax-preference)
1181 ;; addl-chars are characters to be temporarily considered as alphanumerical
1182 (defun viper-looking-at-alpha (&optional addl-chars)
1183 (or (stringp addl-chars) (setq addl-chars ""))
1184 (if (eq viper-syntax-preference 'reformed-vi)
1185 (setq addl-chars (concat addl-chars "_")))
1186 (let ((char (char-after (point))))
1187 (if char
1188 (if (eq viper-syntax-preference 'strict-vi)
1189 (looking-at (concat "[" viper-strict-ALPHA-chars addl-chars "]"))
1191 ;; or one of the additional chars being asked to include
1192 (memq char (viper-string-to-list addl-chars))
1193 (and
1194 ;; not one of the excluded word chars
1195 (not (memq char viper-non-word-characters))
1196 ;; char of the Viper-word syntax class
1197 (memq (char-syntax char)
1198 (viper-string-to-list viper-ALPHA-char-class))))))
1201 (defun viper-looking-at-separator ()
1202 (let ((char (char-after (point))))
1203 (if char
1204 (if (eq viper-syntax-preference 'strict-vi)
1205 (memq char (viper-string-to-list viper-strict-SEP-chars))
1206 (or (eq char ?\n) ; RET is always a separator in Vi
1207 (memq (char-syntax char)
1208 (viper-string-to-list viper-SEP-char-class)))))
1211 (defsubst viper-looking-at-alphasep (&optional addl-chars)
1212 (or (viper-looking-at-separator) (viper-looking-at-alpha addl-chars)))
1214 (defun viper-skip-alpha-forward (&optional addl-chars)
1215 (or (stringp addl-chars) (setq addl-chars ""))
1216 (viper-skip-syntax
1217 'forward
1218 (cond ((eq viper-syntax-preference 'strict-vi)
1220 (t viper-ALPHA-char-class))
1221 (cond ((eq viper-syntax-preference 'strict-vi)
1222 (concat viper-strict-ALPHA-chars addl-chars))
1223 (t addl-chars))))
1225 (defun viper-skip-alpha-backward (&optional addl-chars)
1226 (or (stringp addl-chars) (setq addl-chars ""))
1227 (viper-skip-syntax
1228 'backward
1229 (cond ((eq viper-syntax-preference 'strict-vi)
1231 (t viper-ALPHA-char-class))
1232 (cond ((eq viper-syntax-preference 'strict-vi)
1233 (concat viper-strict-ALPHA-chars addl-chars))
1234 (t addl-chars))))
1236 ;; weird syntax tables may confuse strict-vi style
1237 (defsubst viper-skip-all-separators-forward (&optional within-line)
1238 (if (eq viper-syntax-preference 'strict-vi)
1239 (if within-line
1240 (skip-chars-forward viper-strict-SEP-chars-sans-newline)
1241 (skip-chars-forward viper-strict-SEP-chars))
1242 (viper-skip-syntax 'forward
1243 viper-SEP-char-class
1244 (or within-line "\n")
1245 (if within-line (viper-line-pos 'end)))))
1246 (defsubst viper-skip-all-separators-backward (&optional within-line)
1247 (if (eq viper-syntax-preference 'strict-vi)
1248 (if within-line
1249 (skip-chars-backward viper-strict-SEP-chars-sans-newline)
1250 (skip-chars-backward viper-strict-SEP-chars))
1251 (viper-skip-syntax 'backward
1252 viper-SEP-char-class
1253 (or within-line "\n")
1254 (if within-line (viper-line-pos 'start)))))
1255 (defun viper-skip-nonseparators (direction)
1256 (viper-skip-syntax
1257 direction
1258 (concat "^" viper-SEP-char-class)
1260 (viper-line-pos (if (eq direction 'forward) 'end 'start))))
1263 ;; skip over non-word constituents and non-separators
1264 (defun viper-skip-nonalphasep-forward ()
1265 (if (eq viper-syntax-preference 'strict-vi)
1266 (skip-chars-forward
1267 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars))
1268 (viper-skip-syntax
1269 'forward
1270 (concat "^" viper-ALPHA-char-class viper-SEP-char-class)
1271 ;; Emacs may consider some of these as words, but we don't want them
1272 viper-non-word-characters
1273 (viper-line-pos 'end))))
1274 (defun viper-skip-nonalphasep-backward ()
1275 (if (eq viper-syntax-preference 'strict-vi)
1276 (skip-chars-backward
1277 (concat "^" viper-strict-SEP-chars viper-strict-ALPHA-chars))
1278 (viper-skip-syntax
1279 'backward
1280 (concat "^" viper-ALPHA-char-class viper-SEP-char-class)
1281 ;; Emacs may consider some of these as words, but we don't want them
1282 viper-non-word-characters
1283 (viper-line-pos 'start))))
1285 ;; Skip SYNTAX like skip-syntax-* and ADDL-CHARS like skip-chars-*
1286 ;; Return the number of chars traveled.
1287 ;; Both SYNTAX or ADDL-CHARS can be strings or lists of characters.
1288 ;; When SYNTAX is "w", then viper-non-word-characters are not considered to be
1289 ;; words, even if Emacs syntax table says they are.
1290 (defun viper-skip-syntax (direction syntax addl-chars &optional limit)
1291 (let ((total 0)
1292 (local 1)
1293 (skip-chars-func
1294 (if (eq direction 'forward)
1295 'skip-chars-forward 'skip-chars-backward))
1296 (skip-syntax-func
1297 (if (eq direction 'forward)
1298 'viper-forward-char-carefully 'viper-backward-char-carefully))
1299 char-looked-at syntax-of-char-looked-at negated-syntax)
1300 (setq addl-chars
1301 (cond ((listp addl-chars) (viper-charlist-to-string addl-chars))
1302 ((stringp addl-chars) addl-chars)
1303 (t "")))
1304 (setq syntax
1305 (cond ((listp syntax) syntax)
1306 ((stringp syntax) (viper-string-to-list syntax))
1307 (t nil)))
1308 (if (memq ?^ syntax) (setq negated-syntax t))
1310 (while (and (not (= local 0))
1311 (cond ((eq direction 'forward)
1312 (not (eobp)))
1313 (t (not (bobp)))))
1314 (setq char-looked-at (viper-char-at-pos direction)
1315 ;; if outside the range, set to nil
1316 syntax-of-char-looked-at (if char-looked-at
1317 (char-syntax char-looked-at)))
1318 (setq local
1319 (+ (if (and
1320 (cond ((and limit (eq direction 'forward))
1321 (< (point) limit))
1322 (limit ; backward & limit
1323 (> (point) limit))
1324 (t t)) ; no limit
1325 ;; char under/before cursor has appropriate syntax
1326 (if negated-syntax
1327 (not (memq syntax-of-char-looked-at syntax))
1328 (memq syntax-of-char-looked-at syntax))
1329 ;; if char-syntax class is "word", make sure it is not one
1330 ;; of the excluded characters
1331 (if (and (eq syntax-of-char-looked-at ?w)
1332 (not negated-syntax))
1333 (not (memq char-looked-at viper-non-word-characters))
1335 (funcall skip-syntax-func 1)
1337 (funcall skip-chars-func addl-chars limit)))
1338 (setq total (+ total local)))
1339 total
1344 (provide 'viper-util)
1347 ;;; Local Variables:
1348 ;;; eval: (put 'viper-deflocalvar 'lisp-indent-hook 'defun)
1349 ;;; End:
1351 ;;; viper-util.el ends here