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