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