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