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