new version
[emacs.git] / lisp / emulation / viper-cmd.el
bloba2d113255110d038f7ba41690bfe128c957caa79
1 ;;; viper-cmd.el --- Vi command support for Viper
2 ;; Copyright (C) 1997 Free Software Foundation, Inc.
5 ;; Code
7 (provide 'viper-cmd)
8 (require 'advice)
10 ;; Compiler pacifier
11 (defvar viper-minibuffer-current-face)
12 (defvar viper-minibuffer-insert-face)
13 (defvar viper-minibuffer-vi-face)
14 (defvar viper-minibuffer-emacs-face)
15 (defvar viper-always)
16 (defvar viper-mode-string)
17 (defvar viper-custom-file-name)
18 (defvar iso-accents-mode)
19 (defvar quail-mode)
20 (defvar quail-current-str)
21 (defvar zmacs-region-stays)
22 (defvar mark-even-if-inactive)
24 ;; loading happens only in non-interactive compilation
25 ;; in order to spare non-viperized emacs from being viperized
26 (if noninteractive
27 (eval-when-compile
28 (let ((load-path (cons (expand-file-name ".") load-path)))
29 (or (featurep 'viper-util)
30 (load "viper-util.el" nil nil 'nosuffix))
31 (or (featurep 'viper-keym)
32 (load "viper-keym.el" nil nil 'nosuffix))
33 (or (featurep 'viper-mous)
34 (load "viper-mous.el" nil nil 'nosuffix))
35 (or (featurep 'viper-macs)
36 (load "viper-macs.el" nil nil 'nosuffix))
37 (or (featurep 'viper-ex)
38 (load "viper-ex.el" nil nil 'nosuffix))
39 )))
40 ;; end pacifier
43 (require 'viper-util)
44 (require 'viper-keym)
45 (require 'viper-mous)
46 (require 'viper-macs)
47 (require 'viper-ex)
51 ;; Generic predicates
53 ;; These test functions are shamelessly lifted from vip 4.4.2 by Aamod Sane
55 ;; generate test functions
56 ;; given symbol foo, foo-p is the test function, foos is the set of
57 ;; Viper command keys
58 ;; (macroexpand '(viper-test-com-defun foo))
59 ;; (defun foo-p (com) (consp (memq (if (< com 0) (- com) com) foos)))
61 (defmacro viper-test-com-defun (name)
62 (let* ((snm (symbol-name name))
63 (nm-p (intern (concat snm "-p")))
64 (nms (intern (concat snm "s"))))
65 (` (defun (, nm-p) (com)
66 (consp (memq (if (and (viper-characterp com) (< com 0))
67 (- com) com) (, nms)))))))
69 ;; Variables for defining VI commands
71 ;; Modifying commands that can be prefixes to movement commands
72 (defconst viper-prefix-commands '(?c ?d ?y ?! ?= ?# ?< ?> ?\"))
73 ;; define viper-prefix-command-p
74 (viper-test-com-defun viper-prefix-command)
76 ;; Commands that are pairs eg. dd. r and R here are a hack
77 (defconst viper-charpair-commands '(?c ?d ?y ?! ?= ?< ?> ?r ?R))
78 ;; define viper-charpair-command-p
79 (viper-test-com-defun viper-charpair-command)
81 (defconst viper-movement-commands '(?b ?B ?e ?E ?f ?F ?G ?h ?H ?j ?k ?l
82 ?H ?M ?L ?n ?t ?T ?w ?W ?$ ?%
83 ?^ ?( ?) ?- ?+ ?| ?{ ?} ?[ ?] ?' ?`
84 ?; ?, ?0 ?? ?/ ?\C-m ?\
85 space return
86 delete backspace
88 "Movement commands")
89 ;; define viper-movement-command-p
90 (viper-test-com-defun viper-movement-command)
92 ;; Vi digit commands
93 (defconst viper-digit-commands '(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))
95 ;; define viper-digit-command-p
96 (viper-test-com-defun viper-digit-command)
98 ;; Commands that can be repeated by . (dotted)
99 (defconst viper-dotable-commands '(?c ?d ?C ?s ?S ?D ?> ?<))
100 ;; define viper-dotable-command-p
101 (viper-test-com-defun viper-dotable-command)
103 ;; Commands that can follow a #
104 (defconst viper-hash-commands '(?c ?C ?g ?q ?s))
105 ;; define viper-hash-command-p
106 (viper-test-com-defun viper-hash-command)
108 ;; Commands that may have registers as prefix
109 (defconst viper-regsuffix-commands '(?d ?y ?Y ?D ?p ?P ?x ?X))
110 ;; define viper-regsuffix-command-p
111 (viper-test-com-defun viper-regsuffix-command)
113 (defconst viper-vi-commands (append viper-movement-commands
114 viper-digit-commands
115 viper-dotable-commands
116 viper-charpair-commands
117 viper-hash-commands
118 viper-prefix-commands
119 viper-regsuffix-commands)
120 "The list of all commands in Vi-state.")
121 ;; define viper-vi-command-p
122 (viper-test-com-defun viper-vi-command)
125 ;;; CODE
127 ;; sentinels
129 ;; Runs viper-after-change-functions inside after-change-functions
130 (defun viper-after-change-sentinel (beg end len)
131 (let ((list viper-after-change-functions))
132 (while list
133 (funcall (car list) beg end len)
134 (setq list (cdr list)))))
136 ;; Runs viper-before-change-functions inside before-change-functions
137 (defun viper-before-change-sentinel (beg end)
138 (let ((list viper-before-change-functions))
139 (while list
140 (funcall (car list) beg end)
141 (setq list (cdr list)))))
143 (defsubst viper-post-command-sentinel ()
144 (run-hooks 'viper-post-command-hooks))
146 (defsubst viper-pre-command-sentinel ()
147 (run-hooks 'viper-pre-command-hooks))
149 ;; Needed so that Viper will be able to figure the last inserted
150 ;; chunk of text with reasonable accuracy.
151 (defsubst viper-insert-state-post-command-sentinel ()
152 (if (and (memq viper-current-state '(insert-state replace-state))
153 viper-insert-point
154 (>= (point) viper-insert-point))
155 (setq viper-last-posn-while-in-insert-state (point-marker)))
156 (if (eq viper-current-state 'insert-state)
157 (progn
158 (or (stringp viper-saved-cursor-color)
159 (string= (viper-get-cursor-color) viper-insert-state-cursor-color)
160 (setq viper-saved-cursor-color (viper-get-cursor-color)))
161 (if (stringp viper-saved-cursor-color)
162 (viper-change-cursor-color viper-insert-state-cursor-color))
164 (if (and (eq this-command 'dabbrev-expand)
165 (integerp viper-pre-command-point)
166 (> viper-insert-point viper-pre-command-point))
167 (move-marker viper-insert-point viper-pre-command-point))
170 (defsubst viper-insert-state-pre-command-sentinel ()
171 (or (memq this-command '(self-insert-command))
172 (memq (viper-event-key last-command-event)
173 '(up down left right (meta f) (meta b)
174 (control n) (control p) (control f) (control b)))
175 (viper-restore-cursor-color-after-insert))
176 (if (and (eq this-command 'dabbrev-expand)
177 (markerp viper-insert-point)
178 (marker-position viper-insert-point))
179 (setq viper-pre-command-point (marker-position viper-insert-point))))
181 (defsubst viper-R-state-post-command-sentinel ()
182 ;; Restoring cursor color is needed despite
183 ;; viper-replace-state-pre-command-sentinel: When you jump to another buffer
184 ;; in another frame, the pre-command hook won't change cursor color to
185 ;; default in that other frame. So, if the second frame cursor was red and
186 ;; we set the point outside the replacement region, then the cursor color
187 ;; will remain red. Restoring the default, below, prevents this.
188 (if (and (<= (viper-replace-start) (point))
189 (<= (point) (viper-replace-end)))
190 (viper-change-cursor-color viper-replace-overlay-cursor-color)
191 (viper-restore-cursor-color-after-replace)
194 ;; to speed up, don't change cursor color before self-insert
195 ;; and common move commands
196 (defsubst viper-replace-state-pre-command-sentinel ()
197 (or (memq this-command '(self-insert-command))
198 (memq (viper-event-key last-command-event)
199 '(up down left right (meta f) (meta b)
200 (control n) (control p) (control f) (control b)))
201 (viper-restore-cursor-color-after-replace)))
203 (defun viper-replace-state-post-command-sentinel ()
204 ;; Restoring cursor color is needed despite
205 ;; viper-replace-state-pre-command-sentinel: When one jumps to another buffer
206 ;; in another frame, the pre-command hook won't change cursor color to
207 ;; default in that other frame. So, if the second frame cursor was red and
208 ;; we set the point outside the replacement region, then the cursor color
209 ;; will remain red. Restoring the default, below, fixes this problem.
211 ;; We optimize for self-insert-command's here, since they either don't change
212 ;; cursor color or, if they terminate replace mode, the color will be changed
213 ;; in viper-finish-change
214 (or (memq this-command '(self-insert-command))
215 (viper-restore-cursor-color-after-replace))
216 (cond
217 ((eq viper-current-state 'replace-state)
218 ;; delete characters to compensate for inserted chars.
219 (let ((replace-boundary (viper-replace-end)))
220 (save-excursion
221 (goto-char viper-last-posn-in-replace-region)
222 (viper-trim-replace-chars-to-delete-if-necessary)
223 (delete-char viper-replace-chars-to-delete)
224 (setq viper-replace-chars-to-delete 0)
225 ;; terminate replace mode if reached replace limit
226 (if (= viper-last-posn-in-replace-region (viper-replace-end))
227 (viper-finish-change)))
229 (if (viper-pos-within-region
230 (point) (viper-replace-start) replace-boundary)
231 (progn
232 ;; the state may have changed in viper-finish-change above
233 (if (eq viper-current-state 'replace-state)
234 (viper-change-cursor-color viper-replace-overlay-cursor-color))
235 (setq viper-last-posn-in-replace-region (point-marker))))
237 ;; terminate replace mode if changed Viper states.
238 (t (viper-finish-change))))
241 ;; changing mode
243 ;; Change state to NEW-STATE---either emacs-state, vi-state, or insert-state.
244 (defun viper-change-state (new-state)
245 ;; Keep viper-post/pre-command-hooks fresh.
246 ;; We remove then add viper-post/pre-command-sentinel since it is very
247 ;; desirable that viper-pre-command-sentinel is the last hook and
248 ;; viper-post-command-sentinel is the first hook.
249 (remove-hook 'post-command-hook 'viper-post-command-sentinel)
250 (add-hook 'post-command-hook 'viper-post-command-sentinel)
251 (remove-hook 'pre-command-hook 'viper-pre-command-sentinel)
252 (add-hook 'pre-command-hook 'viper-pre-command-sentinel t)
253 ;; These hooks will be added back if switching to insert/replace mode
254 (viper-remove-hook 'viper-post-command-hooks
255 'viper-insert-state-post-command-sentinel)
256 (viper-remove-hook 'viper-pre-command-hooks
257 'viper-insert-state-pre-command-sentinel)
258 (setq viper-intermediate-command nil)
259 (cond ((eq new-state 'vi-state)
260 (cond ((member viper-current-state '(insert-state replace-state))
262 ;; move viper-last-posn-while-in-insert-state
263 ;; This is a normal hook that is executed in insert/replace
264 ;; states after each command. In Vi/Emacs state, it does
265 ;; nothing. We need to execute it here to make sure that
266 ;; the last posn was recorded when we hit ESC.
267 ;; It may be left unrecorded if the last thing done in
268 ;; insert/repl state was dabbrev-expansion or abbrev
269 ;; expansion caused by hitting ESC
270 (viper-insert-state-post-command-sentinel)
272 (condition-case conds
273 (progn
274 (viper-save-last-insertion
275 viper-insert-point
276 viper-last-posn-while-in-insert-state)
277 (if viper-began-as-replace
278 (setq viper-began-as-replace nil)
279 ;; repeat insert commands if numerical arg > 1
280 (save-excursion
281 (viper-repeat-insert-command))))
282 (error
283 (viper-message-conditions conds)))
285 (if (> (length viper-last-insertion) 0)
286 (viper-push-onto-ring viper-last-insertion
287 'viper-insertion-ring))
289 (if viper-ex-style-editing
290 (or (bolp) (backward-char 1))))
293 ;; insert or replace
294 ((memq new-state '(insert-state replace-state))
295 (if (memq viper-current-state '(emacs-state vi-state))
296 (viper-move-marker-locally 'viper-insert-point (point)))
297 (viper-move-marker-locally
298 'viper-last-posn-while-in-insert-state (point))
299 (viper-add-hook 'viper-post-command-hooks
300 'viper-insert-state-post-command-sentinel t)
301 (viper-add-hook 'viper-pre-command-hooks
302 'viper-insert-state-pre-command-sentinel t))
303 ) ; outermost cond
305 ;; Nothing needs to be done to switch to emacs mode! Just set some
306 ;; variables, which is already done in viper-change-state-to-emacs!
308 ;; ISO accents
309 ;; always turn off iso-accents-mode in vi-state, or else we won't be able to
310 ;; use the keys `,',^ , as they will do accents instead of Vi actions.
311 (cond ((eq new-state 'vi-state) (viper-set-iso-accents-mode nil));accents off
312 (viper-automatic-iso-accents (viper-set-iso-accents-mode t));accents on
313 (t (viper-set-iso-accents-mode nil)))
314 ;; Always turn off quail mode in vi state
315 (cond ((eq new-state 'vi-state) (viper-set-input-method nil)) ;intl input off
316 (viper-special-input-method (viper-set-input-method t)) ;intl input on
317 (t (viper-set-input-method nil)))
319 (setq viper-current-state new-state)
321 (viper-update-syntax-classes)
322 (viper-normalize-minor-mode-map-alist)
323 (viper-adjust-keys-for new-state)
324 (viper-set-mode-vars-for new-state)
325 (viper-refresh-mode-line)
330 (defun viper-adjust-keys-for (state)
331 "Make necessary adjustments to keymaps before entering STATE."
332 (cond ((memq state '(insert-state replace-state))
333 (if viper-auto-indent
334 (progn
335 (define-key viper-insert-basic-map "\C-m" 'viper-autoindent)
336 (if viper-want-emacs-keys-in-insert
337 ;; expert
338 (define-key viper-insert-basic-map "\C-j" nil)
339 ;; novice
340 (define-key viper-insert-basic-map "\C-j" 'viper-autoindent)))
341 (define-key viper-insert-basic-map "\C-m" nil)
342 (define-key viper-insert-basic-map "\C-j" nil))
344 (setq viper-insert-diehard-minor-mode
345 (not viper-want-emacs-keys-in-insert))
347 (if viper-want-ctl-h-help
348 (progn
349 (define-key viper-insert-basic-map [backspace] 'help-command)
350 (define-key viper-replace-map [backspace] 'help-command)
351 (define-key viper-insert-basic-map [(control h)] 'help-command)
352 (define-key viper-replace-map [(control h)] 'help-command))
353 (define-key viper-insert-basic-map
354 [backspace] 'viper-del-backward-char-in-insert)
355 (define-key viper-replace-map
356 [backspace] 'viper-del-backward-char-in-replace)
357 (define-key viper-insert-basic-map
358 [(control h)] 'viper-del-backward-char-in-insert)
359 (define-key viper-replace-map
360 [(control h)] 'viper-del-backward-char-in-replace)))
362 (t ; Vi state
363 (setq viper-vi-diehard-minor-mode (not viper-want-emacs-keys-in-vi))
364 (if viper-want-ctl-h-help
365 (progn
366 (define-key viper-vi-basic-map [backspace] 'help-command)
367 (define-key viper-vi-basic-map [(control h)] 'help-command))
368 (define-key viper-vi-basic-map [backspace] 'viper-backward-char)
369 (define-key viper-vi-basic-map [(control h)] 'viper-backward-char)))
373 ;; Normalizes minor-mode-map-alist by putting Viper keymaps first.
374 ;; This ensures that Viper bindings are in effect, regardless of which minor
375 ;; modes were turned on by the user or by other packages.
376 (defun viper-normalize-minor-mode-map-alist ()
377 (setq minor-mode-map-alist
378 (viper-append-filter-alist
379 (list
380 (cons 'viper-vi-intercept-minor-mode viper-vi-intercept-map)
381 (cons 'viper-vi-minibuffer-minor-mode viper-minibuffer-map)
382 (cons 'viper-vi-local-user-minor-mode viper-vi-local-user-map)
383 (cons 'viper-vi-kbd-minor-mode viper-vi-kbd-map)
384 (cons 'viper-vi-global-user-minor-mode viper-vi-global-user-map)
385 (cons 'viper-vi-state-modifier-minor-mode
386 (if (keymapp
387 (cdr (assoc major-mode
388 viper-vi-state-modifier-alist)))
389 (cdr (assoc major-mode viper-vi-state-modifier-alist))
390 viper-empty-keymap))
391 (cons 'viper-vi-diehard-minor-mode viper-vi-diehard-map)
392 (cons 'viper-vi-basic-minor-mode viper-vi-basic-map)
393 (cons 'viper-insert-intercept-minor-mode
394 viper-insert-intercept-map)
395 (cons 'viper-replace-minor-mode viper-replace-map)
396 ;; viper-insert-minibuffer-minor-mode must come after
397 ;; viper-replace-minor-mode
398 (cons 'viper-insert-minibuffer-minor-mode
399 viper-minibuffer-map)
400 (cons 'viper-insert-local-user-minor-mode
401 viper-insert-local-user-map)
402 (cons 'viper-insert-kbd-minor-mode viper-insert-kbd-map)
403 (cons 'viper-insert-global-user-minor-mode
404 viper-insert-global-user-map)
405 (cons 'viper-insert-state-modifier-minor-mode
406 (if (keymapp
407 (cdr (assoc major-mode
408 viper-insert-state-modifier-alist)))
409 (cdr (assoc major-mode
410 viper-insert-state-modifier-alist))
411 viper-empty-keymap))
412 (cons 'viper-insert-diehard-minor-mode viper-insert-diehard-map)
413 (cons 'viper-insert-basic-minor-mode viper-insert-basic-map)
414 (cons 'viper-emacs-intercept-minor-mode
415 viper-emacs-intercept-map)
416 (cons 'viper-emacs-local-user-minor-mode
417 viper-emacs-local-user-map)
418 (cons 'viper-emacs-kbd-minor-mode viper-emacs-kbd-map)
419 (cons 'viper-emacs-global-user-minor-mode
420 viper-emacs-global-user-map)
421 (cons 'viper-emacs-state-modifier-minor-mode
422 (if (keymapp
423 (cdr
424 (assoc major-mode viper-emacs-state-modifier-alist)))
425 (cdr
426 (assoc major-mode viper-emacs-state-modifier-alist))
427 viper-empty-keymap))
429 minor-mode-map-alist)))
435 ;; Viper mode-changing commands and utilities
437 ;; Modifies mode-line-buffer-identification.
438 (defun viper-refresh-mode-line ()
439 (setq viper-mode-string
440 (cond ((eq viper-current-state 'emacs-state) viper-emacs-state-id)
441 ((eq viper-current-state 'vi-state) viper-vi-state-id)
442 ((eq viper-current-state 'replace-state) viper-replace-state-id)
443 ((eq viper-current-state 'insert-state) viper-insert-state-id)))
445 ;; Sets Viper mode string in global-mode-string
446 (force-mode-line-update))
449 ;; Switch from Insert state to Vi state.
450 (defun viper-exit-insert-state ()
451 (interactive)
452 (viper-change-state-to-vi))
454 (defun viper-set-mode-vars-for (state)
455 "Sets Viper minor mode variables to put Viper's state STATE in effect."
457 ;; Emacs state
458 (setq viper-vi-minibuffer-minor-mode nil
459 viper-insert-minibuffer-minor-mode nil
460 viper-vi-intercept-minor-mode nil
461 viper-insert-intercept-minor-mode nil
463 viper-vi-local-user-minor-mode nil
464 viper-vi-kbd-minor-mode nil
465 viper-vi-global-user-minor-mode nil
466 viper-vi-state-modifier-minor-mode nil
467 viper-vi-diehard-minor-mode nil
468 viper-vi-basic-minor-mode nil
470 viper-replace-minor-mode nil
472 viper-insert-local-user-minor-mode nil
473 viper-insert-kbd-minor-mode nil
474 viper-insert-global-user-minor-mode nil
475 viper-insert-state-modifier-minor-mode nil
476 viper-insert-diehard-minor-mode nil
477 viper-insert-basic-minor-mode nil
478 viper-emacs-intercept-minor-mode t
479 viper-emacs-local-user-minor-mode t
480 viper-emacs-kbd-minor-mode (not (viper-is-in-minibuffer))
481 viper-emacs-global-user-minor-mode t
482 viper-emacs-state-modifier-minor-mode t
485 ;; Vi state
486 (if (eq state 'vi-state) ; adjust for vi-state
487 (setq
488 viper-vi-intercept-minor-mode t
489 viper-vi-minibuffer-minor-mode (viper-is-in-minibuffer)
490 viper-vi-local-user-minor-mode t
491 viper-vi-kbd-minor-mode (not (viper-is-in-minibuffer))
492 viper-vi-global-user-minor-mode t
493 viper-vi-state-modifier-minor-mode t
494 ;; don't let the diehard keymap block command completion
495 ;; and other things in the minibuffer
496 viper-vi-diehard-minor-mode (not
497 (or viper-want-emacs-keys-in-vi
498 (viper-is-in-minibuffer)))
499 viper-vi-basic-minor-mode t
500 viper-emacs-intercept-minor-mode nil
501 viper-emacs-local-user-minor-mode nil
502 viper-emacs-kbd-minor-mode nil
503 viper-emacs-global-user-minor-mode nil
504 viper-emacs-state-modifier-minor-mode nil
507 ;; Insert and Replace states
508 (if (member state '(insert-state replace-state))
509 (setq
510 viper-insert-intercept-minor-mode t
511 viper-replace-minor-mode (eq state 'replace-state)
512 viper-insert-minibuffer-minor-mode (viper-is-in-minibuffer)
513 viper-insert-local-user-minor-mode t
514 viper-insert-kbd-minor-mode (not (viper-is-in-minibuffer))
515 viper-insert-global-user-minor-mode t
516 viper-insert-state-modifier-minor-mode t
517 ;; don't let the diehard keymap block command completion
518 ;; and other things in the minibuffer
519 viper-insert-diehard-minor-mode (not
521 viper-want-emacs-keys-in-insert
522 (viper-is-in-minibuffer)))
523 viper-insert-basic-minor-mode t
524 viper-emacs-intercept-minor-mode nil
525 viper-emacs-local-user-minor-mode nil
526 viper-emacs-kbd-minor-mode nil
527 viper-emacs-global-user-minor-mode nil
528 viper-emacs-state-modifier-minor-mode nil
531 ;; minibuffer faces
532 (if (viper-has-face-support-p)
533 (setq viper-minibuffer-current-face
534 (cond ((eq state 'emacs-state) viper-minibuffer-emacs-face)
535 ((eq state 'vi-state) viper-minibuffer-vi-face)
536 ((memq state '(insert-state replace-state))
537 viper-minibuffer-insert-face))))
539 (if (viper-is-in-minibuffer)
540 (viper-set-minibuffer-overlay))
543 ;; This also takes care of the annoying incomplete lines in files.
544 ;; Also, this fixes `undo' to work vi-style for complex commands.
545 (defun viper-change-state-to-vi ()
546 "Change Viper state to Vi."
547 (interactive)
548 (if (and viper-first-time (not (viper-is-in-minibuffer)))
549 (viper-mode)
550 (if overwrite-mode (overwrite-mode nil))
551 (if abbrev-mode (expand-abbrev))
552 (if (and auto-fill-function (> (current-column) fill-column))
553 (funcall auto-fill-function))
554 ;; don't leave whitespace lines around
555 (if (and (memq last-command
556 '(viper-autoindent
557 viper-open-line viper-Open-line
558 viper-replace-state-exit-cmd))
559 (viper-over-whitespace-line))
560 (indent-to-left-margin))
561 (viper-add-newline-at-eob-if-necessary)
562 (viper-adjust-undo)
563 (viper-change-state 'vi-state)
565 (viper-restore-cursor-color-after-insert)
567 ;; Protect against user errors in hooks
568 (condition-case conds
569 (run-hooks 'viper-vi-state-hook)
570 (error
571 (viper-message-conditions conds)))))
573 (defun viper-change-state-to-insert ()
574 "Change Viper state to Insert."
575 (interactive)
576 (viper-change-state 'insert-state)
578 (or (stringp viper-saved-cursor-color)
579 (string= (viper-get-cursor-color) viper-insert-state-cursor-color)
580 (setq viper-saved-cursor-color (viper-get-cursor-color)))
581 ;; Commented out, because if viper-change-state-to-insert is executed
582 ;; non-interactively then the old cursor color may get lost. Same old Emacs
583 ;; bug related to local variables?
584 ;;;(if (stringp viper-saved-cursor-color)
585 ;;; (viper-change-cursor-color viper-insert-state-cursor-color))
587 ;; Protect against user errors in hooks
588 (condition-case conds
589 (run-hooks 'viper-insert-state-hook)
590 (error
591 (viper-message-conditions conds))))
593 (defsubst viper-downgrade-to-insert ()
594 (setq viper-current-state 'insert-state
595 viper-replace-minor-mode nil))
599 ;; Change to replace state. When the end of replacement region is reached,
600 ;; replace state changes to insert state.
601 (defun viper-change-state-to-replace (&optional non-R-cmd)
602 (viper-change-state 'replace-state)
603 ;; Run insert-state-hook
604 (condition-case conds
605 (run-hooks 'viper-insert-state-hook 'viper-replace-state-hook)
606 (error
607 (viper-message-conditions conds)))
609 (if non-R-cmd
610 (viper-start-replace)
611 ;; 'R' is implemented using Emacs's overwrite-mode
612 (viper-start-R-mode))
616 (defun viper-change-state-to-emacs ()
617 "Change Viper state to Emacs."
618 (interactive)
619 (viper-change-state 'emacs-state)
621 ;; Protect agains user errors in hooks
622 (condition-case conds
623 (run-hooks 'viper-emacs-state-hook)
624 (error
625 (viper-message-conditions conds))))
627 ;; escape to emacs mode termporarily
628 (defun viper-escape-to-emacs (arg &optional events)
629 "Escape to Emacs state from Vi state for one Emacs command.
630 ARG is used as the prefix value for the executed command. If
631 EVENTS is a list of events, which become the beginning of the command."
632 (interactive "P")
633 (if (= last-command-char ?\\)
634 (message "Switched to EMACS state for the next command..."))
635 (viper-escape-to-state arg events 'emacs-state))
637 ;; escape to Vi mode termporarily
638 (defun viper-escape-to-vi (arg)
639 "Escape from Emacs state to Vi state for one Vi 1-character command.
640 If the Vi command that the user types has a prefix argument, e.g., `d2w', then
641 Vi's prefix argument will be used. Otherwise, the prefix argument passed to
642 `viper-escape-to-vi' is used."
643 (interactive "P")
644 (message "Switched to VI state for the next command...")
645 (viper-escape-to-state arg nil 'vi-state))
647 ;; Escape to STATE mode for one Emacs command.
648 (defun viper-escape-to-state (arg events state)
649 ;;(let (com key prefix-arg)
650 (let (com key)
651 ;; this temporarily turns off Viper's minor mode keymaps
652 (viper-set-mode-vars-for state)
653 (viper-normalize-minor-mode-map-alist)
654 (if events (viper-set-unread-command-events events))
656 ;; protect against keyboard quit and other errors
657 (condition-case nil
658 (let (viper-vi-kbd-minor-mode
659 viper-insert-kbd-minor-mode
660 viper-emacs-kbd-minor-mode)
661 (unwind-protect
662 (progn
663 (setq com (key-binding (setq key
664 (if viper-xemacs-p
665 (read-key-sequence nil)
666 (read-key-sequence nil t)))))
667 ;; In case of binding indirection--chase definitions.
668 ;; Have to do it here because we execute this command under
669 ;; different keymaps, so command-execute may not do the
670 ;; right thing there
671 (while (vectorp com) (setq com (key-binding com))))
672 nil)
673 ;; Execute command com in the original Viper state, not in state
674 ;; `state'. Otherwise, if we switch buffers while executing the
675 ;; escaped to command, Viper's mode vars will remain those of
676 ;; `state'. When we return to the orig buffer, the bindings will be
677 ;; screwed up.
678 (viper-set-mode-vars-for viper-current-state)
680 ;; this-command, last-command-char, last-command-event
681 (setq this-command com)
682 (if viper-xemacs-p ; XEmacs represents key sequences as vectors
683 (setq last-command-event
684 (viper-copy-event (viper-seq-last-elt key))
685 last-command-char (event-to-character last-command-event))
686 ;; Emacs represents them as sequences (str or vec)
687 (setq last-command-event
688 (viper-copy-event (viper-seq-last-elt key))
689 last-command-char last-command-event))
691 (if (commandp com)
692 (progn
693 (setq prefix-arg (or prefix-arg arg))
694 (command-execute com)))
696 (quit (ding))
697 (error (beep 1))))
698 ;; set state in the new buffer
699 (viper-set-mode-vars-for viper-current-state))
701 (defun viper-exec-form-in-vi (form)
702 "Execute FORM in Vi state, regardless of the Ccurrent Vi state."
703 (let ((buff (current-buffer))
704 result)
705 (viper-set-mode-vars-for 'vi-state)
707 (condition-case nil
708 (let (viper-vi-kbd-minor-mode) ; execute without kbd macros
709 (setq result (eval form))
711 (error
712 (signal 'quit nil)))
714 (if (not (equal buff (current-buffer))) ; cmd switched buffer
715 (save-excursion
716 (set-buffer buff)
717 (viper-set-mode-vars-for viper-current-state)))
718 (viper-set-mode-vars-for viper-current-state)
719 result))
721 (defun viper-exec-form-in-emacs (form)
722 "Execute FORM in Emacs, temporarily disabling Viper's minor modes.
723 Similar to viper-escape-to-emacs, but accepts forms rather than keystrokes."
724 (let ((buff (current-buffer))
725 result)
726 (viper-set-mode-vars-for 'emacs-state)
727 (setq result (eval form))
728 (if (not (equal buff (current-buffer))) ; cmd switched buffer
729 (save-excursion
730 (set-buffer buff)
731 (viper-set-mode-vars-for viper-current-state)))
732 (viper-set-mode-vars-for viper-current-state)
733 result))
736 ;; This is needed because minor modes sometimes override essential Viper
737 ;; bindings. By letting Viper know which files these modes are in, it will
738 ;; arrange to reorganize minor-mode-map-alist so that things will work right.
739 (defun viper-harness-minor-mode (load-file)
740 "Familiarize Viper with a minor mode defined in LOAD_FILE.
741 Minor modes that have their own keymaps may overshadow Viper keymaps.
742 This function is designed to make Viper aware of the packages that define
743 such minor modes.
744 Usage:
745 (viper-harness-minor-mode load-file)
747 LOAD-FILE is a name of the file where the specific minor mode is defined.
748 Suffixes such as .el or .elc should be stripped."
750 (interactive "sEnter name of the load file: ")
752 (eval-after-load load-file '(viper-normalize-minor-mode-map-alist))
754 ;; Change the default for minor-mode-map-alist each time a harnessed minor
755 ;; mode adds its own keymap to the a-list.
756 (eval-after-load
757 load-file '(setq-default minor-mode-map-alist minor-mode-map-alist))
761 (defun viper-ESC (arg)
762 "Emulate ESC key in Emacs.
763 Prevents multiple escape keystrokes if viper-no-multiple-ESC is true.
764 If viper-no-multiple-ESC is 'twice double ESC would ding in vi-state.
765 Other ESC sequences are emulated via the current Emacs's major mode
766 keymap. This is more convenient on TTYs, since this won't block
767 function keys such as up,down, etc. ESC will also will also work as
768 a Meta key in this case. When viper-no-multiple-ESC is nil, ESC functions
769 as a Meta key and any number of multiple escapes is allowed."
770 (interactive "P")
771 (let (char)
772 (cond ((and (not viper-no-multiple-ESC) (eq viper-current-state 'vi-state))
773 (setq char (viper-read-char-exclusive))
774 (viper-escape-to-emacs arg (list ?\e char) ))
775 ((and (eq viper-no-multiple-ESC 'twice)
776 (eq viper-current-state 'vi-state))
777 (setq char (viper-read-char-exclusive))
778 (if (= char (string-to-char viper-ESC-key))
779 (ding)
780 (viper-escape-to-emacs arg (list ?\e char) )))
781 (t (ding)))
784 (defun viper-alternate-Meta-key (arg)
785 "Simulate Emacs Meta key."
786 (interactive "P")
787 (sit-for 1) (message "ESC-")
788 (viper-escape-to-emacs arg '(?\e)))
790 (defun viper-toggle-key-action ()
791 "Action bound to `viper-toggle-key'."
792 (interactive)
793 (if (and (< viper-expert-level 2) (equal viper-toggle-key "\C-z"))
794 (if (viper-window-display-p)
795 (viper-iconify)
796 (suspend-emacs))
797 (viper-change-state-to-emacs)))
800 ;; Intercept ESC sequences on dumb terminals.
801 ;; Based on the idea contributed by Marcelino Veiga Tuimil <mveiga@dit.upm.es>
803 ;; Check if last key was ESC and if so try to reread it as a function key.
804 ;; But only if there are characters to read during a very short time.
805 ;; Returns the last event, if any.
806 (defun viper-envelop-ESC-key ()
807 (let ((event last-input-event)
808 (keyseq [nil])
809 inhibit-quit)
810 (if (viper-ESC-event-p event)
811 (progn
812 (if (viper-fast-keysequence-p)
813 (progn
814 (let (minor-mode-map-alist)
815 (viper-set-unread-command-events event)
816 (setq keyseq
817 (funcall
818 (ad-get-orig-definition 'read-key-sequence) nil))
819 ) ; let
820 ;; If keyseq translates into something that still has ESC
821 ;; at the beginning, separate ESC from the rest of the seq.
822 ;; In XEmacs we check for events that are keypress meta-key
823 ;; and convert them into [escape key]
825 ;; This is needed for the following reason:
826 ;; If ESC is the first symbol, we interpret it as if the
827 ;; user typed ESC and then quickly some other symbols.
828 ;; If ESC is not the first one, then the key sequence
829 ;; entered was apparently translated into a function key or
830 ;; something (e.g., one may have
831 ;; (define-key function-key-map "\e[192z" [f11])
832 ;; which would translate the escape-sequence generated by
833 ;; f11 in an xterm window into the symbolic key f11.
835 ;; If `first-key' is not an ESC event, we make it into the
836 ;; last-command-event in order to pretend that this key was
837 ;; pressed. This is needed to allow arrow keys to be bound to
838 ;; macros. Otherwise, viper-exec-mapped-kbd-macro will think
839 ;; that the last event was ESC and so it'll execute whatever is
840 ;; bound to ESC. (Viper macros can't be bound to
841 ;; ESC-sequences).
842 (let* ((first-key (elt keyseq 0))
843 (key-mod (event-modifiers first-key)))
844 (cond ((viper-ESC-event-p first-key)
845 ;; put keys following ESC on the unread list
846 ;; and return ESC as the key-sequence
847 (viper-set-unread-command-events (subseq keyseq 1))
848 (setq last-input-event event
849 keyseq (if viper-emacs-p
850 "\e"
851 (vector (character-to-event ?\e)))))
852 ((and viper-xemacs-p
853 (key-press-event-p first-key)
854 (equal '(meta) key-mod))
855 (viper-set-unread-command-events
856 (vconcat (vector
857 (character-to-event (event-key first-key)))
858 (subseq keyseq 1)))
859 (setq last-input-event event
860 keyseq (vector (character-to-event ?\e))))
861 ((eventp first-key)
862 (setq last-command-event
863 (viper-copy-event first-key)))
865 ) ; end progn
867 ;; this is escape event with nothing after it
868 ;; put in unread-command-event and then re-read
869 (viper-set-unread-command-events event)
870 (setq keyseq
871 (funcall (ad-get-orig-definition 'read-key-sequence) nil))
873 ;; not an escape event
874 (setq keyseq (vector event)))
875 keyseq))
879 ;; Listen to ESC key.
880 ;; If a sequence of keys starting with ESC is issued with very short delays,
881 ;; interpret these keys in Emacs mode, so ESC won't be interpreted as a Vi key.
882 (defun viper-intercept-ESC-key ()
883 "Function that implements ESC key in Viper emulation of Vi."
884 (interactive)
885 (let ((cmd (or (key-binding (viper-envelop-ESC-key))
886 '(lambda () (interactive) (error "")))))
888 ;; call the actual function to execute ESC (if no other symbols followed)
889 ;; or the key bound to the ESC sequence (if the sequence was issued
890 ;; with very short delay between characters.
891 (if (eq cmd 'viper-intercept-ESC-key)
892 (setq cmd
893 (cond ((eq viper-current-state 'vi-state)
894 'viper-ESC)
895 ((eq viper-current-state 'insert-state)
896 'viper-exit-insert-state)
897 ((eq viper-current-state 'replace-state)
898 'viper-replace-state-exit-cmd)
899 (t 'viper-change-state-to-vi)
901 (call-interactively cmd)))
906 ;; prefix argument for Vi mode
908 ;; In Vi mode, prefix argument is a dotted pair (NUM . COM) where NUM
909 ;; represents the numeric value of the prefix argument and COM represents
910 ;; command prefix such as "c", "d", "m" and "y".
912 ;; Get value part of prefix-argument ARG.
913 (defsubst viper-p-val (arg)
914 (cond ((null arg) 1)
915 ((consp arg)
916 (if (or (null (car arg)) (equal (car arg) '(nil)))
917 1 (car arg)))
918 (t arg)))
920 ;; Get raw value part of prefix-argument ARG.
921 (defsubst viper-P-val (arg)
922 (cond ((consp arg) (car arg))
923 (t arg)))
925 ;; Get com part of prefix-argument ARG.
926 (defsubst viper-getcom (arg)
927 (cond ((null arg) nil)
928 ((consp arg) (cdr arg))
929 (t nil)))
931 ;; Get com part of prefix-argument ARG and modify it.
932 (defun viper-getCom (arg)
933 (let ((com (viper-getcom arg)))
934 (cond ((equal com ?c) ?c)
935 ;; Previously, ?c was being converted to ?C, but this prevented
936 ;; multiline replace regions.
937 ;;((equal com ?c) ?C)
938 ((equal com ?d) ?D)
939 ((equal com ?y) ?Y)
940 (t com))))
943 ;; Compute numeric prefix arg value.
944 ;; Invoked by EVENT. COM is the command part obtained so far.
945 (defun viper-prefix-arg-value (event com)
946 (let ((viper-intermediate-command 'viper-digit-argument)
947 value func)
948 ;; read while number
949 (while (and (viper-characterp event) (>= event ?0) (<= event ?9))
950 (setq value (+ (* (if (integerp value) value 0) 10) (- event ?0)))
951 (setq event (viper-read-event-convert-to-char)))
953 (setq prefix-arg value)
954 (if com (setq prefix-arg (cons prefix-arg com)))
955 (while (eq event ?U)
956 (viper-describe-arg prefix-arg)
957 (setq event (viper-read-event-convert-to-char)))
959 (if (or com (and (not (eq viper-current-state 'vi-state))
960 ;; make sure it is a Vi command
961 (viper-characterp event) (viper-vi-command-p event)
963 ;; If appears to be one of the vi commands,
964 ;; then execute it with funcall and clear prefix-arg in order to not
965 ;; confuse subsequent commands
966 (progn
967 ;; last-command-char is the char we want emacs to think was typed
968 ;; last. If com is not nil, the viper-digit-argument command was
969 ;; called from within viper-prefix-arg command, such as `d', `w',
970 ;; etc., i.e., the user typed, say, d2. In this case, `com' would be
971 ;; `d', `w', etc. If viper-digit-argument was invoked by
972 ;; viper-escape-to-vi (which is indicated by the fact that the
973 ;; current state is not vi-state), then `event' represents the vi
974 ;; command to be executed (e.g., `d', `w', etc). Again,
975 ;; last-command-char must make emacs believe that this is the command
976 ;; we typed.
977 (cond ((eq event 'return) (setq event ?\C-m))
978 ((eq event 'delete) (setq event ?\C-?))
979 ((eq event 'backspace) (setq event ?\C-h))
980 ((eq event 'space) (setq event ?\ )))
981 (setq last-command-char (or com event))
982 (setq func (viper-exec-form-in-vi
983 (` (key-binding (char-to-string (, event))))))
984 (funcall func prefix-arg)
985 (setq prefix-arg nil))
986 ;; some other command -- let emacs do it in its own way
987 (viper-set-unread-command-events event))
991 ;; Vi operator as prefix argument."
992 (defun viper-prefix-arg-com (char value com)
993 (let ((cont t)
994 cmd-info
995 cmd-to-exec-at-end)
996 (while (and cont
997 (memq char
998 (list ?c ?d ?y ?! ?< ?> ?= ?# ?r ?R ?\"
999 viper-buffer-search-char)))
1000 (if com
1001 ;; this means that we already have a command character, so we
1002 ;; construct a com list and exit while. however, if char is "
1003 ;; it is an error.
1004 (progn
1005 ;; new com is (CHAR . OLDCOM)
1006 (if (memq char '(?# ?\")) (error ""))
1007 (setq com (cons char com))
1008 (setq cont nil))
1009 ;; If com is nil we set com as char, and read more. Again, if char is
1010 ;; ", we read the name of register and store it in viper-use-register.
1011 ;; if char is !, =, or #, a complete com is formed so we exit the while
1012 ;; loop.
1013 (cond ((memq char '(?! ?=))
1014 (setq com char)
1015 (setq char (read-char))
1016 (setq cont nil))
1017 ((= char ?#)
1018 ;; read a char and encode it as com
1019 (setq com (+ 128 (read-char)))
1020 (setq char (read-char)))
1021 ((= char ?\")
1022 (let ((reg (read-char)))
1023 (if (viper-valid-register reg)
1024 (setq viper-use-register reg)
1025 (error ""))
1026 (setq char (read-char))))
1028 (setq com char)
1029 (setq char (read-char))))))
1031 (if (atom com)
1032 ;; `com' is a single char, so we construct the command argument
1033 ;; and if `char' is `?', we describe the arg; otherwise
1034 ;; we prepare the command that will be executed at the end.
1035 (progn
1036 (setq cmd-info (cons value com))
1037 (while (= char ?U)
1038 (viper-describe-arg cmd-info)
1039 (setq char (read-char)))
1040 ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so we
1041 ;; execute it at the very end
1042 (or (viper-movement-command-p char)
1043 (viper-digit-command-p char)
1044 (viper-regsuffix-command-p char)
1045 (= char ?!) ; bang command
1046 (error ""))
1047 (setq cmd-to-exec-at-end
1048 (viper-exec-form-in-vi
1049 (` (key-binding (char-to-string (, char)))))))
1051 ;; as com is non-nil, this means that we have a command to execute
1052 (if (memq (car com) '(?r ?R))
1053 ;; execute apropriate region command.
1054 (let ((char (car com)) (com (cdr com)))
1055 (setq prefix-arg (cons value com))
1056 (if (= char ?r) (viper-region prefix-arg)
1057 (viper-Region prefix-arg))
1058 ;; reset prefix-arg
1059 (setq prefix-arg nil))
1060 ;; otherwise, reset prefix arg and call appropriate command
1061 (setq value (if (null value) 1 value))
1062 (setq prefix-arg nil)
1063 (cond
1064 ;; If we change ?C to ?c here, then cc will enter replacement mode
1065 ;; rather than deleting lines. However, it will affect 1 less line than
1066 ;; normal. We decided to not use replacement mode here and follow Vi,
1067 ;; since replacement mode on n full lines can be achieved with nC.
1068 ((equal com '(?c . ?c)) (viper-line (cons value ?C)))
1069 ((equal com '(?d . ?d)) (viper-line (cons value ?D)))
1070 ((equal com '(?d . ?y)) (viper-yank-defun))
1071 ((equal com '(?y . ?y)) (viper-line (cons value ?Y)))
1072 ((equal com '(?< . ?<)) (viper-line (cons value ?<)))
1073 ((equal com '(?> . ?>)) (viper-line (cons value ?>)))
1074 ((equal com '(?! . ?!)) (viper-line (cons value ?!)))
1075 ((equal com '(?= . ?=)) (viper-line (cons value ?=)))
1076 (t (error "")))))
1078 (if cmd-to-exec-at-end
1079 (progn
1080 (setq last-command-char char)
1081 (setq last-command-event
1082 (viper-copy-event
1083 (if viper-xemacs-p (character-to-event char) char)))
1084 (condition-case nil
1085 (funcall cmd-to-exec-at-end cmd-info)
1086 (error
1087 (error "")))))
1090 (defun viper-describe-arg (arg)
1091 (let (val com)
1092 (setq val (viper-P-val arg)
1093 com (viper-getcom arg))
1094 (if (null val)
1095 (if (null com)
1096 (message "Value is nil, and command is nil")
1097 (message "Value is nil, and command is `%c'" com))
1098 (if (null com)
1099 (message "Value is `%d', and command is nil" val)
1100 (message "Value is `%d', and command is `%c'" val com)))))
1102 (defun viper-digit-argument (arg)
1103 "Begin numeric argument for the next command."
1104 (interactive "P")
1105 (viper-leave-region-active)
1106 (viper-prefix-arg-value
1107 last-command-char (if (consp arg) (cdr arg) nil)))
1109 (defun viper-command-argument (arg)
1110 "Accept a motion command as an argument."
1111 (interactive "P")
1112 (let ((viper-intermediate-command 'viper-command-argument))
1113 (condition-case nil
1114 (viper-prefix-arg-com
1115 last-command-char
1116 (cond ((null arg) nil)
1117 ((consp arg) (car arg))
1118 ((integerp arg) arg)
1119 (t (error viper-InvalidCommandArgument)))
1120 (cond ((null arg) nil)
1121 ((consp arg) (cdr arg))
1122 ((integerp arg) nil)
1123 (t (error viper-InvalidCommandArgument))))
1124 (quit (setq viper-use-register nil)
1125 (signal 'quit nil)))
1126 (viper-deactivate-mark)))
1129 ;; repeat last destructive command
1131 ;; Append region to text in register REG.
1132 ;; START and END are buffer positions indicating what to append.
1133 (defsubst viper-append-to-register (reg start end)
1134 (set-register reg (concat (if (stringp (get-register reg))
1135 (get-register reg) "")
1136 (buffer-substring start end))))
1138 ;; Saves last inserted text for possible use by viper-repeat command.
1139 (defun viper-save-last-insertion (beg end)
1140 (setq viper-last-insertion (buffer-substring beg end))
1141 (or (< (length viper-d-com) 5)
1142 (setcar (nthcdr 4 viper-d-com) viper-last-insertion))
1143 (or (null viper-command-ring)
1144 (ring-empty-p viper-command-ring)
1145 (progn
1146 (setcar (nthcdr 4 (viper-current-ring-item viper-command-ring))
1147 viper-last-insertion)
1148 ;; del most recent elt, if identical to the second most-recent
1149 (viper-cleanup-ring viper-command-ring)))
1152 (defsubst viper-yank-last-insertion ()
1153 "Inserts the text saved by the previous viper-save-last-insertion command."
1154 (condition-case nil
1155 (insert viper-last-insertion)
1156 (error nil)))
1159 ;; define functions to be executed
1161 ;; invoked by the `C' command
1162 (defun viper-exec-change (m-com com)
1163 (or (and (markerp viper-com-point) (marker-position viper-com-point))
1164 (set-marker viper-com-point (point) (current-buffer)))
1165 ;; handle C cmd at the eol and at eob.
1166 (if (or (and (eolp) (= viper-com-point (point)))
1167 (= viper-com-point (point-max)))
1168 (progn
1169 (insert " ")(backward-char 1)))
1170 (if (= viper-com-point (point))
1171 (viper-forward-char-carefully))
1172 (set-mark viper-com-point)
1173 (if (eq m-com 'viper-next-line-at-bol)
1174 (viper-enlarge-region (mark t) (point)))
1175 (if (< (point) (mark t))
1176 (exchange-point-and-mark))
1177 (if (eq (preceding-char) ?\n)
1178 (viper-backward-char-carefully)) ; give back the newline
1179 (if (= com ?c)
1180 (viper-change (mark t) (point))
1181 (viper-change-subr (mark t) (point))))
1183 ;; this is invoked by viper-substitute-line
1184 (defun viper-exec-Change (m-com com)
1185 (save-excursion
1186 (set-mark viper-com-point)
1187 (viper-enlarge-region (mark t) (point))
1188 (if viper-use-register
1189 (progn
1190 (cond ((viper-valid-register viper-use-register '(letter digit))
1191 (copy-to-register
1192 viper-use-register (mark t) (point) nil))
1193 ((viper-valid-register viper-use-register '(Letter))
1194 (viper-append-to-register
1195 (downcase viper-use-register) (mark t) (point)))
1196 (t (setq viper-use-register nil)
1197 (error viper-InvalidRegister viper-use-register)))
1198 (setq viper-use-register nil)))
1199 (delete-region (mark t) (point)))
1200 (open-line 1)
1201 (if (= com ?C)
1202 (viper-change-state-to-insert)
1203 (viper-yank-last-insertion)))
1205 (defun viper-exec-delete (m-com com)
1206 (or (and (markerp viper-com-point) (marker-position viper-com-point))
1207 (set-marker viper-com-point (point) (current-buffer)))
1208 (if viper-use-register
1209 (progn
1210 (cond ((viper-valid-register viper-use-register '(letter digit))
1211 (copy-to-register
1212 viper-use-register viper-com-point (point) nil))
1213 ((viper-valid-register viper-use-register '(Letter))
1214 (viper-append-to-register
1215 (downcase viper-use-register) viper-com-point (point)))
1216 (t (setq viper-use-register nil)
1217 (error viper-InvalidRegister viper-use-register)))
1218 (setq viper-use-register nil)))
1219 (setq last-command
1220 (if (eq last-command 'd-command) 'kill-region nil))
1221 (kill-region viper-com-point (point))
1222 (setq this-command 'd-command)
1223 (if viper-ex-style-motion
1224 (if (and (eolp) (not (bolp))) (backward-char 1))))
1226 (defun viper-exec-Delete (m-com com)
1227 (save-excursion
1228 (set-mark viper-com-point)
1229 (viper-enlarge-region (mark t) (point))
1230 (if viper-use-register
1231 (progn
1232 (cond ((viper-valid-register viper-use-register '(letter digit))
1233 (copy-to-register
1234 viper-use-register (mark t) (point) nil))
1235 ((viper-valid-register viper-use-register '(Letter))
1236 (viper-append-to-register
1237 (downcase viper-use-register) (mark t) (point)))
1238 (t (setq viper-use-register nil)
1239 (error viper-InvalidRegister viper-use-register)))
1240 (setq viper-use-register nil)))
1241 (setq last-command
1242 (if (eq last-command 'D-command) 'kill-region nil))
1243 (kill-region (mark t) (point))
1244 (if (eq m-com 'viper-line) (setq this-command 'D-command)))
1245 (back-to-indentation))
1247 (defun viper-exec-yank (m-com com)
1248 (or (and (markerp viper-com-point) (marker-position viper-com-point))
1249 (set-marker viper-com-point (point) (current-buffer)))
1250 (if viper-use-register
1251 (progn
1252 (cond ((viper-valid-register viper-use-register '(letter digit))
1253 (copy-to-register
1254 viper-use-register viper-com-point (point) nil))
1255 ((viper-valid-register viper-use-register '(Letter))
1256 (viper-append-to-register
1257 (downcase viper-use-register) viper-com-point (point)))
1258 (t (setq viper-use-register nil)
1259 (error viper-InvalidRegister viper-use-register)))
1260 (setq viper-use-register nil)))
1261 (setq last-command nil)
1262 (copy-region-as-kill viper-com-point (point))
1263 (goto-char viper-com-point))
1265 (defun viper-exec-Yank (m-com com)
1266 (save-excursion
1267 (set-mark viper-com-point)
1268 (viper-enlarge-region (mark t) (point))
1269 (if viper-use-register
1270 (progn
1271 (cond ((viper-valid-register viper-use-register '(letter digit))
1272 (copy-to-register
1273 viper-use-register (mark t) (point) nil))
1274 ((viper-valid-register viper-use-register '(Letter))
1275 (viper-append-to-register
1276 (downcase viper-use-register) (mark t) (point)))
1277 (t (setq viper-use-register nil)
1278 (error viper-InvalidRegister viper-use-register)))
1279 (setq viper-use-register nil)))
1280 (setq last-command nil)
1281 (copy-region-as-kill (mark t) (point)))
1282 (viper-deactivate-mark)
1283 (goto-char viper-com-point))
1285 (defun viper-exec-bang (m-com com)
1286 (save-excursion
1287 (set-mark viper-com-point)
1288 (viper-enlarge-region (mark t) (point))
1289 (exchange-point-and-mark)
1290 (shell-command-on-region
1291 (mark t) (point)
1292 (if (= com ?!)
1293 (setq viper-last-shell-com
1294 (viper-read-string-with-history
1297 'viper-shell-history
1298 (car viper-shell-history)
1300 viper-last-shell-com)
1301 t)))
1303 (defun viper-exec-equals (m-com com)
1304 (save-excursion
1305 (set-mark viper-com-point)
1306 (viper-enlarge-region (mark t) (point))
1307 (if (> (mark t) (point)) (exchange-point-and-mark))
1308 (indent-region (mark t) (point) nil)))
1310 (defun viper-exec-shift (m-com com)
1311 (save-excursion
1312 (set-mark viper-com-point)
1313 (viper-enlarge-region (mark t) (point))
1314 (if (> (mark t) (point)) (exchange-point-and-mark))
1315 (indent-rigidly (mark t) (point)
1316 (if (= com ?>)
1317 viper-shift-width
1318 (- viper-shift-width))))
1319 ;; return point to where it was before shift
1320 (goto-char viper-com-point))
1322 ;; this is needed because some commands fake com by setting it to ?r, which
1323 ;; denotes repeated insert command.
1324 (defsubst viper-exec-dummy (m-com com)
1325 nil)
1327 (defun viper-exec-buffer-search (m-com com)
1328 (setq viper-s-string (buffer-substring (point) viper-com-point))
1329 (setq viper-s-forward t)
1330 (setq viper-search-history (cons viper-s-string viper-search-history))
1331 (viper-search viper-s-string viper-s-forward 1))
1333 (defvar viper-exec-array (make-vector 128 nil))
1335 ;; Using a dispatch array allows adding functions like buffer search
1336 ;; without affecting other functions. Buffer search can now be bound
1337 ;; to any character.
1339 (aset viper-exec-array ?c 'viper-exec-change)
1340 (aset viper-exec-array ?C 'viper-exec-Change)
1341 (aset viper-exec-array ?d 'viper-exec-delete)
1342 (aset viper-exec-array ?D 'viper-exec-Delete)
1343 (aset viper-exec-array ?y 'viper-exec-yank)
1344 (aset viper-exec-array ?Y 'viper-exec-Yank)
1345 (aset viper-exec-array ?r 'viper-exec-dummy)
1346 (aset viper-exec-array ?! 'viper-exec-bang)
1347 (aset viper-exec-array ?< 'viper-exec-shift)
1348 (aset viper-exec-array ?> 'viper-exec-shift)
1349 (aset viper-exec-array ?= 'viper-exec-equals)
1353 ;; This function is called by various movement commands to execute a
1354 ;; destructive command on the region specified by the movement command. For
1355 ;; instance, if the user types cw, then the command viper-forward-word will
1356 ;; call viper-execute-com to execute viper-exec-change, which eventually will
1357 ;; call viper-change to invoke the replace mode on the region.
1359 ;; The var viper-d-com is set to (M-COM VAL COM REG INSETED-TEXT COMMAND-KEYS)
1360 ;; via a call to viper-set-destructive-command, for later use by viper-repeat.
1361 (defun viper-execute-com (m-com val com)
1362 (let ((reg viper-use-register))
1363 ;; this is the special command `#'
1364 (if (> com 128)
1365 (viper-special-prefix-com (- com 128))
1366 (let ((fn (aref viper-exec-array (if (< com 0) (- com) com))))
1367 (if (null fn)
1368 (error "%c: %s" com viper-InvalidViCommand)
1369 (funcall fn m-com com))))
1370 (if (viper-dotable-command-p com)
1371 (viper-set-destructive-command
1372 (list m-com val
1373 (if (memq com (list ?c ?C ?!)) (- com) com)
1374 reg nil nil)))
1378 (defun viper-repeat (arg)
1379 "Re-execute last destructive command.
1380 Use the info in viper-d-com, which has the form
1381 \(com val ch reg inserted-text command-keys\),
1382 where `com' is the command to be re-executed, `val' is the
1383 argument to `com', `ch' is a flag for repeat, and `reg' is optional;
1384 if it exists, it is the name of the register for `com'.
1385 If the prefix argument, ARG, is non-nil, it is used instead of `val'."
1386 (interactive "P")
1387 (let ((save-point (point)) ; save point before repeating prev cmd
1388 ;; Pass along that we are repeating a destructive command
1389 ;; This tells viper-set-destructive-command not to update
1390 ;; viper-command-ring
1391 (viper-intermediate-command 'viper-repeat))
1392 (if (eq last-command 'viper-undo)
1393 ;; if the last command was viper-undo, then undo-more
1394 (viper-undo-more)
1395 ;; otherwise execute the command stored in viper-d-com. if arg is
1396 ;; non-nil its prefix value is used as new prefix value for the command.
1397 (let ((m-com (car viper-d-com))
1398 (val (viper-P-val arg))
1399 (com (nth 2 viper-d-com))
1400 (reg (nth 3 viper-d-com)))
1401 (if (null val) (setq val (nth 1 viper-d-com)))
1402 (if (null m-com) (error "No previous command to repeat."))
1403 (setq viper-use-register reg)
1404 (if (nth 4 viper-d-com) ; text inserted by command
1405 (setq viper-last-insertion (nth 4 viper-d-com)
1406 viper-d-char (nth 4 viper-d-com)))
1407 (funcall m-com (cons val com))
1408 (cond ((and (< save-point (point)) viper-keep-point-on-repeat)
1409 (goto-char save-point)) ; go back to before repeat.
1410 ((and (< save-point (point)) viper-ex-style-editing)
1411 (or (bolp) (backward-char 1))))
1412 (if (and (eolp) (not (bolp)))
1413 (backward-char 1))
1415 (viper-adjust-undo) ; take care of undo
1416 ;; If the prev cmd was rotating the command ring, this means that `.' has
1417 ;; just executed a command from that ring. So, push it on the ring again.
1418 ;; If we are just executing previous command , then don't push viper-d-com
1419 ;; because viper-d-com is not fully constructed in this case (its keys and
1420 ;; the inserted text may be nil). Besides, in this case, the command
1421 ;; executed by `.' is already on the ring.
1422 (if (eq last-command 'viper-display-current-destructive-command)
1423 (viper-push-onto-ring viper-d-com 'viper-command-ring))
1424 (viper-deactivate-mark)
1427 (defun viper-repeat-from-history ()
1428 "Repeat a destructive command from history.
1429 Doesn't change viper-command-ring in any way, so `.' will work as before
1430 executing this command.
1431 This command is supposed to be bound to a two-character Vi macro where
1432 the second character is a digit 0 to 9. The digit indicates which
1433 history command to execute. `<char>0' is equivalent to `.', `<char>1'
1434 invokes the command before that, etc."
1435 (interactive)
1436 (let* ((viper-intermediate-command 'repeating-display-destructive-command)
1437 (idx (cond (viper-this-kbd-macro
1438 (string-to-number
1439 (symbol-name (elt viper-this-kbd-macro 1))))
1440 (t 0)))
1441 (num idx)
1442 (viper-d-com viper-d-com))
1444 (or (and (numberp num) (<= 0 num) (<= num 9))
1445 (progn
1446 (setq idx 0
1447 num 0)
1448 (message
1449 "`viper-repeat-from-history' must be invoked as a Vi macro bound to `<key><digit>'")))
1450 (while (< 0 num)
1451 (setq viper-d-com (viper-special-ring-rotate1 viper-command-ring -1))
1452 (setq num (1- num)))
1453 (viper-repeat nil)
1454 (while (> idx num)
1455 (viper-special-ring-rotate1 viper-command-ring 1)
1456 (setq num (1+ num)))
1460 ;; The hash-command. It is invoked interactively by the key sequence #<char>.
1461 ;; The chars that can follow `#' are determined by viper-hash-command-p
1462 (defun viper-special-prefix-com (char)
1463 (cond ((= char ?c)
1464 (downcase-region (min viper-com-point (point))
1465 (max viper-com-point (point))))
1466 ((= char ?C)
1467 (upcase-region (min viper-com-point (point))
1468 (max viper-com-point (point))))
1469 ((= char ?g)
1470 (push-mark viper-com-point t)
1471 (viper-global-execute))
1472 ((= char ?q)
1473 (push-mark viper-com-point t)
1474 (viper-quote-region))
1475 ((= char ?s) (funcall viper-spell-function viper-com-point (point)))
1476 (t (error "#%c: %s" char viper-InvalidViCommand))))
1479 ;; undoing
1481 (defun viper-undo ()
1482 "Undo previous change."
1483 (interactive)
1484 (message "undo!")
1485 (let ((modified (buffer-modified-p))
1486 (before-undo-pt (point-marker))
1487 (after-change-functions after-change-functions)
1488 undo-beg-posn undo-end-posn)
1490 ;; no need to remove this hook, since this var has scope inside a let.
1491 (add-hook 'after-change-functions
1492 '(lambda (beg end len)
1493 (setq undo-beg-posn beg
1494 undo-end-posn (or end beg))))
1496 (undo-start)
1497 (undo-more 2)
1498 (setq undo-beg-posn (or undo-beg-posn before-undo-pt)
1499 undo-end-posn (or undo-end-posn undo-beg-posn))
1501 (goto-char undo-beg-posn)
1502 (sit-for 0)
1503 (if (and viper-keep-point-on-undo
1504 (pos-visible-in-window-p before-undo-pt))
1505 (progn
1506 (push-mark (point-marker) t)
1507 (viper-sit-for-short 300)
1508 (goto-char undo-end-posn)
1509 (viper-sit-for-short 300)
1510 (if (and (> (viper-chars-in-region undo-beg-posn before-undo-pt) 1)
1511 (> (viper-chars-in-region undo-end-posn before-undo-pt) 1))
1512 (goto-char before-undo-pt)
1513 (goto-char undo-beg-posn)))
1514 (push-mark before-undo-pt t))
1515 (if (and (eolp) (not (bolp))) (backward-char 1))
1516 (if (not modified) (set-buffer-modified-p t)))
1517 (setq this-command 'viper-undo))
1519 ;; Continue undoing previous changes.
1520 (defun viper-undo-more ()
1521 (message "undo more!")
1522 (condition-case nil
1523 (undo-more 1)
1524 (error (beep)
1525 (message "No further undo information in this buffer")))
1526 (if (and (eolp) (not (bolp))) (backward-char 1))
1527 (setq this-command 'viper-undo))
1529 ;; The following two functions are used to set up undo properly.
1530 ;; In VI, unlike Emacs, if you open a line, say, and add a bunch of lines,
1531 ;; they are undone all at once.
1532 (defun viper-adjust-undo ()
1533 (if viper-undo-needs-adjustment
1534 (let ((inhibit-quit t)
1535 tmp tmp2)
1536 (setq viper-undo-needs-adjustment nil)
1537 (if (listp buffer-undo-list)
1538 (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list))
1539 (progn
1540 (setq tmp2 (cdr tmp)) ; the part after mark
1542 ;; cut tail from buffer-undo-list temporarily by direct
1543 ;; manipulation with pointers in buffer-undo-list
1544 (setcdr tmp nil)
1546 (setq buffer-undo-list (delq nil buffer-undo-list))
1547 (setq buffer-undo-list
1548 (delq viper-buffer-undo-list-mark buffer-undo-list))
1549 ;; restore tail of buffer-undo-list
1550 (setq buffer-undo-list (nconc buffer-undo-list tmp2)))
1551 (setq buffer-undo-list (delq nil buffer-undo-list)))))
1555 (defun viper-set-complex-command-for-undo ()
1556 (if (listp buffer-undo-list)
1557 (if (not viper-undo-needs-adjustment)
1558 (let ((inhibit-quit t))
1559 (setq buffer-undo-list
1560 (cons viper-buffer-undo-list-mark buffer-undo-list))
1561 (setq viper-undo-needs-adjustment t)))))
1566 (defun viper-display-current-destructive-command ()
1567 (let ((text (nth 4 viper-d-com))
1568 (keys (nth 5 viper-d-com))
1569 (max-text-len 30))
1571 (setq this-command 'viper-display-current-destructive-command)
1573 (message " `.' runs %s%s"
1574 (concat "`" (viper-array-to-string keys) "'")
1575 (viper-abbreviate-string
1576 (if viper-xemacs-p
1577 (replace-in-string
1578 (cond ((characterp text) (char-to-string text))
1579 ((stringp text) text)
1580 (t ""))
1581 "\n" "^J")
1582 text)
1583 max-text-len
1584 " inserting `" "'" " ......."))
1588 ;; don't change viper-d-com if it was viper-repeat command invoked with `.'
1589 ;; or in some other way (non-interactively).
1590 (defun viper-set-destructive-command (list)
1591 (or (eq viper-intermediate-command 'viper-repeat)
1592 (progn
1593 (setq viper-d-com list)
1594 (setcar (nthcdr 5 viper-d-com)
1595 (viper-array-to-string (if (arrayp viper-this-command-keys)
1596 viper-this-command-keys
1597 (this-command-keys))))
1598 (viper-push-onto-ring viper-d-com 'viper-command-ring)))
1599 (setq viper-this-command-keys nil))
1601 (defun viper-prev-destructive-command (next)
1602 "Find previous destructive command in the history of destructive commands.
1603 With prefix argument, find next destructive command."
1604 (interactive "P")
1605 (let (cmd viper-intermediate-command)
1606 (if (eq last-command 'viper-display-current-destructive-command)
1607 ;; repeated search through command history
1608 (setq viper-intermediate-command
1609 'repeating-display-destructive-command)
1610 ;; first search through command history--set temp ring
1611 (setq viper-temp-command-ring (copy-list viper-command-ring)))
1612 (setq cmd (if next
1613 (viper-special-ring-rotate1 viper-temp-command-ring 1)
1614 (viper-special-ring-rotate1 viper-temp-command-ring -1)))
1615 (if (null cmd)
1617 (setq viper-d-com cmd))
1618 (viper-display-current-destructive-command)))
1620 (defun viper-next-destructive-command ()
1621 "Find next destructive command in the history of destructive commands."
1622 (interactive)
1623 (viper-prev-destructive-command 'next))
1625 (defun viper-insert-prev-from-insertion-ring (arg)
1626 "Cycle through insertion ring in the direction of older insertions.
1627 Undoes previous insertion and inserts new.
1628 With prefix argument, cycles in the direction of newer elements.
1629 In minibuffer, this command executes whatever the invocation key is bound
1630 to in the global map, instead of cycling through the insertion ring."
1631 (interactive "P")
1632 (let (viper-intermediate-command)
1633 (if (eq last-command 'viper-insert-from-insertion-ring)
1634 (progn ; repeated search through insertion history
1635 (setq viper-intermediate-command 'repeating-insertion-from-ring)
1636 (if (eq viper-current-state 'replace-state)
1637 (undo 1)
1638 (if viper-last-inserted-string-from-insertion-ring
1639 (backward-delete-char
1640 (length viper-last-inserted-string-from-insertion-ring))))
1642 ;;first search through insertion history
1643 (setq viper-temp-insertion-ring (copy-list viper-insertion-ring)))
1644 (setq this-command 'viper-insert-from-insertion-ring)
1645 ;; so that things will be undone properly
1646 (setq buffer-undo-list (cons nil buffer-undo-list))
1647 (setq viper-last-inserted-string-from-insertion-ring
1648 (viper-special-ring-rotate1 viper-temp-insertion-ring (if arg 1 -1)))
1650 ;; this change of viper-intermediate-command must come after
1651 ;; viper-special-ring-rotate1, so that the ring will rotate, but before the
1652 ;; insertion.
1653 (setq viper-intermediate-command nil)
1654 (if viper-last-inserted-string-from-insertion-ring
1655 (insert viper-last-inserted-string-from-insertion-ring))
1658 (defun viper-insert-next-from-insertion-ring ()
1659 "Cycle through insertion ring in the direction of older insertions.
1660 Undo previous insertion and inserts new."
1661 (interactive)
1662 (viper-insert-prev-from-insertion-ring 'next))
1665 ;; some region utilities
1667 ;; If at the last line of buffer, add \\n before eob, if newline is missing.
1668 (defun viper-add-newline-at-eob-if-necessary ()
1669 (save-excursion
1670 (end-of-line)
1671 ;; make sure all lines end with newline, unless in the minibuffer or
1672 ;; when requested otherwise (require-final-newline is nil)
1673 (if (and (eobp)
1674 (not (bolp))
1675 require-final-newline
1676 (not (viper-is-in-minibuffer))
1677 (not buffer-read-only))
1678 (insert "\n"))))
1680 (defun viper-yank-defun ()
1681 (mark-defun)
1682 (copy-region-as-kill (point) (mark t)))
1684 ;; Enlarge region between BEG and END.
1685 (defun viper-enlarge-region (beg end)
1686 (or beg (setq beg end)) ; if beg is nil, set to end
1687 (or end (setq end beg)) ; if end is nil, set to beg
1689 (if (< beg end)
1690 (progn (goto-char beg) (set-mark end))
1691 (goto-char end)
1692 (set-mark beg))
1693 (beginning-of-line)
1694 (exchange-point-and-mark)
1695 (if (or (not (eobp)) (not (bolp))) (forward-line 1))
1696 (if (not (eobp)) (beginning-of-line))
1697 (if (> beg end) (exchange-point-and-mark)))
1700 ;; Quote region by each line with a user supplied string.
1701 (defun viper-quote-region ()
1702 (setq viper-quote-string
1703 (viper-read-string-with-history
1704 "Quote string: "
1706 'viper-quote-region-history
1707 viper-quote-string))
1708 (viper-enlarge-region (point) (mark t))
1709 (if (> (point) (mark t)) (exchange-point-and-mark))
1710 (insert viper-quote-string)
1711 (beginning-of-line)
1712 (forward-line 1)
1713 (while (and (< (point) (mark t)) (bolp))
1714 (insert viper-quote-string)
1715 (beginning-of-line)
1716 (forward-line 1)))
1718 ;; Tells whether BEG is on the same line as END.
1719 ;; If one of the args is nil, it'll return nil.
1720 (defun viper-same-line (beg end)
1721 (let ((selective-display nil)
1722 (incr 0)
1723 temp)
1724 (if (and beg end (> beg end))
1725 (setq temp beg
1726 beg end
1727 end temp))
1728 (if (and beg end)
1729 (cond ((or (> beg (point-max)) (> end (point-max))) ; out of range
1730 nil)
1732 ;; This 'if' is needed because Emacs treats the next empty line
1733 ;; as part of the previous line.
1734 (if (= (viper-line-pos 'start) end)
1735 (setq incr 1))
1736 (<= (+ incr (count-lines beg end)) 1))))
1740 ;; Check if the string ends with a newline.
1741 (defun viper-end-with-a-newline-p (string)
1742 (or (string= string "")
1743 (= (viper-seq-last-elt string) ?\n)))
1745 (defun viper-tmp-insert-at-eob (msg)
1746 (let ((savemax (point-max)))
1747 (goto-char savemax)
1748 (insert msg)
1749 (sit-for 2)
1750 (goto-char savemax) (delete-region (point) (point-max))
1755 ;;; Minibuffer business
1757 (defsubst viper-set-minibuffer-style ()
1758 (add-hook 'minibuffer-setup-hook 'viper-minibuffer-setup-sentinel))
1761 (defun viper-minibuffer-setup-sentinel ()
1762 (let ((hook (if viper-vi-style-in-minibuffer
1763 'viper-change-state-to-insert
1764 'viper-change-state-to-emacs)))
1765 (funcall hook)
1768 ;; Interpret last event in the local map
1769 (defun viper-exit-minibuffer ()
1770 (interactive)
1771 (let (command)
1772 (setq command (local-key-binding (char-to-string last-command-char)))
1773 (if command
1774 (command-execute command)
1775 (exit-minibuffer))))
1778 ;;; Reading string with history
1780 (defun viper-read-string-with-history (prompt &optional initial
1781 history-var default keymap)
1782 ;; Read string, prompting with PROMPT and inserting the INITIAL
1783 ;; value. Uses HISTORY-VAR. DEFAULT is the default value to accept if the
1784 ;; input is an empty string. Use KEYMAP, if given, or the
1785 ;; minibuffer-local-map.
1786 ;; Default value is displayed until the user types something in the
1787 ;; minibuffer.
1788 (let ((minibuffer-setup-hook
1789 '(lambda ()
1790 (if (stringp initial)
1791 (progn
1792 ;; don't wait if we have unread events or in kbd macro
1793 (or unread-command-events
1794 executing-kbd-macro
1795 (sit-for 840))
1796 (erase-buffer)
1797 (insert initial)))
1798 (viper-minibuffer-setup-sentinel)))
1799 (val "")
1800 (padding "")
1801 temp-msg)
1803 (setq keymap (or keymap minibuffer-local-map)
1804 initial (or initial "")
1805 temp-msg (if default
1806 (format "(default: %s) " default)
1807 ""))
1809 (setq viper-incomplete-ex-cmd nil)
1810 (setq val (read-from-minibuffer prompt
1811 (concat temp-msg initial val padding)
1812 keymap nil history-var))
1813 (setq minibuffer-setup-hook nil
1814 padding (viper-array-to-string (this-command-keys))
1815 temp-msg "")
1816 ;; the following tries to be smart about what to put in history
1817 (if (not (string= val (car (eval history-var))))
1818 (set history-var (cons val (eval history-var))))
1819 (if (or (string= (nth 0 (eval history-var)) (nth 1 (eval history-var)))
1820 (string= (nth 0 (eval history-var)) ""))
1821 (set history-var (cdr (eval history-var))))
1822 ;; If the user enters nothing but the prev cmd wasn't viper-ex,
1823 ;; viper-command-argument, or `! shell-command', this probably means
1824 ;; that the user typed something then erased. Return "" in this case, not
1825 ;; the default---the default is too confusing in this case.
1826 (cond ((and (string= val "")
1827 (not (string= prompt "!")) ; was a `! shell-command'
1828 (not (memq last-command
1829 '(viper-ex
1830 viper-command-argument
1834 ((string= val "") (or default ""))
1835 (t val))
1840 ;; insertion commands
1842 ;; Called when state changes from Insert Vi command mode.
1843 ;; Repeats the insertion command if Insert state was entered with prefix
1844 ;; argument > 1.
1845 (defun viper-repeat-insert-command ()
1846 (let ((i-com (car viper-d-com))
1847 (val (nth 1 viper-d-com))
1848 (char (nth 2 viper-d-com)))
1849 (if (and val (> val 1)) ; first check that val is non-nil
1850 (progn
1851 (setq viper-d-com (list i-com (1- val) ?r nil nil nil))
1852 (viper-repeat nil)
1853 (setq viper-d-com (list i-com val char nil nil nil))
1854 ))))
1856 (defun viper-insert (arg)
1857 "Insert before point."
1858 (interactive "P")
1859 (viper-set-complex-command-for-undo)
1860 (let ((val (viper-p-val arg))
1861 (com (viper-getcom arg)))
1862 (viper-set-destructive-command (list 'viper-insert val ?r nil nil nil))
1863 (if com
1864 (viper-loop val (viper-yank-last-insertion))
1865 (viper-change-state-to-insert))))
1867 (defun viper-append (arg)
1868 "Append after point."
1869 (interactive "P")
1870 (viper-set-complex-command-for-undo)
1871 (let ((val (viper-p-val arg))
1872 (com (viper-getcom arg)))
1873 (viper-set-destructive-command (list 'viper-append val ?r nil nil nil))
1874 (if (not (eolp)) (forward-char))
1875 (if (equal com ?r)
1876 (viper-loop val (viper-yank-last-insertion))
1877 (viper-change-state-to-insert))))
1879 (defun viper-Append (arg)
1880 "Append at end of line."
1881 (interactive "P")
1882 (viper-set-complex-command-for-undo)
1883 (let ((val (viper-p-val arg))
1884 (com (viper-getcom arg)))
1885 (viper-set-destructive-command (list 'viper-Append val ?r nil nil nil))
1886 (end-of-line)
1887 (if (equal com ?r)
1888 (viper-loop val (viper-yank-last-insertion))
1889 (viper-change-state-to-insert))))
1891 (defun viper-Insert (arg)
1892 "Insert before first non-white."
1893 (interactive "P")
1894 (viper-set-complex-command-for-undo)
1895 (let ((val (viper-p-val arg))
1896 (com (viper-getcom arg)))
1897 (viper-set-destructive-command (list 'viper-Insert val ?r nil nil nil))
1898 (back-to-indentation)
1899 (if (equal com ?r)
1900 (viper-loop val (viper-yank-last-insertion))
1901 (viper-change-state-to-insert))))
1903 (defun viper-open-line (arg)
1904 "Open line below."
1905 (interactive "P")
1906 (viper-set-complex-command-for-undo)
1907 (let ((val (viper-p-val arg))
1908 (com (viper-getcom arg)))
1909 (viper-set-destructive-command (list 'viper-open-line val ?r nil nil nil))
1910 (let ((col (current-indentation)))
1911 (if (equal com ?r)
1912 (viper-loop val
1913 (end-of-line)
1914 (newline 1)
1915 (if viper-auto-indent
1916 (progn
1917 (setq viper-cted t)
1918 (if viper-electric-mode
1919 (indent-according-to-mode)
1920 (indent-to col))
1922 (viper-yank-last-insertion))
1923 (end-of-line)
1924 (newline 1)
1925 (if viper-auto-indent
1926 (progn
1927 (setq viper-cted t)
1928 (if viper-electric-mode
1929 (indent-according-to-mode)
1930 (indent-to col))))
1931 (viper-change-state-to-insert)))))
1933 (defun viper-Open-line (arg)
1934 "Open line above."
1935 (interactive "P")
1936 (viper-set-complex-command-for-undo)
1937 (let ((val (viper-p-val arg))
1938 (com (viper-getcom arg)))
1939 (viper-set-destructive-command (list 'viper-Open-line val ?r nil nil nil))
1940 (let ((col (current-indentation)))
1941 (if (equal com ?r)
1942 (viper-loop val
1943 (beginning-of-line)
1944 (open-line 1)
1945 (if viper-auto-indent
1946 (progn
1947 (setq viper-cted t)
1948 (if viper-electric-mode
1949 (indent-according-to-mode)
1950 (indent-to col))
1952 (viper-yank-last-insertion))
1953 (beginning-of-line)
1954 (open-line 1)
1955 (if viper-auto-indent
1956 (progn
1957 (setq viper-cted t)
1958 (if viper-electric-mode
1959 (indent-according-to-mode)
1960 (indent-to col))
1962 (viper-change-state-to-insert)))))
1964 (defun viper-open-line-at-point (arg)
1965 "Open line at point."
1966 (interactive "P")
1967 (viper-set-complex-command-for-undo)
1968 (let ((val (viper-p-val arg))
1969 (com (viper-getcom arg)))
1970 (viper-set-destructive-command
1971 (list 'viper-open-line-at-point val ?r nil nil nil))
1972 (if (equal com ?r)
1973 (viper-loop val
1974 (open-line 1)
1975 (viper-yank-last-insertion))
1976 (open-line 1)
1977 (viper-change-state-to-insert))))
1979 (defun viper-substitute (arg)
1980 "Substitute characters."
1981 (interactive "P")
1982 (let ((val (viper-p-val arg))
1983 (com (viper-getcom arg)))
1984 (push-mark nil t)
1985 (forward-char val)
1986 (if (equal com ?r)
1987 (viper-change-subr (mark t) (point))
1988 (viper-change (mark t) (point)))
1989 (viper-set-destructive-command (list 'viper-substitute val ?r nil nil nil))
1992 ;; Command bound to S
1993 (defun viper-substitute-line (arg)
1994 "Substitute lines."
1995 (interactive "p")
1996 (viper-set-complex-command-for-undo)
1997 (viper-line (cons arg ?C)))
1999 ;; Prepare for replace
2000 (defun viper-start-replace ()
2001 (setq viper-began-as-replace t
2002 viper-sitting-in-replace t
2003 viper-replace-chars-to-delete 0)
2004 (viper-add-hook
2005 'viper-after-change-functions 'viper-replace-mode-spy-after t)
2006 (viper-add-hook
2007 'viper-before-change-functions 'viper-replace-mode-spy-before t)
2008 ;; this will get added repeatedly, but no harm
2009 (add-hook 'after-change-functions 'viper-after-change-sentinel t)
2010 (add-hook 'before-change-functions 'viper-before-change-sentinel t)
2011 (viper-move-marker-locally 'viper-last-posn-in-replace-region
2012 (viper-replace-start))
2013 (viper-add-hook
2014 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel t)
2015 (viper-add-hook
2016 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t)
2017 ;; guard against a smartie who switched from R-replace to normal replace
2018 (viper-remove-hook
2019 'viper-post-command-hooks 'viper-R-state-post-command-sentinel)
2020 (if overwrite-mode (overwrite-mode nil))
2024 (defun viper-replace-mode-spy-before (beg end)
2025 (setq viper-replace-region-chars-deleted (viper-chars-in-region beg end))
2028 ;; Invoked as an after-change-function to calculate how many chars have to be
2029 ;; deleted. This function may be called several times within a single command,
2030 ;; if this command performs several separate buffer changes. Therefore, if adds
2031 ;; up the number of chars inserted and subtracts the number of chars deleted.
2032 (defun viper-replace-mode-spy-after (beg end length)
2033 (if (memq viper-intermediate-command
2034 '(dabbrev-expand repeating-insertion-from-ring))
2035 ;; Take special care of text insertion from insertion ring inside
2036 ;; replacement overlays.
2037 (progn
2038 (setq viper-replace-chars-to-delete 0)
2039 (viper-move-marker-locally
2040 'viper-last-posn-in-replace-region (point)))
2042 (let* ((real-end (min end (viper-replace-end)))
2043 (column-shift (- (save-excursion (goto-char real-end)
2044 (current-column))
2045 (save-excursion (goto-char beg)
2046 (current-column))))
2047 (chars-deleted 0))
2049 (if (> length 0)
2050 (setq chars-deleted viper-replace-region-chars-deleted))
2051 (setq viper-replace-region-chars-deleted 0)
2052 (setq viper-replace-chars-to-delete
2053 (+ viper-replace-chars-to-delete
2055 ;; if column shift is bigger, due to a TAB insertion, take
2056 ;; column-shift instead of the number of inserted chars
2057 (max (viper-chars-in-region beg real-end)
2058 ;; This test accounts for Chinese/Japanese/... chars,
2059 ;; which occupy 2 columns instead of one. If we use
2060 ;; column-shift here, we may delete two chars instead of
2061 ;; one when the user types one Chinese character. Deleting
2062 ;; two would be OK, if they were European chars, but it is
2063 ;; not OK if they are Chinese chars. Since it is hard to
2064 ;; figure out which characters are being deleted in any
2065 ;; given region, we decided to treat Eastern and European
2066 ;; characters equally, even though Eastern chars may
2067 ;; occupy more columns.
2068 (if (memq this-command '(self-insert-command
2069 quoted-insert viper-insert-tab))
2070 column-shift
2072 ;; the number of deleted chars
2073 chars-deleted)))
2075 (viper-move-marker-locally
2076 'viper-last-posn-in-replace-region
2077 (max (if (> end (viper-replace-end)) (viper-replace-end) end)
2078 (or (marker-position viper-last-posn-in-replace-region)
2079 (viper-replace-start))
2084 ;; Make sure we don't delete more than needed.
2085 ;; This is executed at viper-last-posn-in-replace-region
2086 (defsubst viper-trim-replace-chars-to-delete-if-necessary ()
2087 (setq viper-replace-chars-to-delete
2088 (max 0
2089 (min viper-replace-chars-to-delete
2090 ;; Don't delete more than to the end of repl overlay
2091 (viper-chars-in-region
2092 (viper-replace-end) viper-last-posn-in-replace-region)
2093 ;; point is viper-last-posn-in-replace-region now
2094 ;; So, this limits deletion to the end of line
2095 (viper-chars-in-region (point) (viper-line-pos 'end))
2096 ))))
2099 ;; Delete stuff between viper-last-posn-in-replace-region and the end of
2100 ;; viper-replace-overlay-marker, if viper-last-posn-in-replace-region is within
2101 ;; the overlay and current point is before the end of the overlay.
2102 ;; Don't delete anything if current point is past the end of the overlay.
2103 (defun viper-finish-change ()
2104 (viper-remove-hook
2105 'viper-after-change-functions 'viper-replace-mode-spy-after)
2106 (viper-remove-hook
2107 'viper-before-change-functions 'viper-replace-mode-spy-before)
2108 (viper-remove-hook
2109 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel)
2110 (viper-remove-hook
2111 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel)
2112 (viper-restore-cursor-color-after-replace)
2113 (setq viper-sitting-in-replace nil) ; just in case we'll need to know it
2114 (save-excursion
2115 (if (and viper-replace-overlay
2116 (viper-pos-within-region viper-last-posn-in-replace-region
2117 (viper-replace-start)
2118 (viper-replace-end))
2119 (< (point) (viper-replace-end)))
2120 (delete-region
2121 viper-last-posn-in-replace-region (viper-replace-end))))
2123 (if (eq viper-current-state 'replace-state)
2124 (viper-downgrade-to-insert))
2125 ;; replace mode ended => nullify viper-last-posn-in-replace-region
2126 (viper-move-marker-locally 'viper-last-posn-in-replace-region nil)
2127 (viper-hide-replace-overlay)
2128 (viper-refresh-mode-line)
2129 (viper-put-string-on-kill-ring viper-last-replace-region)
2132 ;; Make STRING be the first element of the kill ring.
2133 (defun viper-put-string-on-kill-ring (string)
2134 (setq kill-ring (cons string kill-ring))
2135 (if (> (length kill-ring) kill-ring-max)
2136 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))
2137 (setq kill-ring-yank-pointer kill-ring))
2139 (defun viper-finish-R-mode ()
2140 (viper-remove-hook
2141 'viper-post-command-hooks 'viper-R-state-post-command-sentinel)
2142 (viper-remove-hook
2143 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel)
2144 (viper-downgrade-to-insert))
2146 (defun viper-start-R-mode ()
2147 ;; Leave arg as 1, not t: XEmacs insists that it must be a pos number
2148 (overwrite-mode 1)
2149 (viper-add-hook
2150 'viper-post-command-hooks 'viper-R-state-post-command-sentinel t)
2151 (viper-add-hook
2152 'viper-pre-command-hooks 'viper-replace-state-pre-command-sentinel t)
2153 ;; guard against a smartie who switched from R-replace to normal replace
2154 (viper-remove-hook
2155 'viper-post-command-hooks 'viper-replace-state-post-command-sentinel)
2160 (defun viper-replace-state-exit-cmd ()
2161 "Binding for keys that cause Replace state to switch to Vi or to Insert.
2162 These keys are ESC, RET, and LineFeed"
2163 (interactive)
2164 (if overwrite-mode ; if in replace mode invoked via 'R'
2165 (viper-finish-R-mode)
2166 (viper-finish-change))
2167 (let (com)
2168 (if (eq this-command 'viper-intercept-ESC-key)
2169 (setq com 'viper-exit-insert-state)
2170 (viper-set-unread-command-events last-input-char)
2171 (setq com (key-binding (read-key-sequence nil))))
2173 (condition-case conds
2174 (command-execute com)
2175 (error
2176 (viper-message-conditions conds)))
2178 (viper-hide-replace-overlay))
2181 (defun viper-replace-state-carriage-return ()
2182 "Carriage return in Viper replace state."
2183 (interactive)
2184 ;; If Emacs start supporting overlay maps, as it currently supports
2185 ;; text-property maps, we could do away with viper-replace-minor-mode and
2186 ;; just have keymap attached to replace overlay. Then the "if part" of this
2187 ;; statement can be deleted.
2188 (if (or (< (point) (viper-replace-start))
2189 (> (point) (viper-replace-end)))
2190 (let (viper-replace-minor-mode com)
2191 (viper-set-unread-command-events last-input-char)
2192 (setq com (key-binding (read-key-sequence nil)))
2193 (condition-case conds
2194 (command-execute com)
2195 (error
2196 (viper-message-conditions conds))))
2197 (if (not viper-allow-multiline-replace-regions)
2198 (viper-replace-state-exit-cmd)
2199 (if (viper-same-line (point) (viper-replace-end))
2200 (viper-replace-state-exit-cmd)
2201 ;; delete the rest of line
2202 (delete-region (point) (viper-line-pos 'end))
2203 (save-excursion
2204 (end-of-line)
2205 (if (eobp) (error "Last line in buffer")))
2206 ;; skip to the next line
2207 (forward-line 1)
2208 (back-to-indentation)
2209 ))))
2212 ;; This is the function bound to 'R'---unlimited replace.
2213 ;; Similar to Emacs's own overwrite-mode.
2214 (defun viper-overwrite (arg)
2215 "Begin overwrite mode."
2216 (interactive "P")
2217 (let ((val (viper-p-val arg))
2218 (com (viper-getcom arg)) (len))
2219 (viper-set-destructive-command (list 'viper-overwrite val ?r nil nil nil))
2220 (if com
2221 (progn
2222 ;; Viper saves inserted text in viper-last-insertion
2223 (setq len (length viper-last-insertion))
2224 (delete-char len)
2225 (viper-loop val (viper-yank-last-insertion)))
2226 (setq last-command 'viper-overwrite)
2227 (viper-set-complex-command-for-undo)
2228 (viper-set-replace-overlay (point) (viper-line-pos 'end))
2229 (viper-change-state-to-replace)
2233 ;; line commands
2235 (defun viper-line (arg)
2236 (let ((val (car arg))
2237 (com (cdr arg)))
2238 (viper-move-marker-locally 'viper-com-point (point))
2239 (if (not (eobp))
2240 (viper-next-line-carefully (1- val)))
2241 ;; this ensures that dd, cc, D, yy will do the right thing on the last
2242 ;; line of buffer when this line has no \n.
2243 (viper-add-newline-at-eob-if-necessary)
2244 (viper-execute-com 'viper-line val com))
2245 (if (and (eobp) (not (bobp))) (forward-line -1))
2248 (defun viper-yank-line (arg)
2249 "Yank ARG lines (in Vi's sense)."
2250 (interactive "P")
2251 (let ((val (viper-p-val arg)))
2252 (viper-line (cons val ?Y))))
2255 ;; region commands
2257 (defun viper-region (arg)
2258 "Execute command on a region."
2259 (interactive "P")
2260 (let ((val (viper-P-val arg))
2261 (com (viper-getcom arg)))
2262 (viper-move-marker-locally 'viper-com-point (point))
2263 (exchange-point-and-mark)
2264 (viper-execute-com 'viper-region val com)))
2266 (defun viper-Region (arg)
2267 "Execute command on a Region."
2268 (interactive "P")
2269 (let ((val (viper-P-val arg))
2270 (com (viper-getCom arg)))
2271 (viper-move-marker-locally 'viper-com-point (point))
2272 (exchange-point-and-mark)
2273 (viper-execute-com 'viper-Region val com)))
2275 (defun viper-replace-char (arg)
2276 "Replace the following ARG chars by the character read."
2277 (interactive "P")
2278 (if (and (eolp) (bolp)) (error "No character to replace here"))
2279 (let ((val (viper-p-val arg))
2280 (com (viper-getcom arg)))
2281 (viper-replace-char-subr com val)
2282 (if (and (eolp) (not (bolp))) (forward-char 1))
2283 (setq viper-this-command-keys
2284 (format "%sr" (if (integerp arg) arg "")))
2285 (viper-set-destructive-command
2286 (list 'viper-replace-char val ?r nil viper-d-char nil))
2289 (defun viper-replace-char-subr (com arg)
2290 (let (char)
2291 (setq char (if (equal com ?r)
2292 viper-d-char
2293 (read-char)))
2294 (let (inhibit-quit) ; preserve consistency of undo-list and iso-accents
2295 (if (and viper-automatic-iso-accents (memq char '(?' ?\" ?^ ?~)))
2296 ;; get European characters
2297 (progn
2298 (viper-set-iso-accents-mode t)
2299 (viper-set-unread-command-events char)
2300 (setq char (aref (read-key-sequence nil) 0))
2301 (viper-set-iso-accents-mode nil)))
2302 (viper-set-complex-command-for-undo)
2303 (if (eq char ?\C-m) (setq char ?\n))
2304 (if (and viper-special-input-method (fboundp 'quail-start-translation))
2305 ;; get Intl. characters
2306 (progn
2307 (viper-set-input-method t)
2308 (setq last-command-event
2309 (viper-copy-event
2310 (if viper-xemacs-p (character-to-event char) char)))
2311 (delete-char 1 t)
2312 (condition-case nil
2313 (if com
2314 (insert char)
2315 (if viper-emacs-p
2316 (quail-start-translation 1)
2317 (quail-start-translation)))
2318 (error))
2319 ;; quail translation failed
2320 (if (and (not (stringp quail-current-str))
2321 (not (viper-characterp quail-current-str)))
2322 (progn
2323 (viper-adjust-undo)
2324 (undo-start)
2325 (undo-more 1)
2326 (viper-set-input-method nil)
2327 (error "Composing character failed, changes undone")))
2328 ;; quail translation seems ok
2329 (or com
2330 ;;(setq char quail-current-str))
2331 (setq char (viper-char-at-pos 'backward)))
2332 (setq viper-d-char char)
2333 (viper-loop (1- (if (> arg 0) arg (- arg)))
2334 (delete-char 1 t)
2335 (insert char))
2336 (viper-set-input-method nil))
2337 (delete-char arg t)
2338 (setq viper-d-char char)
2339 (viper-loop (if (> arg 0) arg (- arg))
2340 (insert char)))
2341 (viper-adjust-undo)
2342 (backward-char arg))))
2345 ;; basic cursor movement. j, k, l, h commands.
2347 (defun viper-forward-char (arg)
2348 "Move point right ARG characters (left if ARG negative).
2349 On reaching end of line, stop and signal error."
2350 (interactive "P")
2351 (viper-leave-region-active)
2352 (let ((val (viper-p-val arg))
2353 (com (viper-getcom arg)))
2354 (if com (viper-move-marker-locally 'viper-com-point (point)))
2355 (if viper-ex-style-motion
2356 (progn
2357 ;; the boundary condition check gets weird here because
2358 ;; forward-char may be the parameter of a delete, and 'dl' works
2359 ;; just like 'x' for the last char on a line, so we have to allow
2360 ;; the forward motion before the 'viper-execute-com', but, of
2361 ;; course, 'dl' doesn't work on an empty line, so we have to
2362 ;; catch that condition before 'viper-execute-com'
2363 (if (and (eolp) (bolp)) (error "") (forward-char val))
2364 (if com (viper-execute-com 'viper-forward-char val com))
2365 (if (eolp) (progn (backward-char 1) (error ""))))
2366 (forward-char val)
2367 (if com (viper-execute-com 'viper-forward-char val com)))))
2369 (defun viper-backward-char (arg)
2370 "Move point left ARG characters (right if ARG negative).
2371 On reaching beginning of line, stop and signal error."
2372 (interactive "P")
2373 (viper-leave-region-active)
2374 (let ((val (viper-p-val arg))
2375 (com (viper-getcom arg)))
2376 (if com (viper-move-marker-locally 'viper-com-point (point)))
2377 (if viper-ex-style-motion
2378 (progn
2379 (if (bolp) (error "") (backward-char val))
2380 (if com (viper-execute-com 'viper-backward-char val com)))
2381 (backward-char val)
2382 (if com (viper-execute-com 'viper-backward-char val com)))))
2384 ;; Like forward-char, but doesn't move at end of buffer.
2385 ;; Returns distance traveled
2386 ;; (positive or 0, if arg positive; negative if arg negative).
2387 (defun viper-forward-char-carefully (&optional arg)
2388 (setq arg (or arg 1))
2389 (let ((pt (point)))
2390 (condition-case nil
2391 (forward-char arg)
2392 (error))
2393 (if (< (point) pt) ; arg was negative
2394 (- (viper-chars-in-region pt (point)))
2395 (viper-chars-in-region pt (point)))))
2397 ;; Like backward-char, but doesn't move at beg of buffer.
2398 ;; Returns distance traveled
2399 ;; (negative or 0, if arg positive; positive if arg negative).
2400 (defun viper-backward-char-carefully (&optional arg)
2401 (setq arg (or arg 1))
2402 (let ((pt (point)))
2403 (condition-case nil
2404 (backward-char arg)
2405 (error))
2406 (if (> (point) pt) ; arg was negative
2407 (viper-chars-in-region pt (point))
2408 (- (viper-chars-in-region pt (point))))))
2410 (defun viper-next-line-carefully (arg)
2411 (condition-case nil
2412 (next-line arg)
2413 (error nil)))
2417 ;;; Word command
2419 ;; Words are formed from alpha's and nonalphas - <sp>,\t\n are separators for
2420 ;; word movement. When executed with a destructive command, \n is usually left
2421 ;; untouched for the last word. Viper uses syntax table to determine what is a
2422 ;; word and what is a separator. However, \n is always a separator. Also, if
2423 ;; viper-syntax-preference is 'vi, then `_' is part of the word.
2425 ;; skip only one \n
2426 (defun viper-skip-separators (forward)
2427 (if forward
2428 (progn
2429 (viper-skip-all-separators-forward 'within-line)
2430 (if (looking-at "\n")
2431 (progn
2432 (forward-char)
2433 (viper-skip-all-separators-forward 'within-line))))
2434 (viper-skip-all-separators-backward 'within-line)
2435 (viper-backward-char-carefully)
2436 (if (looking-at "\n")
2437 (viper-skip-all-separators-backward 'within-line)
2438 (forward-char))))
2440 (defun viper-forward-word-kernel (val)
2441 (while (> val 0)
2442 (cond ((viper-looking-at-alpha)
2443 (viper-skip-alpha-forward "_")
2444 (viper-skip-separators t))
2445 ((viper-looking-at-separator)
2446 (viper-skip-separators t))
2447 ((not (viper-looking-at-alphasep))
2448 (viper-skip-nonalphasep-forward)
2449 (viper-skip-separators t)))
2450 (setq val (1- val))))
2452 ;; first skip non-newline separators backward, then skip \n. Then, if TWICE is
2453 ;; non-nil, skip non-\n back again, but don't overshoot the limit LIM.
2454 (defun viper-separator-skipback-special (twice lim)
2455 (let ((prev-char (viper-char-at-pos 'backward))
2456 (saved-point (point)))
2457 ;; skip non-newline separators backward
2458 (while (and (not (memq prev-char '(nil \n)))
2459 (< lim (point))
2460 ;; must be non-newline separator
2461 (if (eq viper-syntax-preference 'strict-vi)
2462 (memq prev-char '(?\ ?\t))
2463 (memq (char-syntax prev-char) '(?\ ?-))))
2464 (viper-backward-char-carefully)
2465 (setq prev-char (viper-char-at-pos 'backward)))
2467 (if (and (< lim (point)) (eq prev-char ?\n))
2468 (backward-char)
2469 ;; If we skipped to the next word and the prefix of this line doesn't
2470 ;; consist of separators preceded by a newline, then don't skip backwards
2471 ;; at all.
2472 (goto-char saved-point))
2473 (setq prev-char (viper-char-at-pos 'backward))
2475 ;; skip again, but make sure we don't overshoot the limit
2476 (if twice
2477 (while (and (not (memq prev-char '(nil \n)))
2478 (< lim (point))
2479 ;; must be non-newline separator
2480 (if (eq viper-syntax-preference 'strict-vi)
2481 (memq prev-char '(?\ ?\t))
2482 (memq (char-syntax prev-char) '(?\ ?-))))
2483 (viper-backward-char-carefully)
2484 (setq prev-char (viper-char-at-pos 'backward))))
2486 (if (= (point) lim)
2487 (viper-forward-char-carefully))
2491 (defun viper-forward-word (arg)
2492 "Forward word."
2493 (interactive "P")
2494 (viper-leave-region-active)
2495 (let ((val (viper-p-val arg))
2496 (com (viper-getcom arg)))
2497 (if com (viper-move-marker-locally 'viper-com-point (point)))
2498 (viper-forward-word-kernel val)
2499 (if com (progn
2500 (cond ((memq com (list ?c (- ?c)))
2501 (viper-separator-skipback-special 'twice viper-com-point))
2502 ;; Yank words including the whitespace, but not newline
2503 ((memq com (list ?y (- ?y)))
2504 (viper-separator-skipback-special nil viper-com-point))
2505 ((viper-dotable-command-p com)
2506 (viper-separator-skipback-special nil viper-com-point)))
2507 (viper-execute-com 'viper-forward-word val com)))))
2510 (defun viper-forward-Word (arg)
2511 "Forward word delimited by white characters."
2512 (interactive "P")
2513 (viper-leave-region-active)
2514 (let ((val (viper-p-val arg))
2515 (com (viper-getcom arg)))
2516 (if com (viper-move-marker-locally 'viper-com-point (point)))
2517 (viper-loop val
2518 (viper-skip-nonseparators 'forward)
2519 (viper-skip-separators t))
2520 (if com (progn
2521 (cond ((memq com (list ?c (- ?c)))
2522 (viper-separator-skipback-special 'twice viper-com-point))
2523 ;; Yank words including the whitespace, but not newline
2524 ((memq com (list ?y (- ?y)))
2525 (viper-separator-skipback-special nil viper-com-point))
2526 ((viper-dotable-command-p com)
2527 (viper-separator-skipback-special nil viper-com-point)))
2528 (viper-execute-com 'viper-forward-Word val com)))))
2531 ;; this is a bit different from Vi, but Vi's end of word
2532 ;; makes no sense whatsoever
2533 (defun viper-end-of-word-kernel ()
2534 (if (viper-end-of-word-p) (forward-char))
2535 (if (viper-looking-at-separator)
2536 (viper-skip-all-separators-forward))
2538 (cond ((viper-looking-at-alpha) (viper-skip-alpha-forward "_"))
2539 ((not (viper-looking-at-alphasep)) (viper-skip-nonalphasep-forward)))
2540 (viper-backward-char-carefully))
2542 (defun viper-end-of-word-p ()
2543 (or (eobp)
2544 (save-excursion
2545 (cond ((viper-looking-at-alpha)
2546 (forward-char)
2547 (not (viper-looking-at-alpha)))
2548 ((not (viper-looking-at-alphasep))
2549 (forward-char)
2550 (viper-looking-at-alphasep))))))
2553 (defun viper-end-of-word (arg &optional careful)
2554 "Move point to end of current word."
2555 (interactive "P")
2556 (viper-leave-region-active)
2557 (let ((val (viper-p-val arg))
2558 (com (viper-getcom arg)))
2559 (if com (viper-move-marker-locally 'viper-com-point (point)))
2560 (viper-loop val (viper-end-of-word-kernel))
2561 (if com
2562 (progn
2563 (forward-char)
2564 (viper-execute-com 'viper-end-of-word val com)))))
2566 (defun viper-end-of-Word (arg)
2567 "Forward to end of word delimited by white character."
2568 (interactive "P")
2569 (viper-leave-region-active)
2570 (let ((val (viper-p-val arg))
2571 (com (viper-getcom arg)))
2572 (if com (viper-move-marker-locally 'viper-com-point (point)))
2573 (viper-loop val
2574 (viper-end-of-word-kernel)
2575 (viper-skip-nonseparators 'forward)
2576 (backward-char))
2577 (if com
2578 (progn
2579 (forward-char)
2580 (viper-execute-com 'viper-end-of-Word val com)))))
2582 (defun viper-backward-word-kernel (val)
2583 (while (> val 0)
2584 (viper-backward-char-carefully)
2585 (cond ((viper-looking-at-alpha)
2586 (viper-skip-alpha-backward "_"))
2587 ((viper-looking-at-separator)
2588 (forward-char)
2589 (viper-skip-separators nil)
2590 (viper-backward-char-carefully)
2591 (cond ((viper-looking-at-alpha)
2592 (viper-skip-alpha-backward "_"))
2593 ((not (viper-looking-at-alphasep))
2594 (viper-skip-nonalphasep-backward))
2595 ((bobp)) ; could still be at separator, but at beg of buffer
2596 (t (forward-char))))
2597 ((not (viper-looking-at-alphasep))
2598 (viper-skip-nonalphasep-backward)))
2599 (setq val (1- val))))
2601 (defun viper-backward-word (arg)
2602 "Backward word."
2603 (interactive "P")
2604 (viper-leave-region-active)
2605 (let ((val (viper-p-val arg))
2606 (com (viper-getcom arg)))
2607 (if com
2608 (let (i)
2609 (if (setq i (save-excursion (backward-char) (looking-at "\n")))
2610 (backward-char))
2611 (viper-move-marker-locally 'viper-com-point (point))
2612 (if i (forward-char))))
2613 (viper-backward-word-kernel val)
2614 (if com (viper-execute-com 'viper-backward-word val com))))
2616 (defun viper-backward-Word (arg)
2617 "Backward word delimited by white character."
2618 (interactive "P")
2619 (viper-leave-region-active)
2620 (let ((val (viper-p-val arg))
2621 (com (viper-getcom arg)))
2622 (if com
2623 (let (i)
2624 (if (setq i (save-excursion (backward-char) (looking-at "\n")))
2625 (backward-char))
2626 (viper-move-marker-locally 'viper-com-point (point))
2627 (if i (forward-char))))
2628 (viper-loop val
2629 (viper-skip-separators nil) ; nil means backward here
2630 (viper-skip-nonseparators 'backward))
2631 (if com (viper-execute-com 'viper-backward-Word val com))))
2635 ;; line commands
2637 (defun viper-beginning-of-line (arg)
2638 "Go to beginning of line."
2639 (interactive "P")
2640 (viper-leave-region-active)
2641 (let ((val (viper-p-val arg))
2642 (com (viper-getcom arg)))
2643 (if com (viper-move-marker-locally 'viper-com-point (point)))
2644 (beginning-of-line val)
2645 (if com (viper-execute-com 'viper-beginning-of-line val com))))
2647 (defun viper-bol-and-skip-white (arg)
2648 "Beginning of line at first non-white character."
2649 (interactive "P")
2650 (viper-leave-region-active)
2651 (let ((val (viper-p-val arg))
2652 (com (viper-getcom arg)))
2653 (if com (viper-move-marker-locally 'viper-com-point (point)))
2654 (forward-to-indentation (1- val))
2655 (if com (viper-execute-com 'viper-bol-and-skip-white val com))))
2657 (defun viper-goto-eol (arg)
2658 "Go to end of line."
2659 (interactive "P")
2660 (viper-leave-region-active)
2661 (let ((val (viper-p-val arg))
2662 (com (viper-getcom arg)))
2663 (if com (viper-move-marker-locally 'viper-com-point (point)))
2664 (end-of-line val)
2665 (if com (viper-execute-com 'viper-goto-eol val com))
2666 (if viper-ex-style-motion
2667 (if (and (eolp) (not (bolp))
2668 ;; a fix for viper-change-to-eol
2669 (not (equal viper-current-state 'insert-state)))
2670 (backward-char 1)
2671 ))))
2674 (defun viper-goto-col (arg)
2675 "Go to ARG's column."
2676 (interactive "P")
2677 (viper-leave-region-active)
2678 (let ((val (viper-p-val arg))
2679 (com (viper-getcom arg))
2680 line-len)
2681 (setq line-len
2682 (viper-chars-in-region
2683 (viper-line-pos 'start) (viper-line-pos 'end)))
2684 (if com (viper-move-marker-locally 'viper-com-point (point)))
2685 (beginning-of-line)
2686 (forward-char (1- (min line-len val)))
2687 (while (> (current-column) (1- val))
2688 (backward-char 1))
2689 (if com (viper-execute-com 'viper-goto-col val com))
2690 (save-excursion
2691 (end-of-line)
2692 (if (> val (current-column)) (error "")))
2696 (defun viper-next-line (arg)
2697 "Go to next line."
2698 (interactive "P")
2699 (viper-leave-region-active)
2700 (let ((val (viper-p-val arg))
2701 (com (viper-getCom arg)))
2702 (if com (viper-move-marker-locally 'viper-com-point (point)))
2703 (next-line val)
2704 (if viper-ex-style-motion
2705 (if (and (eolp) (not (bolp))) (backward-char 1)))
2706 (setq this-command 'next-line)
2707 (if com (viper-execute-com 'viper-next-line val com))))
2709 (defun viper-next-line-at-bol (arg)
2710 "Next line at beginning of line."
2711 (interactive "P")
2712 (viper-leave-region-active)
2713 (save-excursion
2714 (end-of-line)
2715 (if (eobp) (error "Last line in buffer")))
2716 (let ((val (viper-p-val arg))
2717 (com (viper-getCom arg)))
2718 (if com (viper-move-marker-locally 'viper-com-point (point)))
2719 (forward-line val)
2720 (back-to-indentation)
2721 (if com (viper-execute-com 'viper-next-line-at-bol val com))))
2723 (defun viper-previous-line (arg)
2724 "Go to previous line."
2725 (interactive "P")
2726 (viper-leave-region-active)
2727 (let ((val (viper-p-val arg))
2728 (com (viper-getCom arg)))
2729 (if com (viper-move-marker-locally 'viper-com-point (point)))
2730 (previous-line val)
2731 (if viper-ex-style-motion
2732 (if (and (eolp) (not (bolp))) (backward-char 1)))
2733 (setq this-command 'previous-line)
2734 (if com (viper-execute-com 'viper-previous-line val com))))
2737 (defun viper-previous-line-at-bol (arg)
2738 "Previous line at beginning of line."
2739 (interactive "P")
2740 (viper-leave-region-active)
2741 (save-excursion
2742 (beginning-of-line)
2743 (if (bobp) (error "First line in buffer")))
2744 (let ((val (viper-p-val arg))
2745 (com (viper-getCom arg)))
2746 (if com (viper-move-marker-locally 'viper-com-point (point)))
2747 (forward-line (- val))
2748 (back-to-indentation)
2749 (if com (viper-execute-com 'viper-previous-line val com))))
2751 (defun viper-change-to-eol (arg)
2752 "Change to end of line."
2753 (interactive "P")
2754 (viper-goto-eol (cons arg ?c)))
2756 (defun viper-kill-line (arg)
2757 "Delete line."
2758 (interactive "P")
2759 (viper-goto-eol (cons arg ?d)))
2761 (defun viper-erase-line (arg)
2762 "Erase line."
2763 (interactive "P")
2764 (viper-beginning-of-line (cons arg ?d)))
2767 ;;; Moving around
2769 (defun viper-goto-line (arg)
2770 "Go to ARG's line. Without ARG go to end of buffer."
2771 (interactive "P")
2772 (let ((val (viper-P-val arg))
2773 (com (viper-getCom arg)))
2774 (viper-move-marker-locally 'viper-com-point (point))
2775 (viper-deactivate-mark)
2776 (push-mark nil t)
2777 (if (null val)
2778 (goto-char (point-max))
2779 (goto-char (point-min))
2780 (forward-line (1- val)))
2782 ;; positioning is done twice: before and after command execution
2783 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
2784 (back-to-indentation)
2786 (if com (viper-execute-com 'viper-goto-line val com))
2788 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
2789 (back-to-indentation)
2792 ;; Find ARG's occurrence of CHAR on the current line.
2793 ;; If FORWARD then search is forward, otherwise backward. OFFSET is used to
2794 ;; adjust point after search.
2795 (defun viper-find-char (arg char forward offset)
2796 (or (char-or-string-p char) (error ""))
2797 (let ((arg (if forward arg (- arg)))
2798 (cmd (if (eq viper-intermediate-command 'viper-repeat)
2799 (nth 5 viper-d-com)
2800 (viper-array-to-string (this-command-keys))))
2801 point)
2802 (save-excursion
2803 (save-restriction
2804 (if (> arg 0)
2805 (narrow-to-region
2806 ;; forward search begins here
2807 (if (eolp) (error "Command `%s': At end of line" cmd) (point))
2808 ;; forward search ends here
2809 (progn (end-of-line) (point)))
2810 (narrow-to-region
2811 ;; backward search begins from here
2812 (if (bolp)
2813 (error "Command `%s': At beginning of line" cmd) (point))
2814 ;; backward search ends here
2815 (progn (beginning-of-line) (point))))
2816 ;; if arg > 0, point is forwarded before search.
2817 (if (> arg 0) (goto-char (1+ (point-min)))
2818 (goto-char (point-max)))
2819 (if (let ((case-fold-search nil))
2820 (search-forward (char-to-string char) nil 0 arg))
2821 (setq point (point))
2822 (error "Command `%s': `%c' not found" cmd char))))
2823 (goto-char point)
2824 (if (> arg 0)
2825 (backward-char (if offset 2 1))
2826 (forward-char (if offset 1 0)))))
2828 (defun viper-find-char-forward (arg)
2829 "Find char on the line.
2830 If called interactively read the char to find from the terminal, and if
2831 called from viper-repeat, the char last used is used. This behaviour is
2832 controlled by the sign of prefix numeric value."
2833 (interactive "P")
2834 (let ((val (viper-p-val arg))
2835 (com (viper-getcom arg))
2836 (cmd-representation (nth 5 viper-d-com)))
2837 (if (> val 0)
2838 ;; this means that the function was called interactively
2839 (setq viper-f-char (read-char)
2840 viper-f-forward t
2841 viper-f-offset nil)
2842 ;; viper-repeat --- set viper-F-char from command-keys
2843 (setq viper-F-char (if (stringp cmd-representation)
2844 (viper-seq-last-elt cmd-representation)
2845 viper-F-char)
2846 viper-f-char viper-F-char)
2847 (setq val (- val)))
2848 (if com (viper-move-marker-locally 'viper-com-point (point)))
2849 (viper-find-char
2850 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t nil)
2851 (setq val (- val))
2852 (if com
2853 (progn
2854 (setq viper-F-char viper-f-char) ; set new viper-F-char
2855 (forward-char)
2856 (viper-execute-com 'viper-find-char-forward val com)))))
2858 (defun viper-goto-char-forward (arg)
2859 "Go up to char ARG forward on line."
2860 (interactive "P")
2861 (let ((val (viper-p-val arg))
2862 (com (viper-getcom arg))
2863 (cmd-representation (nth 5 viper-d-com)))
2864 (if (> val 0)
2865 ;; this means that the function was called interactively
2866 (setq viper-f-char (read-char)
2867 viper-f-forward t
2868 viper-f-offset t)
2869 ;; viper-repeat --- set viper-F-char from command-keys
2870 (setq viper-F-char (if (stringp cmd-representation)
2871 (viper-seq-last-elt cmd-representation)
2872 viper-F-char)
2873 viper-f-char viper-F-char)
2874 (setq val (- val)))
2875 (if com (viper-move-marker-locally 'viper-com-point (point)))
2876 (viper-find-char
2877 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) t t)
2878 (setq val (- val))
2879 (if com
2880 (progn
2881 (setq viper-F-char viper-f-char) ; set new viper-F-char
2882 (forward-char)
2883 (viper-execute-com 'viper-goto-char-forward val com)))))
2885 (defun viper-find-char-backward (arg)
2886 "Find char ARG on line backward."
2887 (interactive "P")
2888 (let ((val (viper-p-val arg))
2889 (com (viper-getcom arg))
2890 (cmd-representation (nth 5 viper-d-com)))
2891 (if (> val 0)
2892 ;; this means that the function was called interactively
2893 (setq viper-f-char (read-char)
2894 viper-f-forward nil
2895 viper-f-offset nil)
2896 ;; viper-repeat --- set viper-F-char from command-keys
2897 (setq viper-F-char (if (stringp cmd-representation)
2898 (viper-seq-last-elt cmd-representation)
2899 viper-F-char)
2900 viper-f-char viper-F-char)
2901 (setq val (- val)))
2902 (if com (viper-move-marker-locally 'viper-com-point (point)))
2903 (viper-find-char
2904 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil nil)
2905 (setq val (- val))
2906 (if com
2907 (progn
2908 (setq viper-F-char viper-f-char) ; set new viper-F-char
2909 (viper-execute-com 'viper-find-char-backward val com)))))
2911 (defun viper-goto-char-backward (arg)
2912 "Go up to char ARG backward on line."
2913 (interactive "P")
2914 (let ((val (viper-p-val arg))
2915 (com (viper-getcom arg))
2916 (cmd-representation (nth 5 viper-d-com)))
2917 (if (> val 0)
2918 ;; this means that the function was called interactively
2919 (setq viper-f-char (read-char)
2920 viper-f-forward nil
2921 viper-f-offset t)
2922 ;; viper-repeat --- set viper-F-char from command-keys
2923 (setq viper-F-char (if (stringp cmd-representation)
2924 (viper-seq-last-elt cmd-representation)
2925 viper-F-char)
2926 viper-f-char viper-F-char)
2927 (setq val (- val)))
2928 (if com (viper-move-marker-locally 'viper-com-point (point)))
2929 (viper-find-char
2930 val (if (> (viper-p-val arg) 0) viper-f-char viper-F-char) nil t)
2931 (setq val (- val))
2932 (if com
2933 (progn
2934 (setq viper-F-char viper-f-char) ; set new viper-F-char
2935 (viper-execute-com 'viper-goto-char-backward val com)))))
2937 (defun viper-repeat-find (arg)
2938 "Repeat previous find command."
2939 (interactive "P")
2940 (let ((val (viper-p-val arg))
2941 (com (viper-getcom arg)))
2942 (viper-deactivate-mark)
2943 (if com (viper-move-marker-locally 'viper-com-point (point)))
2944 (viper-find-char val viper-f-char viper-f-forward viper-f-offset)
2945 (if com
2946 (progn
2947 (if viper-f-forward (forward-char))
2948 (viper-execute-com 'viper-repeat-find val com)))))
2950 (defun viper-repeat-find-opposite (arg)
2951 "Repeat previous find command in the opposite direction."
2952 (interactive "P")
2953 (let ((val (viper-p-val arg))
2954 (com (viper-getcom arg)))
2955 (viper-deactivate-mark)
2956 (if com (viper-move-marker-locally 'viper-com-point (point)))
2957 (viper-find-char val viper-f-char (not viper-f-forward) viper-f-offset)
2958 (if com
2959 (progn
2960 (if viper-f-forward (forward-char))
2961 (viper-execute-com 'viper-repeat-find-opposite val com)))))
2964 ;; window scrolling etc.
2966 (defun viper-window-top (arg)
2967 "Go to home window line."
2968 (interactive "P")
2969 (let ((val (viper-p-val arg))
2970 (com (viper-getCom arg)))
2971 (if com (viper-move-marker-locally 'viper-com-point (point)))
2972 (push-mark nil t)
2973 (move-to-window-line (1- val))
2975 ;; positioning is done twice: before and after command execution
2976 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
2977 (back-to-indentation)
2979 (if com (viper-execute-com 'viper-window-top val com))
2981 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
2982 (back-to-indentation)
2985 (defun viper-window-middle (arg)
2986 "Go to middle window line."
2987 (interactive "P")
2988 (let ((val (viper-p-val arg))
2989 (com (viper-getCom arg))
2990 lines)
2991 (if com (viper-move-marker-locally 'viper-com-point (point)))
2992 (push-mark nil t)
2993 (if (not (pos-visible-in-window-p (point-max)))
2994 (move-to-window-line (+ (/ (1- (window-height)) 2) (1- val)))
2995 (setq lines (count-lines (window-start) (point-max)))
2996 (move-to-window-line (+ (/ lines 2) (1- val))))
2998 ;; positioning is done twice: before and after command execution
2999 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
3000 (back-to-indentation)
3002 (if com (viper-execute-com 'viper-window-middle val com))
3004 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
3005 (back-to-indentation)
3008 (defun viper-window-bottom (arg)
3009 "Go to last window line."
3010 (interactive "P")
3011 (let ((val (viper-p-val arg))
3012 (com (viper-getCom arg)))
3013 (if com (viper-move-marker-locally 'viper-com-point (point)))
3014 (push-mark nil t)
3015 (move-to-window-line (- val))
3017 ;; positioning is done twice: before and after command execution
3018 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
3019 (back-to-indentation)
3021 (if com (viper-execute-com 'viper-window-bottom val com))
3023 (if (and (eobp) (bolp) (not (bobp))) (forward-line -1))
3024 (back-to-indentation)
3027 (defun viper-line-to-top (arg)
3028 "Put current line on the home line."
3029 (interactive "p")
3030 (recenter (1- arg)))
3032 (defun viper-line-to-middle (arg)
3033 "Put current line on the middle line."
3034 (interactive "p")
3035 (recenter (+ (1- arg) (/ (1- (window-height)) 2))))
3037 (defun viper-line-to-bottom (arg)
3038 "Put current line on the last line."
3039 (interactive "p")
3040 (recenter (- (window-height) (1+ arg))))
3042 ;; If point is within viper-search-scroll-threshold of window top or bottom,
3043 ;; scroll up or down 1/7 of window height, depending on whether we are at the
3044 ;; bottom or at the top of the window. This function is called by viper-search
3045 ;; (which is called from viper-search-forward/backward/next). If the value of
3046 ;; viper-search-scroll-threshold is negative - don't scroll.
3047 (defun viper-adjust-window ()
3048 (let ((win-height (if viper-emacs-p
3049 (1- (window-height)) ; adjust for modeline
3050 (window-displayed-height)))
3051 (pt (point))
3052 at-top-p at-bottom-p
3053 min-scroll direction)
3054 (save-excursion
3055 (move-to-window-line 0) ; top
3056 (setq at-top-p
3057 (<= (count-lines pt (point))
3058 viper-search-scroll-threshold))
3059 (move-to-window-line -1) ; bottom
3060 (setq at-bottom-p
3061 (<= (count-lines pt (point)) viper-search-scroll-threshold))
3063 (cond (at-top-p (setq min-scroll (1- viper-search-scroll-threshold)
3064 direction 1))
3065 (at-bottom-p (setq min-scroll (1+ viper-search-scroll-threshold)
3066 direction -1)))
3067 (if min-scroll
3068 (recenter
3069 (* (max min-scroll (/ win-height 7)) direction)))
3073 ;; paren match
3074 ;; must correct this to only match ( to ) etc. On the other hand
3075 ;; it is good that paren match gets confused, because that way you
3076 ;; catch _all_ imbalances.
3078 (defun viper-paren-match (arg)
3079 "Go to the matching parenthesis."
3080 (interactive "P")
3081 (viper-leave-region-active)
3082 (let ((com (viper-getcom arg))
3083 (parse-sexp-ignore-comments viper-parse-sexp-ignore-comments)
3084 anchor-point)
3085 (if (integerp arg)
3086 (if (or (> arg 99) (< arg 1))
3087 (error "Prefix must be between 1 and 99")
3088 (goto-char
3089 (if (> (point-max) 80000)
3090 (* (/ (point-max) 100) arg)
3091 (/ (* (point-max) arg) 100)))
3092 (back-to-indentation))
3093 (let (beg-lim end-lim)
3094 (if (and (eolp) (not (bolp))) (forward-char -1))
3095 (if (not (looking-at "[][(){}]"))
3096 (setq anchor-point (point)))
3097 (save-excursion
3098 (beginning-of-line)
3099 (setq beg-lim (point))
3100 (end-of-line)
3101 (setq end-lim (point)))
3102 (cond ((re-search-forward "[][(){}]" end-lim t)
3103 (backward-char) )
3104 ((re-search-backward "[][(){}]" beg-lim t))
3106 (error "No matching character on line"))))
3107 (cond ((looking-at "[\(\[{]")
3108 (if com (viper-move-marker-locally 'viper-com-point (point)))
3109 (forward-sexp 1)
3110 (if com
3111 (viper-execute-com 'viper-paren-match nil com)
3112 (backward-char)))
3113 (anchor-point
3114 (if com
3115 (progn
3116 (viper-move-marker-locally 'viper-com-point anchor-point)
3117 (forward-char 1)
3118 (viper-execute-com 'viper-paren-match nil com)
3120 ((looking-at "[])}]")
3121 (forward-char)
3122 (if com (viper-move-marker-locally 'viper-com-point (point)))
3123 (backward-sexp 1)
3124 (if com (viper-execute-com 'viper-paren-match nil com)))
3125 (t (error ""))))))
3127 (defun viper-toggle-parse-sexp-ignore-comments ()
3128 (interactive)
3129 (setq viper-parse-sexp-ignore-comments
3130 (not viper-parse-sexp-ignore-comments))
3131 (princ (format
3132 "From now on, `%%' will %signore parentheses inside comment fields"
3133 (if viper-parse-sexp-ignore-comments "" "NOT "))))
3136 ;; sentence ,paragraph and heading
3138 (defun viper-forward-sentence (arg)
3139 "Forward sentence."
3140 (interactive "P")
3141 (push-mark nil t)
3142 (let ((val (viper-p-val arg))
3143 (com (viper-getcom arg)))
3144 (if com (viper-move-marker-locally 'viper-com-point (point)))
3145 (forward-sentence val)
3146 (if com (viper-execute-com 'viper-forward-sentence nil com))))
3148 (defun viper-backward-sentence (arg)
3149 "Backward sentence."
3150 (interactive "P")
3151 (push-mark nil t)
3152 (let ((val (viper-p-val arg))
3153 (com (viper-getcom arg)))
3154 (if com (viper-move-marker-locally 'viper-com-point (point)))
3155 (backward-sentence val)
3156 (if com (viper-execute-com 'viper-backward-sentence nil com))))
3158 (defun viper-forward-paragraph (arg)
3159 "Forward paragraph."
3160 (interactive "P")
3161 (push-mark nil t)
3162 (let ((val (viper-p-val arg))
3163 (com (viper-getCom arg)))
3164 (if com (viper-move-marker-locally 'viper-com-point (point)))
3165 (forward-paragraph val)
3166 (if com
3167 (progn
3168 (backward-char 1)
3169 (viper-execute-com 'viper-forward-paragraph nil com)))))
3171 (defun viper-backward-paragraph (arg)
3172 "Backward paragraph."
3173 (interactive "P")
3174 (push-mark nil t)
3175 (let ((val (viper-p-val arg))
3176 (com (viper-getCom arg)))
3177 (if com (viper-move-marker-locally 'viper-com-point (point)))
3178 (backward-paragraph val)
3179 (if com
3180 (progn
3181 (forward-char 1)
3182 (viper-execute-com 'viper-backward-paragraph nil com)
3183 (backward-char 1)))))
3185 ;; should be mode-specific etc.
3187 (defun viper-prev-heading (arg)
3188 (interactive "P")
3189 (let ((val (viper-p-val arg))
3190 (com (viper-getCom arg)))
3191 (if com (viper-move-marker-locally 'viper-com-point (point)))
3192 (re-search-backward viper-heading-start nil t val)
3193 (goto-char (match-beginning 0))
3194 (if com (viper-execute-com 'viper-prev-heading nil com))))
3196 (defun viper-heading-end (arg)
3197 (interactive "P")
3198 (let ((val (viper-p-val arg))
3199 (com (viper-getCom arg)))
3200 (if com (viper-move-marker-locally 'viper-com-point (point)))
3201 (re-search-forward viper-heading-end nil t val)
3202 (goto-char (match-beginning 0))
3203 (if com (viper-execute-com 'viper-heading-end nil com))))
3205 (defun viper-next-heading (arg)
3206 (interactive "P")
3207 (let ((val (viper-p-val arg))
3208 (com (viper-getCom arg)))
3209 (if com (viper-move-marker-locally 'viper-com-point (point)))
3210 (end-of-line)
3211 (re-search-forward viper-heading-start nil t val)
3212 (goto-char (match-beginning 0))
3213 (if com (viper-execute-com 'viper-next-heading nil com))))
3216 ;; scrolling
3218 (defun viper-scroll-screen (arg)
3219 "Scroll to next screen."
3220 (interactive "p")
3221 (condition-case nil
3222 (if (> arg 0)
3223 (while (> arg 0)
3224 (scroll-up)
3225 (setq arg (1- arg)))
3226 (while (> 0 arg)
3227 (scroll-down)
3228 (setq arg (1+ arg))))
3229 (error (beep 1)
3230 (if (> arg 0)
3231 (progn
3232 (message "End of buffer")
3233 (goto-char (point-max)))
3234 (message "Beginning of buffer")
3235 (goto-char (point-min))))
3238 (defun viper-scroll-screen-back (arg)
3239 "Scroll to previous screen."
3240 (interactive "p")
3241 (viper-scroll-screen (- arg)))
3243 (defun viper-scroll-down (arg)
3244 "Pull down half screen."
3245 (interactive "P")
3246 (condition-case nil
3247 (if (null arg)
3248 (scroll-down (/ (window-height) 2))
3249 (scroll-down arg))
3250 (error (beep 1)
3251 (message "Beginning of buffer")
3252 (goto-char (point-min)))))
3254 (defun viper-scroll-down-one (arg)
3255 "Scroll up one line."
3256 (interactive "p")
3257 (scroll-down arg))
3259 (defun viper-scroll-up (arg)
3260 "Pull up half screen."
3261 (interactive "P")
3262 (condition-case nil
3263 (if (null arg)
3264 (scroll-up (/ (window-height) 2))
3265 (scroll-up arg))
3266 (error (beep 1)
3267 (message "End of buffer")
3268 (goto-char (point-max)))))
3270 (defun viper-scroll-up-one (arg)
3271 "Scroll down one line."
3272 (interactive "p")
3273 (scroll-up arg))
3276 ;; searching
3278 (defun viper-if-string (prompt)
3279 (if (memq viper-intermediate-command
3280 '(viper-command-argument viper-digit-argument viper-repeat))
3281 (setq viper-this-command-keys (this-command-keys)))
3282 (let ((s (viper-read-string-with-history
3283 prompt
3284 nil ; no initial
3285 'viper-search-history
3286 (car viper-search-history))))
3287 (if (not (string= s ""))
3288 (setq viper-s-string s))))
3291 (defun viper-toggle-search-style (arg)
3292 "Toggle the value of viper-case-fold-search/viper-re-search.
3293 Without prefix argument, will ask which search style to toggle. With prefix
3294 arg 1,toggles viper-case-fold-search; with arg 2 toggles viper-re-search.
3296 Although this function is bound to \\[viper-toggle-search-style], the most
3297 convenient way to use it is to bind `//' to the macro
3298 `1 M-x viper-toggle-search-style' and `///' to
3299 `2 M-x viper-toggle-search-style'. In this way, hitting `//' quickly will
3300 toggle case-fold-search and hitting `/' three times witth toggle regexp
3301 search. Macros are more convenient in this case because they don't affect
3302 the Emacs binding of `/'."
3303 (interactive "P")
3304 (let (msg)
3305 (cond ((or (eq arg 1)
3306 (and (null arg)
3307 (y-or-n-p (format "Search style: '%s'. Want '%s'? "
3308 (if viper-case-fold-search
3309 "case-insensitive" "case-sensitive")
3310 (if viper-case-fold-search
3311 "case-sensitive"
3312 "case-insensitive")))))
3313 (setq viper-case-fold-search (null viper-case-fold-search))
3314 (if viper-case-fold-search
3315 (setq msg "Search becomes case-insensitive")
3316 (setq msg "Search becomes case-sensitive")))
3317 ((or (eq arg 2)
3318 (and (null arg)
3319 (y-or-n-p (format "Search style: '%s'. Want '%s'? "
3320 (if viper-re-search
3321 "regexp-search" "vanilla-search")
3322 (if viper-re-search
3323 "vanilla-search"
3324 "regexp-search")))))
3325 (setq viper-re-search (null viper-re-search))
3326 (if viper-re-search
3327 (setq msg "Search becomes regexp-style")
3328 (setq msg "Search becomes vanilla-style")))
3330 (setq msg "Search style remains unchanged")))
3331 (princ msg t)))
3333 (defun viper-set-searchstyle-toggling-macros (unset)
3334 "Set the macros for toggling the search style in Viper's vi-state.
3335 The macro that toggles case sensitivity is bound to `//', and the one that
3336 toggles regexp search is bound to `///'.
3337 With a prefix argument, this function unsets the macros. "
3338 (interactive "P")
3339 (or noninteractive
3340 (if (not unset)
3341 (progn
3342 ;; toggle case sensitivity in search
3343 (viper-record-kbd-macro
3344 "//" 'vi-state
3345 [1 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
3347 ;; toggle regexp/vanila search
3348 (viper-record-kbd-macro
3349 "///" 'vi-state
3350 [2 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
3352 (if (interactive-p)
3353 (message
3354 "// and /// now toggle case-sensitivity and regexp search")))
3355 (viper-unrecord-kbd-macro "//" 'vi-state)
3356 (sit-for 2)
3357 (viper-unrecord-kbd-macro "///" 'vi-state))))
3360 (defun viper-set-parsing-style-toggling-macro (unset)
3361 "Set `%%%' to be a macro that toggles whether comment fields should be parsed for matching parentheses.
3362 This is used in conjunction with the `%' command.
3364 With a prefix argument, unsets the macro."
3365 (interactive "P")
3366 (or noninteractive
3367 (if (not unset)
3368 (progn
3369 ;; Make %%% toggle parsing comments for matching parentheses
3370 (viper-record-kbd-macro
3371 "%%%" 'vi-state
3372 [(meta x) v i p e r - t o g g l e - p a r s e - s e x p - i g n o r e - c o m m e n t s return]
3374 (if (interactive-p)
3375 (message
3376 "%%%%%% now toggles whether comments should be parsed for matching parentheses")))
3377 (viper-unrecord-kbd-macro "%%%" 'vi-state))))
3380 (defun viper-set-emacs-state-searchstyle-macros (unset &optional arg-majormode)
3381 "Set the macros for toggling the search style in Viper's emacs-state.
3382 The macro that toggles case sensitivity is bound to `//', and the one that
3383 toggles regexp search is bound to `///'.
3384 With a prefix argument, this function unsets the macros.
3385 If the optional prefix argument is non-nil and specifies a valid major mode,
3386 this sets the macros only in the macros in that major mode. Otherwise,
3387 the macros are set in the current major mode.
3388 \(When unsetting the macros, the second argument has no effect.\)"
3389 (interactive "P")
3390 (or noninteractive
3391 (if (not unset)
3392 (progn
3393 ;; toggle case sensitivity in search
3394 (viper-record-kbd-macro
3395 "//" 'emacs-state
3396 [1 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
3397 (or arg-majormode major-mode))
3398 ;; toggle regexp/vanila search
3399 (viper-record-kbd-macro
3400 "///" 'emacs-state
3401 [2 (meta x) v i p e r - t o g g l e - s e a r c h - s t y l e return]
3402 (or arg-majormode major-mode))
3403 (if (interactive-p)
3404 (message
3405 "// and /// now toggle case-sensitivity and regexp search.")))
3406 (viper-unrecord-kbd-macro "//" 'emacs-state)
3407 (sit-for 2)
3408 (viper-unrecord-kbd-macro "///" 'emacs-state))))
3411 (defun viper-search-forward (arg)
3412 "Search a string forward.
3413 ARG is used to find the ARG's occurrence of the string.
3414 Null string will repeat previous search."
3415 (interactive "P")
3416 (let ((val (viper-P-val arg))
3417 (com (viper-getcom arg))
3418 (old-str viper-s-string))
3419 (setq viper-s-forward t)
3420 (viper-if-string "/")
3421 ;; this is not used at present, but may be used later
3422 (if (or (not (equal old-str viper-s-string))
3423 (not (markerp viper-local-search-start-marker))
3424 (not (marker-buffer viper-local-search-start-marker)))
3425 (setq viper-local-search-start-marker (point-marker)))
3426 (viper-search viper-s-string t val)
3427 (if com
3428 (progn
3429 (viper-move-marker-locally 'viper-com-point (mark t))
3430 (viper-execute-com 'viper-search-next val com)))))
3432 (defun viper-search-backward (arg)
3433 "Search a string backward.
3434 ARG is used to find the ARG's occurrence of the string.
3435 Null string will repeat previous search."
3436 (interactive "P")
3437 (let ((val (viper-P-val arg))
3438 (com (viper-getcom arg))
3439 (old-str viper-s-string))
3440 (setq viper-s-forward nil)
3441 (viper-if-string "?")
3442 ;; this is not used at present, but may be used later
3443 (if (or (not (equal old-str viper-s-string))
3444 (not (markerp viper-local-search-start-marker))
3445 (not (marker-buffer viper-local-search-start-marker)))
3446 (setq viper-local-search-start-marker (point-marker)))
3447 (viper-search viper-s-string nil val)
3448 (if com
3449 (progn
3450 (viper-move-marker-locally 'viper-com-point (mark t))
3451 (viper-execute-com 'viper-search-next val com)))))
3454 ;; Search for COUNT's occurrence of STRING.
3455 ;; Search is forward if FORWARD is non-nil, otherwise backward.
3456 ;; INIT-POINT is the position where search is to start.
3457 ;; Arguments:
3458 ;; (STRING FORW COUNT &optional NO-OFFSET INIT-POINT LIMIT FAIL-IF-NOT-FOUND)
3459 (defun viper-search (string forward arg
3460 &optional no-offset init-point fail-if-not-found)
3461 (if (not (equal string ""))
3462 (let ((val (viper-p-val arg))
3463 (com (viper-getcom arg))
3464 (offset (not no-offset))
3465 (case-fold-search viper-case-fold-search)
3466 (start-point (or init-point (point))))
3467 (viper-deactivate-mark)
3468 (if forward
3469 (condition-case nil
3470 (progn
3471 (if offset (viper-forward-char-carefully))
3472 (if viper-re-search
3473 (progn
3474 (re-search-forward string nil nil val)
3475 (re-search-backward string))
3476 (search-forward string nil nil val)
3477 (search-backward string))
3478 (if (not (equal start-point (point)))
3479 (push-mark start-point t)))
3480 (search-failed
3481 (if (and (not fail-if-not-found) viper-search-wrap-around-t)
3482 (progn
3483 (message "Search wrapped around BOTTOM of buffer")
3484 (goto-char (point-min))
3485 (viper-search string forward (cons 1 com) t start-point 'fail)
3486 ;; don't wait in macros
3487 (or executing-kbd-macro
3488 (memq viper-intermediate-command
3489 '(viper-repeat
3490 viper-digit-argument
3491 viper-command-argument))
3492 (sit-for 2))
3493 ;; delete the wrap-around message
3494 (message "")
3496 (goto-char start-point)
3497 (error "`%s': %s not found"
3498 string
3499 (if viper-re-search "Pattern" "String"))
3501 ;; backward
3502 (condition-case nil
3503 (progn
3504 (if viper-re-search
3505 (re-search-backward string nil nil val)
3506 (search-backward string nil nil val))
3507 (if (not (equal start-point (point)))
3508 (push-mark start-point t)))
3509 (search-failed
3510 (if (and (not fail-if-not-found) viper-search-wrap-around-t)
3511 (progn
3512 (message "Search wrapped around TOP of buffer")
3513 (goto-char (point-max))
3514 (viper-search string forward (cons 1 com) t start-point 'fail)
3515 ;; don't wait in macros
3516 (or executing-kbd-macro
3517 (memq viper-intermediate-command
3518 '(viper-repeat
3519 viper-digit-argument
3520 viper-command-argument))
3521 (sit-for 2))
3522 ;; delete the wrap-around message
3523 (message "")
3525 (goto-char start-point)
3526 (error "`%s': %s not found"
3527 string
3528 (if viper-re-search "Pattern" "String"))
3529 ))))
3530 ;; pull up or down if at top/bottom of window
3531 (viper-adjust-window)
3532 ;; highlight the result of search
3533 ;; don't wait and don't highlight in macros
3534 (or executing-kbd-macro
3535 (memq viper-intermediate-command
3536 '(viper-repeat viper-digit-argument viper-command-argument))
3537 (viper-flash-search-pattern))
3540 (defun viper-search-next (arg)
3541 "Repeat previous search."
3542 (interactive "P")
3543 (let ((val (viper-p-val arg))
3544 (com (viper-getcom arg)))
3545 (if (null viper-s-string) (error viper-NoPrevSearch))
3546 (viper-search viper-s-string viper-s-forward arg)
3547 (if com
3548 (progn
3549 (viper-move-marker-locally 'viper-com-point (mark t))
3550 (viper-execute-com 'viper-search-next val com)))))
3552 (defun viper-search-Next (arg)
3553 "Repeat previous search in the reverse direction."
3554 (interactive "P")
3555 (let ((val (viper-p-val arg))
3556 (com (viper-getcom arg)))
3557 (if (null viper-s-string) (error viper-NoPrevSearch))
3558 (viper-search viper-s-string (not viper-s-forward) arg)
3559 (if com
3560 (progn
3561 (viper-move-marker-locally 'viper-com-point (mark t))
3562 (viper-execute-com 'viper-search-Next val com)))))
3565 ;; Search contents of buffer defined by one of Viper's motion commands.
3566 ;; Repeatable via `n' and `N'.
3567 (defun viper-buffer-search-enable (&optional c)
3568 (cond (c (setq viper-buffer-search-char c))
3569 ((null viper-buffer-search-char)
3570 (setq viper-buffer-search-char ?g)))
3571 (define-key viper-vi-basic-map
3572 (char-to-string viper-buffer-search-char) 'viper-command-argument)
3573 (aset viper-exec-array viper-buffer-search-char 'viper-exec-buffer-search)
3574 (setq viper-prefix-commands
3575 (cons viper-buffer-search-char viper-prefix-commands)))
3577 ;; This is a Viper wraper for isearch-forward.
3578 (defun viper-isearch-forward (arg)
3579 "Do incremental search forward."
3580 (interactive "P")
3581 ;; emacs bug workaround
3582 (if (listp arg) (setq arg (car arg)))
3583 (viper-exec-form-in-emacs (list 'isearch-forward arg)))
3585 ;; This is a Viper wraper for isearch-backward."
3586 (defun viper-isearch-backward (arg)
3587 "Do incremental search backward."
3588 (interactive "P")
3589 ;; emacs bug workaround
3590 (if (listp arg) (setq arg (car arg)))
3591 (viper-exec-form-in-emacs (list 'isearch-backward arg)))
3594 ;; visiting and killing files, buffers
3596 (defun viper-switch-to-buffer ()
3597 "Switch to buffer in the current window."
3598 (interactive)
3599 (let (buffer)
3600 (setq buffer
3601 (read-buffer
3602 (format "Switch to buffer in this window \(%s\): "
3603 (buffer-name (other-buffer (current-buffer))))))
3604 (switch-to-buffer buffer)
3607 (defun viper-switch-to-buffer-other-window ()
3608 "Switch to buffer in another window."
3609 (interactive)
3610 (let (buffer)
3611 (setq buffer
3612 (read-buffer
3613 (format "Switch to buffer in another window \(%s\): "
3614 (buffer-name (other-buffer (current-buffer))))))
3615 (switch-to-buffer-other-window buffer)
3618 (defun viper-kill-buffer ()
3619 "Kill a buffer."
3620 (interactive)
3621 (let (buffer buffer-name)
3622 (setq buffer-name
3623 (read-buffer
3624 (format "Kill buffer \(%s\): "
3625 (buffer-name (current-buffer)))))
3626 (setq buffer
3627 (if (null buffer-name)
3628 (current-buffer)
3629 (get-buffer buffer-name)))
3630 (if (null buffer) (error "`%s': No such buffer" buffer-name))
3631 (if (or (not (buffer-modified-p buffer))
3632 (y-or-n-p
3633 (format
3634 "Buffer `%s' is modified, are you sure you want to kill it? "
3635 buffer-name)))
3636 (kill-buffer buffer)
3637 (error "Buffer not killed"))))
3640 (defcustom viper-smart-suffix-list
3641 '("" "tex" "c" "cc" "C" "el" "java" "html" "htm" "pl" "P" "p")
3642 "*List of suffixes that Viper automatically tries to append to filenames ending with a `.'.
3643 This is useful when you the current directory contains files with the same
3644 prefix and many different suffixes. Usually, only one of the suffixes
3645 represents an editable file. However, file completion will stop at the `.'
3646 The smart suffix feature lets you hit RET in such a case, and Viper will
3647 select the appropriate suffix.
3649 Suffixes are tried in the order given and the first suffix for which a
3650 corresponding file exists is selected. If no file exists for any of the
3651 suffixes, the user is asked to confirm.
3653 To turn this feature off, set this variable to nil."
3654 :type '(set string)
3655 :group 'viper)
3657 ;; Try to add suffix to files ending with a `.'
3658 ;; Useful when the user hits RET on a non-completed file name.
3659 (defun viper-file-add-suffix ()
3660 (let ((count 0)
3661 (len (length viper-smart-suffix-list))
3662 (file (buffer-string))
3663 found key cmd suff)
3664 (goto-char (point-max))
3665 (if (and viper-smart-suffix-list (string-match "\\.$" file))
3666 (progn
3667 (while (and (not found) (< count len))
3668 (setq suff (nth count viper-smart-suffix-list)
3669 count (1+ count))
3670 (if (file-exists-p
3671 (format "%s%s" (substitute-in-file-name file) suff))
3672 (progn
3673 (setq found t)
3674 (insert suff))))
3676 (if found
3678 (viper-tmp-insert-at-eob " [Please complete file name]")
3679 (unwind-protect
3680 (while (not (memq cmd
3681 '(exit-minibuffer viper-exit-minibuffer)))
3682 (setq cmd
3683 (key-binding (setq key (read-key-sequence nil))))
3684 (cond ((eq cmd 'self-insert-command)
3685 (if viper-xemacs-p
3686 (insert (events-to-keys key))
3687 (insert key)))
3688 ((memq cmd '(exit-minibuffer viper-exit-minibuffer))
3689 nil)
3690 (t (command-execute cmd)))
3692 ))))
3697 ;; yank and pop
3699 (defsubst viper-yank (text)
3700 "Yank TEXT silently. This works correctly with Emacs's yank-pop command."
3701 (insert text)
3702 (setq this-command 'yank))
3704 (defun viper-put-back (arg)
3705 "Put back after point/below line."
3706 (interactive "P")
3707 (let ((val (viper-p-val arg))
3708 (text (if viper-use-register
3709 (cond ((viper-valid-register viper-use-register '(digit))
3710 (current-kill
3711 (- viper-use-register ?1) 'do-not-rotate))
3712 ((viper-valid-register viper-use-register)
3713 (get-register (downcase viper-use-register)))
3714 (t (error viper-InvalidRegister viper-use-register)))
3715 (current-kill 0))))
3716 (if (null text)
3717 (if viper-use-register
3718 (let ((reg viper-use-register))
3719 (setq viper-use-register nil)
3720 (error viper-EmptyRegister reg))
3721 (error "")))
3722 (setq viper-use-register nil)
3723 (if (viper-end-with-a-newline-p text)
3724 (progn
3725 (end-of-line)
3726 (if (eobp)
3727 (insert "\n")
3728 (forward-line 1))
3729 (beginning-of-line))
3730 (if (not (eolp)) (viper-forward-char-carefully)))
3731 (set-marker (viper-mark-marker) (point) (current-buffer))
3732 (viper-set-destructive-command
3733 (list 'viper-put-back val nil viper-use-register nil nil))
3734 (viper-loop val (viper-yank text)))
3735 ;; Vi puts cursor on the last char when the yanked text doesn't contain a
3736 ;; newline; it leaves the cursor at the beginning when the text contains
3737 ;; a newline
3738 (if (viper-same-line (point) (mark))
3739 (or (= (point) (mark)) (viper-backward-char-carefully))
3740 (exchange-point-and-mark)
3741 (if (bolp)
3742 (back-to-indentation)))
3743 (viper-deactivate-mark))
3745 (defun viper-Put-back (arg)
3746 "Put back at point/above line."
3747 (interactive "P")
3748 (let ((val (viper-p-val arg))
3749 (text (if viper-use-register
3750 (cond ((viper-valid-register viper-use-register '(digit))
3751 (current-kill
3752 (- viper-use-register ?1) 'do-not-rotate))
3753 ((viper-valid-register viper-use-register)
3754 (get-register (downcase viper-use-register)))
3755 (t (error viper-InvalidRegister viper-use-register)))
3756 (current-kill 0))))
3757 (if (null text)
3758 (if viper-use-register
3759 (let ((reg viper-use-register))
3760 (setq viper-use-register nil)
3761 (error viper-EmptyRegister reg))
3762 (error "")))
3763 (setq viper-use-register nil)
3764 (if (viper-end-with-a-newline-p text) (beginning-of-line))
3765 (viper-set-destructive-command
3766 (list 'viper-Put-back val nil viper-use-register nil nil))
3767 (set-marker (viper-mark-marker) (point) (current-buffer))
3768 (viper-loop val (viper-yank text)))
3769 ;; Vi puts cursor on the last char when the yanked text doesn't contain a
3770 ;; newline; it leaves the cursor at the beginning when the text contains
3771 ;; a newline
3772 (if (viper-same-line (point) (mark))
3773 (or (= (point) (mark)) (viper-backward-char-carefully))
3774 (exchange-point-and-mark)
3775 (if (bolp)
3776 (back-to-indentation)))
3777 (viper-deactivate-mark))
3780 ;; Copy region to kill-ring.
3781 ;; If BEG and END do not belong to the same buffer, copy empty region.
3782 (defun viper-copy-region-as-kill (beg end)
3783 (condition-case nil
3784 (copy-region-as-kill beg end)
3785 (error (copy-region-as-kill beg beg))))
3788 (defun viper-delete-char (arg)
3789 "Delete next character."
3790 (interactive "P")
3791 (let ((val (viper-p-val arg))
3792 end-del-pos)
3793 (viper-set-destructive-command
3794 (list 'viper-delete-char val nil nil nil nil))
3795 (if (and viper-ex-style-editing
3796 (> val (viper-chars-in-region (point) (viper-line-pos 'end))))
3797 (setq val (viper-chars-in-region (point) (viper-line-pos 'end))))
3798 (if (and viper-ex-style-motion (eolp))
3799 (if (bolp) (error "") (setq val 0))) ; not bol---simply back 1 ch
3800 (save-excursion
3801 (viper-forward-char-carefully val)
3802 (setq end-del-pos (point)))
3803 (if viper-use-register
3804 (progn
3805 (cond ((viper-valid-register viper-use-register '((Letter)))
3806 (viper-append-to-register
3807 (downcase viper-use-register) (point) end-del-pos))
3808 ((viper-valid-register viper-use-register)
3809 (copy-to-register
3810 viper-use-register (point) end-del-pos nil))
3811 (t (error viper-InvalidRegister viper-use-register)))
3812 (setq viper-use-register nil)))
3814 (delete-char val t)
3815 (if viper-ex-style-motion
3816 (if (and (eolp) (not (bolp))) (backward-char 1)))
3819 (defun viper-delete-backward-char (arg)
3820 "Delete previous character. On reaching beginning of line, stop and beep."
3821 (interactive "P")
3822 (let ((val (viper-p-val arg))
3823 end-del-pos)
3824 (viper-set-destructive-command
3825 (list 'viper-delete-backward-char val nil nil nil nil))
3826 (if (and
3827 viper-ex-style-editing
3828 (> val (viper-chars-in-region (viper-line-pos 'start) (point))))
3829 (setq val (viper-chars-in-region (viper-line-pos 'start) (point))))
3830 (save-excursion
3831 (viper-backward-char-carefully val)
3832 (setq end-del-pos (point)))
3833 (if viper-use-register
3834 (progn
3835 (cond ((viper-valid-register viper-use-register '(Letter))
3836 (viper-append-to-register
3837 (downcase viper-use-register) end-del-pos (point)))
3838 ((viper-valid-register viper-use-register)
3839 (copy-to-register
3840 viper-use-register end-del-pos (point) nil))
3841 (t (error viper-InvalidRegister viper-use-register)))
3842 (setq viper-use-register nil)))
3843 (if (and (bolp) viper-ex-style-editing)
3844 (ding))
3845 (delete-backward-char val t)))
3847 (defun viper-del-backward-char-in-insert ()
3848 "Delete 1 char backwards while in insert mode."
3849 (interactive)
3850 (if (and viper-ex-style-editing (bolp))
3851 (beep 1)
3852 (delete-backward-char 1 t)))
3854 (defun viper-del-backward-char-in-replace ()
3855 "Delete one character in replace mode.
3856 If `viper-delete-backwards-in-replace' is t, then DEL key actually deletes
3857 charecters. If it is nil, then the cursor just moves backwards, similarly
3858 to Vi. The variable `viper-ex-style-editing', if t, doesn't let the
3859 cursor move past the beginning of line."
3860 (interactive)
3861 (cond (viper-delete-backwards-in-replace
3862 (cond ((not (bolp))
3863 (delete-backward-char 1 t))
3864 (viper-ex-style-editing
3865 (beep 1))
3866 ((bobp)
3867 (beep 1))
3869 (delete-backward-char 1 t))))
3870 (viper-ex-style-editing
3871 (if (bolp)
3872 (beep 1)
3873 (backward-char 1)))
3875 (backward-char 1))))
3879 ;; join lines.
3881 (defun viper-join-lines (arg)
3882 "Join this line to next, if ARG is nil. Otherwise, join ARG lines."
3883 (interactive "*P")
3884 (let ((val (viper-P-val arg)))
3885 (viper-set-destructive-command
3886 (list 'viper-join-lines val nil nil nil nil))
3887 (viper-loop (if (null val) 1 (1- val))
3888 (end-of-line)
3889 (if (not (eobp))
3890 (progn
3891 (forward-line 1)
3892 (delete-region (point) (1- (point)))
3893 (fixup-whitespace)
3894 ;; fixup-whitespace sometimes does not leave space
3895 ;; between objects, so we insert it as in Vi
3896 (or (looking-at " ")
3897 (insert " ")
3898 (backward-char 1))
3899 )))))
3902 ;; Replace state
3904 (defun viper-change (beg end)
3905 (if (markerp beg) (setq beg (marker-position beg)))
3906 (if (markerp end) (setq end (marker-position end)))
3907 ;; beg is sometimes (mark t), which may be nil
3908 (or beg (setq beg end))
3910 (viper-set-complex-command-for-undo)
3911 (if viper-use-register
3912 (progn
3913 (copy-to-register viper-use-register beg end nil)
3914 (setq viper-use-register nil)))
3915 (viper-set-replace-overlay beg end)
3916 (setq last-command nil) ; separate repl text from prev kills
3918 (if (= (viper-replace-start) (point-max))
3919 (error "End of buffer"))
3921 (setq viper-last-replace-region
3922 (buffer-substring (viper-replace-start)
3923 (viper-replace-end)))
3925 ;; protect against error while inserting "@" and other disasters
3926 ;; (e.g., read-only buff)
3927 (condition-case conds
3928 (if (or viper-allow-multiline-replace-regions
3929 (viper-same-line (viper-replace-start)
3930 (viper-replace-end)))
3931 (progn
3932 ;; tabs cause problems in replace, so untabify
3933 (goto-char (viper-replace-end))
3934 (insert-before-markers "@") ; put placeholder after the TAB
3935 (untabify (viper-replace-start) (point))
3936 ;; del @, don't put on kill ring
3937 (delete-backward-char 1)
3939 (viper-set-replace-overlay-glyphs
3940 viper-replace-region-start-delimiter
3941 viper-replace-region-end-delimiter)
3942 ;; this move takes care of the last posn in the overlay, which
3943 ;; has to be shifted because of insert. We can't simply insert
3944 ;; "$" before-markers because then overlay-start will shift the
3945 ;; beginning of the overlay in case we are replacing a single
3946 ;; character. This fixes the bug with `s' and `cl' commands.
3947 (viper-move-replace-overlay (viper-replace-start) (point))
3948 (goto-char (viper-replace-start))
3949 (viper-change-state-to-replace t))
3950 (kill-region (viper-replace-start)
3951 (viper-replace-end))
3952 (viper-hide-replace-overlay)
3953 (viper-change-state-to-insert))
3954 (error ;; make sure that the overlay doesn't stay.
3955 ;; go back to the original point
3956 (goto-char (viper-replace-start))
3957 (viper-hide-replace-overlay)
3958 (viper-message-conditions conds))))
3961 (defun viper-change-subr (beg end)
3962 ;; beg is sometimes (mark t), which may be nil
3963 (or beg (setq beg end))
3964 (if viper-use-register
3965 (progn
3966 (copy-to-register viper-use-register beg end nil)
3967 (setq viper-use-register nil)))
3968 (kill-region beg end)
3969 (setq this-command 'viper-change)
3970 (viper-yank-last-insertion))
3972 (defun viper-toggle-case (arg)
3973 "Toggle character case."
3974 (interactive "P")
3975 (let ((val (viper-p-val arg)) (c))
3976 (viper-set-destructive-command
3977 (list 'viper-toggle-case val nil nil nil nil))
3978 (while (> val 0)
3979 (setq c (following-char))
3980 (delete-char 1 nil)
3981 (if (eq c (upcase c))
3982 (insert-char (downcase c) 1)
3983 (insert-char (upcase c) 1))
3984 (if (eolp) (backward-char 1))
3985 (setq val (1- val)))))
3988 ;; query replace
3990 (defun viper-query-replace ()
3991 "Query replace.
3992 If a null string is suplied as the string to be replaced,
3993 the query replace mode will toggle between string replace
3994 and regexp replace."
3995 (interactive)
3996 (let (str)
3997 (setq str (viper-read-string-with-history
3998 (if viper-re-query-replace "Query replace regexp: "
3999 "Query replace: ")
4000 nil ; no initial
4001 'viper-replace1-history
4002 (car viper-replace1-history) ; default
4004 (if (string= str "")
4005 (progn
4006 (setq viper-re-query-replace (not viper-re-query-replace))
4007 (message "Query replace mode changed to %s"
4008 (if viper-re-query-replace "regexp replace"
4009 "string replace")))
4010 (if viper-re-query-replace
4011 (query-replace-regexp
4013 (viper-read-string-with-history
4014 (format "Query replace regexp `%s' with: " str)
4015 nil ; no initial
4016 'viper-replace1-history
4017 (car viper-replace1-history) ; default
4019 (query-replace
4021 (viper-read-string-with-history
4022 (format "Query replace `%s' with: " str)
4023 nil ; no initial
4024 'viper-replace1-history
4025 (car viper-replace1-history) ; default
4026 ))))))
4029 ;; marking
4031 (defun viper-mark-beginning-of-buffer ()
4032 "Mark beginning of buffer."
4033 (interactive)
4034 (push-mark (point))
4035 (goto-char (point-min))
4036 (exchange-point-and-mark)
4037 (message "Mark set at the beginning of buffer"))
4039 (defun viper-mark-end-of-buffer ()
4040 "Mark end of buffer."
4041 (interactive)
4042 (push-mark (point))
4043 (goto-char (point-max))
4044 (exchange-point-and-mark)
4045 (message "Mark set at the end of buffer"))
4047 (defun viper-mark-point ()
4048 "Set mark at point of buffer."
4049 (interactive)
4050 (let ((char (read-char)))
4051 (cond ((and (<= ?a char) (<= char ?z))
4052 (point-to-register (1+ (- char ?a))))
4053 ((= char ?<) (viper-mark-beginning-of-buffer))
4054 ((= char ?>) (viper-mark-end-of-buffer))
4055 ((= char ?.) (viper-set-mark-if-necessary))
4056 ((= char ?,) (viper-cycle-through-mark-ring))
4057 ((= char ?D) (mark-defun))
4058 (t (error ""))
4061 ;; Algorithm: If first invocation of this command save mark on ring, goto
4062 ;; mark, M0, and pop the most recent elt from the mark ring into mark,
4063 ;; making it into the new mark, M1.
4064 ;; Push this mark back and set mark to the original point position, p1.
4065 ;; So, if you hit '' or `` then you can return to p1.
4067 ;; If repeated command, pop top elt from the ring into mark and
4068 ;; jump there. This forgets the position, p1, and puts M1 back into mark.
4069 ;; Then we save the current pos, which is M0, jump to M1 and pop M2 from
4070 ;; the ring into mark. Push M2 back on the ring and set mark to M0.
4071 ;; etc.
4072 (defun viper-cycle-through-mark-ring ()
4073 "Visit previous locations on the mark ring.
4074 One can use `` and '' to temporarily jump 1 step back."
4075 (let* ((sv-pt (point)))
4076 ;; if repeated `m,' command, pop the previously saved mark.
4077 ;; Prev saved mark is actually prev saved point. It is used if the
4078 ;; user types `` or '' and is discarded
4079 ;; from the mark ring by the next `m,' command.
4080 ;; In any case, go to the previous or previously saved mark.
4081 ;; Then push the current mark (popped off the ring) and set current
4082 ;; point to be the mark. Current pt as mark is discarded by the next
4083 ;; m, command.
4084 (if (eq last-command 'viper-cycle-through-mark-ring)
4086 ;; save current mark if the first iteration
4087 (setq mark-ring (delete (viper-mark-marker) mark-ring))
4088 (if (mark t)
4089 (push-mark (mark t) t)) )
4090 (pop-mark)
4091 (set-mark-command 1)
4092 ;; don't duplicate mark on the ring
4093 (setq mark-ring (delete (viper-mark-marker) mark-ring))
4094 (push-mark sv-pt t)
4095 (viper-deactivate-mark)
4096 (setq this-command 'viper-cycle-through-mark-ring)
4100 (defun viper-goto-mark (arg)
4101 "Go to mark."
4102 (interactive "P")
4103 (let ((char (read-char))
4104 (com (viper-getcom arg)))
4105 (viper-goto-mark-subr char com nil)))
4107 (defun viper-goto-mark-and-skip-white (arg)
4108 "Go to mark and skip to first non-white character on line."
4109 (interactive "P")
4110 (let ((char (read-char))
4111 (com (viper-getCom arg)))
4112 (viper-goto-mark-subr char com t)))
4114 (defun viper-goto-mark-subr (char com skip-white)
4115 (if (eobp)
4116 (if (bobp)
4117 (error "Empty buffer")
4118 (backward-char 1)))
4119 (cond ((viper-valid-register char '(letter))
4120 (let* ((buff (current-buffer))
4121 (reg (1+ (- char ?a)))
4122 (text-marker (get-register reg)))
4123 (if com (viper-move-marker-locally 'viper-com-point (point)))
4124 (if (not (viper-valid-marker text-marker))
4125 (error viper-EmptyTextmarker char))
4126 (if (and (viper-same-line (point) viper-last-jump)
4127 (= (point) viper-last-jump-ignore))
4128 (push-mark viper-last-jump t)
4129 (push-mark nil t)) ; no msg
4130 (viper-register-to-point reg)
4131 (setq viper-last-jump (point-marker))
4132 (cond (skip-white
4133 (back-to-indentation)
4134 (setq viper-last-jump-ignore (point))))
4135 (if com
4136 (if (equal buff (current-buffer))
4137 (viper-execute-com (if skip-white
4138 'viper-goto-mark-and-skip-white
4139 'viper-goto-mark)
4140 nil com)
4141 (switch-to-buffer buff)
4142 (goto-char viper-com-point)
4143 (viper-change-state-to-vi)
4144 (error "")))))
4145 ((and (not skip-white) (= char ?`))
4146 (if com (viper-move-marker-locally 'viper-com-point (point)))
4147 (if (and (viper-same-line (point) viper-last-jump)
4148 (= (point) viper-last-jump-ignore))
4149 (goto-char viper-last-jump))
4150 (if (null (mark t)) (error "Mark is not set in this buffer"))
4151 (if (= (point) (mark t)) (pop-mark))
4152 (exchange-point-and-mark)
4153 (setq viper-last-jump (point-marker)
4154 viper-last-jump-ignore 0)
4155 (if com (viper-execute-com 'viper-goto-mark nil com)))
4156 ((and skip-white (= char ?'))
4157 (if com (viper-move-marker-locally 'viper-com-point (point)))
4158 (if (and (viper-same-line (point) viper-last-jump)
4159 (= (point) viper-last-jump-ignore))
4160 (goto-char viper-last-jump))
4161 (if (= (point) (mark t)) (pop-mark))
4162 (exchange-point-and-mark)
4163 (setq viper-last-jump (point))
4164 (back-to-indentation)
4165 (setq viper-last-jump-ignore (point))
4166 (if com (viper-execute-com 'viper-goto-mark-and-skip-white nil com)))
4167 (t (error viper-InvalidTextmarker char))))
4169 (defun viper-insert-tab ()
4170 (interactive)
4171 (insert-tab))
4173 (defun viper-exchange-point-and-mark ()
4174 (interactive)
4175 (exchange-point-and-mark)
4176 (back-to-indentation))
4178 ;; Input Mode Indentation
4180 ;; Returns t, if the string before point matches the regexp STR.
4181 (defsubst viper-looking-back (str)
4182 (and (save-excursion (re-search-backward str nil t))
4183 (= (point) (match-end 0))))
4186 (defun viper-forward-indent ()
4187 "Indent forward -- `C-t' in Vi."
4188 (interactive)
4189 (setq viper-cted t)
4190 (indent-to (+ (current-column) viper-shift-width)))
4192 (defun viper-backward-indent ()
4193 "Backtab, C-d in VI"
4194 (interactive)
4195 (if viper-cted
4196 (let ((p (point)) (c (current-column)) bol (indent t))
4197 (if (viper-looking-back "[0^]")
4198 (progn
4199 (if (eq ?^ (preceding-char))
4200 (setq viper-preserve-indent t))
4201 (delete-backward-char 1)
4202 (setq p (point))
4203 (setq indent nil)))
4204 (save-excursion
4205 (beginning-of-line)
4206 (setq bol (point)))
4207 (if (re-search-backward "[^ \t]" bol 1) (forward-char))
4208 (delete-region (point) p)
4209 (if indent
4210 (indent-to (- c viper-shift-width)))
4211 (if (or (bolp) (viper-looking-back "[^ \t]"))
4212 (setq viper-cted nil)))))
4214 (defun viper-autoindent ()
4215 "Auto Indentation, Vi-style."
4216 (interactive)
4217 (let ((col (current-indentation)))
4218 (if abbrev-mode (expand-abbrev))
4219 (if viper-preserve-indent
4220 (setq viper-preserve-indent nil)
4221 (setq viper-current-indent col))
4222 ;; don't leave whitespace lines around
4223 (if (memq last-command
4224 '(viper-autoindent
4225 viper-open-line viper-Open-line
4226 viper-replace-state-exit-cmd))
4227 (indent-to-left-margin))
4228 ;; use \n instead of newline, or else <Return> will move the insert point
4229 ;;(newline 1)
4230 (insert "\n")
4231 (if viper-auto-indent
4232 (progn
4233 (setq viper-cted t)
4234 (if (and viper-electric-mode
4235 (not
4236 (memq major-mode '(fundamental-mode
4237 text-mode
4238 paragraph-indent-text-mode ))))
4239 (indent-according-to-mode)
4240 (indent-to viper-current-indent))
4245 ;; Viewing registers
4247 (defun viper-ket-function (arg)
4248 "Function called by \], the ket. View registers and call \]\]."
4249 (interactive "P")
4250 (let ((reg (read-char)))
4251 (cond ((viper-valid-register reg '(letter Letter))
4252 (view-register (downcase reg)))
4253 ((viper-valid-register reg '(digit))
4254 (let ((text (current-kill (- reg ?1) 'do-not-rotate)))
4255 (save-excursion
4256 (set-buffer (get-buffer-create "*Output*"))
4257 (delete-region (point-min) (point-max))
4258 (insert (format "Register %c contains the string:\n" reg))
4259 (insert text)
4260 (goto-char (point-min)))
4261 (display-buffer "*Output*")))
4262 ((= ?\] reg)
4263 (viper-next-heading arg))
4264 (t (error
4265 viper-InvalidRegister reg)))))
4267 (defun viper-brac-function (arg)
4268 "Function called by \[, the brac. View textmarkers and call \[\["
4269 (interactive "P")
4270 (let ((reg (read-char)))
4271 (cond ((= ?\[ reg)
4272 (viper-prev-heading arg))
4273 ((= ?\] reg)
4274 (viper-heading-end arg))
4275 ((viper-valid-register reg '(letter))
4276 (let* ((val (get-register (1+ (- reg ?a))))
4277 (buf (if (not val)
4278 (error viper-EmptyTextmarker reg)
4279 (marker-buffer val)))
4280 (pos (marker-position val))
4281 line-no text (s pos) (e pos))
4282 (save-excursion
4283 (set-buffer (get-buffer-create "*Output*"))
4284 (delete-region (point-min) (point-max))
4285 (if (and buf pos)
4286 (progn
4287 (save-excursion
4288 (set-buffer buf)
4289 (setq line-no (1+ (count-lines (point-min) val)))
4290 (goto-char pos)
4291 (beginning-of-line)
4292 (if (re-search-backward "[^ \t]" nil t)
4293 (progn
4294 (beginning-of-line)
4295 (setq s (point))))
4296 (goto-char pos)
4297 (forward-line 1)
4298 (if (re-search-forward "[^ \t]" nil t)
4299 (progn
4300 (end-of-line)
4301 (setq e (point))))
4302 (setq text (buffer-substring s e))
4303 (setq text (format "%s<%c>%s"
4304 (substring text 0 (- pos s))
4305 reg (substring text (- pos s)))))
4306 (insert
4307 (format
4308 "Textmarker `%c' is in buffer `%s' at line %d.\n"
4309 reg (buffer-name buf) line-no))
4310 (insert (format "Here is some text around %c:\n\n %s"
4311 reg text)))
4312 (insert (format viper-EmptyTextmarker reg)))
4313 (goto-char (point-min)))
4314 (display-buffer "*Output*")))
4315 (t (error viper-InvalidTextmarker reg)))))
4319 ;; commands in insertion mode
4321 (defun viper-delete-backward-word (arg)
4322 "Delete previous word."
4323 (interactive "p")
4324 (save-excursion
4325 (push-mark nil t)
4326 (backward-word arg)
4327 (delete-region (point) (mark t))
4328 (pop-mark)))
4331 (defun viper-set-expert-level (&optional dont-change-unless)
4332 "Sets the expert level for a Viper user.
4333 Can be called interactively to change (temporarily or permanently) the
4334 current expert level.
4336 The optional argument DONT-CHANGE-UNLESS, if not nil, says that
4337 the level should not be changed, unless its current value is
4338 meaningless (i.e., not one of 1,2,3,4,5).
4340 User level determines the setting of Viper variables that are most
4341 sensitive for VI-style look-and-feel."
4343 (interactive)
4345 (if (not (natnump viper-expert-level)) (setq viper-expert-level 0))
4347 (save-window-excursion
4348 (delete-other-windows)
4349 ;; if 0 < viper-expert-level < viper-max-expert-level
4350 ;; & dont-change-unless = t -- use it; else ask
4351 (viper-ask-level dont-change-unless))
4353 (setq viper-always t
4354 viper-ex-style-motion t
4355 viper-ex-style-editing t
4356 viper-want-ctl-h-help nil)
4358 (cond ((eq viper-expert-level 1) ; novice or beginner
4359 (global-set-key ; in emacs-state
4360 viper-toggle-key
4361 (if (viper-window-display-p) 'viper-iconify 'suspend-emacs))
4362 (setq viper-no-multiple-ESC t
4363 viper-re-search t
4364 viper-vi-style-in-minibuffer t
4365 viper-search-wrap-around-t t
4366 viper-electric-mode nil
4367 viper-want-emacs-keys-in-vi nil
4368 viper-want-emacs-keys-in-insert nil))
4370 ((and (> viper-expert-level 1) (< viper-expert-level 5))
4371 ;; intermediate to guru
4372 (setq viper-no-multiple-ESC (if (viper-window-display-p)
4373 t 'twice)
4374 viper-electric-mode t
4375 viper-want-emacs-keys-in-vi t
4376 viper-want-emacs-keys-in-insert (> viper-expert-level 2))
4378 (if (eq viper-expert-level 4) ; respect user's ex-style motion
4379 ; and viper-no-multiple-ESC
4380 (progn
4381 (setq-default
4382 viper-ex-style-editing
4383 (viper-standard-value 'viper-ex-style-editing)
4384 viper-ex-style-motion
4385 (viper-standard-value 'viper-ex-style-motion))
4386 (setq viper-ex-style-motion
4387 (viper-standard-value 'viper-ex-style-motion)
4388 viper-ex-style-editing
4389 (viper-standard-value 'viper-ex-style-editing)
4390 viper-re-search
4391 (viper-standard-value 'viper-re-search)
4392 viper-no-multiple-ESC
4393 (viper-standard-value 'viper-no-multiple-ESC)))))
4395 ;; A wizard!!
4396 ;; Ideally, if 5 is selected, a buffer should pop up to let the
4397 ;; user toggle the values of variables.
4398 (t (setq-default viper-ex-style-editing
4399 (viper-standard-value 'viper-ex-style-editing)
4400 viper-ex-style-motion
4401 (viper-standard-value 'viper-ex-style-motion))
4402 (setq viper-want-ctl-h-help
4403 (viper-standard-value 'viper-want-ctl-h-help)
4404 viper-always
4405 (viper-standard-value 'viper-always)
4406 viper-no-multiple-ESC
4407 (viper-standard-value 'viper-no-multiple-ESC)
4408 viper-ex-style-motion
4409 (viper-standard-value 'viper-ex-style-motion)
4410 viper-ex-style-editing
4411 (viper-standard-value 'viper-ex-style-editing)
4412 viper-re-search
4413 (viper-standard-value 'viper-re-search)
4414 viper-electric-mode
4415 (viper-standard-value 'viper-electric-mode)
4416 viper-want-emacs-keys-in-vi
4417 (viper-standard-value 'viper-want-emacs-keys-in-vi)
4418 viper-want-emacs-keys-in-insert
4419 (viper-standard-value 'viper-want-emacs-keys-in-insert))))
4421 (viper-set-mode-vars-for viper-current-state)
4422 (if (or viper-always
4423 (and (> viper-expert-level 0) (> 5 viper-expert-level)))
4424 (viper-set-hooks)))
4426 ;; Ask user expert level.
4427 (defun viper-ask-level (dont-change-unless)
4428 (let ((ask-buffer " *viper-ask-level*")
4429 level-changed repeated)
4430 (save-window-excursion
4431 (switch-to-buffer ask-buffer)
4433 (while (or (> viper-expert-level viper-max-expert-level)
4434 (< viper-expert-level 1)
4435 (null dont-change-unless))
4436 (erase-buffer)
4437 (if repeated
4438 (progn
4439 (message "Invalid user level")
4440 (beep 1))
4441 (setq repeated t))
4442 (setq dont-change-unless t
4443 level-changed t)
4444 (insert "
4445 Please specify your level of familiarity with the venomous VI PERil
4446 (and the VI Plan for Emacs Rescue).
4447 You can change it at any time by typing `M-x viper-set-expert-level RET'
4449 1 -- BEGINNER: Almost all Emacs features are suppressed.
4450 Feels almost like straight Vi. File name completion and
4451 command history in the minibuffer are thrown in as a bonus.
4452 To use Emacs productively, you must reach level 3 or higher.
4453 2 -- MASTER: C-c now has its standard Emacs meaning in Vi command state,
4454 so most Emacs commands can be used when Viper is in Vi state.
4455 Good progress---you are well on the way to level 3!
4456 3 -- GRAND MASTER: Like 3, but most Emacs commands are available also
4457 in Viper's insert state.
4458 4 -- GURU: Like 3, but user settings are respected for viper-no-multiple-ESC,
4459 viper-ex-style-motion, viper-ex-style-editing, and
4460 viper-re-search variables. Adjust these settings to your taste.
4461 5 -- WIZARD: Like 4, but user settings are also respected for viper-always,
4462 viper-electric-mode, viper-want-ctl-h-help, viper-want-emacs-keys-in-vi,
4463 and viper-want-emacs-keys-in-insert. Adjust these to your taste.
4465 Please, specify your level now: ")
4467 (setq viper-expert-level (- (viper-read-char-exclusive) ?0))
4468 ) ; end while
4470 ;; tell the user if level was changed
4471 (and level-changed
4472 (progn
4473 (insert
4474 (format "\n\n\n\n\n\t\tYou have selected user level %d"
4475 viper-expert-level))
4476 (if (y-or-n-p "Do you wish to make this change permanent? ")
4477 ;; save the setting for viper-expert-level
4478 (viper-save-setting
4479 'viper-expert-level
4480 (format "Saving user level %d ..." viper-expert-level)
4481 viper-custom-file-name))
4483 (bury-buffer) ; remove ask-buffer from screen
4484 (message "")
4488 (defun viper-nil ()
4489 (interactive)
4490 (beep 1))
4493 ;; if ENFORCE-BUFFER is not nil, error if CHAR is a marker in another buffer
4494 (defun viper-register-to-point (char &optional enforce-buffer)
4495 "Like jump-to-register, but switches to another buffer in another window."
4496 (interactive "cViper register to point: ")
4497 (let ((val (get-register char)))
4498 (cond
4499 ((and (fboundp 'frame-configuration-p)
4500 (frame-configuration-p val))
4501 (set-frame-configuration val))
4502 ((window-configuration-p val)
4503 (set-window-configuration val))
4504 ((viper-valid-marker val)
4505 (if (and enforce-buffer
4506 (not (equal (current-buffer) (marker-buffer val))))
4507 (error (concat viper-EmptyTextmarker " in this buffer")
4508 (1- (+ char ?a))))
4509 (pop-to-buffer (marker-buffer val))
4510 (goto-char val))
4511 ((and (consp val) (eq (car val) 'file))
4512 (find-file (cdr val)))
4514 (error viper-EmptyTextmarker (1- (+ char ?a)))))))
4517 (defun viper-save-kill-buffer ()
4518 "Save then kill current buffer. "
4519 (interactive)
4520 (if (< viper-expert-level 2)
4521 (save-buffers-kill-emacs)
4522 (save-buffer)
4523 (kill-buffer (current-buffer))))
4527 ;;; Bug Report
4529 (defun viper-submit-report ()
4530 "Submit bug report on Viper."
4531 (interactive)
4532 (let ((reporter-prompt-for-summary-p t)
4533 (viper-device-type (viper-device-type))
4534 color-display-p frame-parameters
4535 minibuffer-emacs-face minibuffer-vi-face minibuffer-insert-face
4536 varlist salutation window-config)
4538 ;; If mode info is needed, add variable to `let' and then set it below,
4539 ;; like we did with color-display-p.
4540 (setq color-display-p (if (viper-window-display-p)
4541 (viper-color-display-p)
4542 'non-x)
4543 minibuffer-vi-face (if (viper-has-face-support-p)
4544 (viper-get-face viper-minibuffer-vi-face)
4545 'non-x)
4546 minibuffer-insert-face (if (viper-has-face-support-p)
4547 (viper-get-face
4548 viper-minibuffer-insert-face)
4549 'non-x)
4550 minibuffer-emacs-face (if (viper-has-face-support-p)
4551 (viper-get-face
4552 viper-minibuffer-emacs-face)
4553 'non-x)
4554 frame-parameters (if (fboundp 'frame-parameters)
4555 (frame-parameters (selected-frame))))
4557 (setq varlist (list 'viper-vi-minibuffer-minor-mode
4558 'viper-insert-minibuffer-minor-mode
4559 'viper-vi-intercept-minor-mode
4560 'viper-vi-local-user-minor-mode
4561 'viper-vi-kbd-minor-mode
4562 'viper-vi-global-user-minor-mode
4563 'viper-vi-state-modifier-minor-mode
4564 'viper-vi-diehard-minor-mode
4565 'viper-vi-basic-minor-mode
4566 'viper-replace-minor-mode
4567 'viper-insert-intercept-minor-mode
4568 'viper-insert-local-user-minor-mode
4569 'viper-insert-kbd-minor-mode
4570 'viper-insert-global-user-minor-mode
4571 'viper-insert-state-modifier-minor-mode
4572 'viper-insert-diehard-minor-mode
4573 'viper-insert-basic-minor-mode
4574 'viper-emacs-intercept-minor-mode
4575 'viper-emacs-local-user-minor-mode
4576 'viper-emacs-kbd-minor-mode
4577 'viper-emacs-global-user-minor-mode
4578 'viper-emacs-state-modifier-minor-mode
4579 'viper-automatic-iso-accents
4580 'viper-special-input-method
4581 'viper-want-emacs-keys-in-insert
4582 'viper-want-emacs-keys-in-vi
4583 'viper-keep-point-on-undo
4584 'viper-no-multiple-ESC
4585 'viper-electric-mode
4586 'viper-ESC-key
4587 'viper-want-ctl-h-help
4588 'viper-ex-style-editing
4589 'viper-delete-backwards-in-replace
4590 'viper-vi-style-in-minibuffer
4591 'viper-vi-state-hook
4592 'viper-insert-state-hook
4593 'viper-replace-state-hook
4594 'viper-emacs-state-hook
4595 'ex-cycle-other-window
4596 'ex-cycle-through-non-files
4597 'viper-expert-level
4598 'major-mode
4599 'viper-device-type
4600 'color-display-p
4601 'frame-parameters
4602 'minibuffer-vi-face
4603 'minibuffer-insert-face
4604 'minibuffer-emacs-face
4606 (setq salutation "
4607 Congratulations! You may have unearthed a bug in Viper!
4608 Please mail a concise, accurate summary of the problem to the address above.
4610 -------------------------------------------------------------------")
4611 (setq window-config (current-window-configuration))
4612 (with-output-to-temp-buffer " *viper-info*"
4613 (switch-to-buffer " *viper-info*")
4614 (delete-other-windows)
4615 (princ "
4616 PLEASE FOLLOW THESE PROCEDURES
4617 ------------------------------
4619 Before reporting a bug, please verify that it is related to Viper, and is
4620 not cause by other packages you are using.
4622 Don't report compilation warnings, unless you are certain that there is a
4623 problem. These warnings are normal and unavoidable.
4625 Please note that users should not modify variables and keymaps other than
4626 those advertised in the manual. Such `customization' is likely to crash
4627 Viper, as it would any other improperly customized Emacs package.
4629 If you are reporting an error message received while executing one of the
4630 Viper commands, type:
4632 M-x set-variable <Return> debug-on-error <Return> t <Return>
4634 Then reproduce the error. The above command will cause Emacs to produce a
4635 back trace of the execution that leads to the error. Please include this
4636 trace in your bug report.
4638 If you believe that one of Viper's commands goes into an infinite loop
4639 \(e.g., Emacs freezes\), type:
4641 M-x set-variable <Return> debug-on-quit <Return> t <Return>
4643 Then reproduce the problem. Wait for a few seconds, then type C-g to abort
4644 the current command. Include the resulting back trace in the bug report.
4646 Mail anyway (y or n)? ")
4647 (if (y-or-n-p "Mail anyway? ")
4649 (set-window-configuration window-config)
4650 (error "Bug report aborted")))
4652 (require 'reporter)
4653 (set-window-configuration window-config)
4655 (reporter-submit-bug-report "kifer@cs.sunysb.edu"
4656 (viper-version)
4657 varlist
4658 nil 'delete-other-windows
4659 salutation)
4665 ;; Smoothes out the difference between Emacs' unread-command-events
4666 ;; and XEmacs unread-command-event. Arg is a character, an event, a list of
4667 ;; events or a sequence of keys.
4669 ;; Due to the way unread-command-events in Emacs (not XEmacs), a non-event
4670 ;; symbol in unread-command-events list may cause Emacs to turn this symbol
4671 ;; into an event. Below, we delete nil from event lists, since nil is the most
4672 ;; common symbol that might appear in this wrong context.
4673 (defun viper-set-unread-command-events (arg)
4674 (if viper-emacs-p
4675 (setq
4676 unread-command-events
4677 (let ((new-events
4678 (cond ((eventp arg) (list arg))
4679 ((listp arg) arg)
4680 ((sequencep arg)
4681 (listify-key-sequence arg))
4682 (t (error
4683 "viper-set-unread-command-events: Invalid argument, %S"
4684 arg)))))
4685 (if (not (eventp nil))
4686 (setq new-events (delq nil new-events)))
4687 (append new-events unread-command-events)))
4688 ;; XEmacs
4689 (setq
4690 unread-command-events
4691 (append
4692 (cond ((viper-characterp arg) (list (character-to-event arg)))
4693 ((eventp arg) (list arg))
4694 ((stringp arg) (mapcar 'character-to-event arg))
4695 ((vectorp arg) (append arg nil)) ; turn into list
4696 ((listp arg) (viper-eventify-list-xemacs arg))
4697 (t (error
4698 "viper-set-unread-command-events: Invalid argument, %S" arg)))
4699 unread-command-events))))
4701 ;; list is assumed to be a list of events of characters
4702 (defun viper-eventify-list-xemacs (lis)
4703 (mapcar
4704 (function (lambda (elt)
4705 (cond ((viper-characterp elt) (character-to-event elt))
4706 ((eventp elt) elt)
4707 (t (error
4708 "viper-eventify-list-xemacs: can't convert to event, %S"
4709 elt)))))
4710 lis))
4714 ;;; viper-cmd.el ends here