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