Merge from emacs-24; up to 2012-12-29T12:57:49Z!fgallina@gnu.org
[bpt/emacs.git] / lisp / emulation / vi.el
CommitLineData
6a05d05f 1;;; vi.el --- major mode for emulating "vi" editor under GNU Emacs
d501f516 2
ffc30f4f
SM
3;; This file is in the public domain because the authors distributed it
4;; without a copyright notice before the US signed the Bern Convention.
f2d3ddb0 5
6a05d05f
PJ
6;; This file is part of GNU Emacs.
7
d46bac56
ER
8;; Author: Neal Ziring <nz@rsch.wisc.edu>
9;; Felix S. T. Wu <wu@crys.wisc.edu>
6251ee24 10;; Keywords: emulations
d46bac56 11
6a05d05f 12;;; Commentary:
d46bac56 13
ffc30f4f
SM
14;; Originally written by : seismo!wucs!nz@rsch.wisc.edu (Neal Ziring)
15;; Extensively redesigned and rewritten by wu@crys.wisc.edu (Felix S.T. Wu)
16;; Last revision: 01/07/87 Wed (for GNU Emacs 18.33)
17
18;; INSTALLATION PROCEDURE:
19;; 1) Add a global key binding for command "vi-mode" (I use ESC ESC instead of
20;; the single ESC used in real "vi", so I can access other ESC prefixed emacs
21;; commands while I'm in "vi"), say, by putting the following line in your
22;; ".emacs" file:
23;; (define-key global-map "\e\e" 'vi-mode) ;quick switch into vi-mode
24;; 2) If you wish you can define "find-file-hook" to enter "vi" automatically
25;; after a file is loaded into the buffer. For example, I defined it as:
26;; (setq find-file-hook (list
27;; (function (lambda ()
28;; (if (not (or (eq major-mode 'Info-mode)
29;; (eq major-mode 'vi-mode)))
30;; (vi-mode))))))
865fe16f 31;; 3) In your init file you can define the command "vi-mode" to be "autoload"
ffc30f4f
SM
32;; or you can execute the "load" command to load "vi" directly.
33;; 4) Read the comments for command "vi-mode" before you start using it.
34
35;; COULD DO
36;; 1). A general 'define-operator' function to replace current hack
37;; 2). In operator handling, should allow other point moving Emacs commands
38;; (such as ESC <, ESC >) to be used as arguments.
39
d46bac56 40;;; Code:
b20cd8db 41
8b16c1f5
RS
42(defvar vi-mode-old-major-mode)
43(defvar vi-mode-old-mode-name)
44(defvar vi-mode-old-local-map)
45(defvar vi-mode-old-case-fold)
b20cd8db 46
b20cd8db
RS
47(if (null (where-is-internal 'vi-switch-mode (current-local-map)))
48 (define-key ctl-x-map "~" 'vi-switch-mode))
49
50(defvar vi-tilde-map nil
51 "Keymap used for \\[vi-switch-mode] prefix key. Link to various major modes.")
52
53(if vi-tilde-map
54 nil
55 (setq vi-tilde-map (make-keymap))
56 (define-key vi-tilde-map "a" 'abbrev-mode)
57 (define-key vi-tilde-map "c" 'c-mode)
58 (define-key vi-tilde-map "d" 'vi-debugging)
59 (define-key vi-tilde-map "e" 'emacs-lisp-mode)
60 (define-key vi-tilde-map "f" 'auto-fill-mode)
61 (define-key vi-tilde-map "g" 'prolog-mode)
62 (define-key vi-tilde-map "h" 'hanoi)
63 (define-key vi-tilde-map "i" 'info-mode)
64 (define-key vi-tilde-map "l" 'lisp-mode)
65 (define-key vi-tilde-map "n" 'nroff-mode)
66 (define-key vi-tilde-map "o" 'overwrite-mode)
67 (define-key vi-tilde-map "O" 'outline-mode)
68 (define-key vi-tilde-map "P" 'picture-mode)
69 (define-key vi-tilde-map "r" 'vi-readonly-mode)
70 (define-key vi-tilde-map "t" 'text-mode)
71 (define-key vi-tilde-map "v" 'vi-mode)
72 (define-key vi-tilde-map "x" 'tex-mode)
73 (define-key vi-tilde-map "~" 'vi-back-to-old-mode))
8b16c1f5
RS
74\f
75(defun vi-switch-mode (arg mode-char)
76 "Switch the major mode of current buffer as specified by the following char \\{vi-tilde-map}"
77 (interactive "P\nc")
78 (let ((mode-cmd (lookup-key vi-tilde-map (char-to-string mode-char))))
79 (if (null mode-cmd)
80 (with-output-to-temp-buffer "*Help*"
81 (princ (substitute-command-keys "Possible major modes to switch to: \\{vi-tilde-map}"))
937e6a56 82 (with-current-buffer standard-output
8b16c1f5
RS
83 (help-mode)))
84 (setq prefix-arg arg) ; prefix arg will be passed down
85 (command-execute mode-cmd nil) ; may need to save mode-line-format etc
86 (force-mode-line-update)))) ; just in case
b20cd8db 87
8b16c1f5 88\f
b20cd8db
RS
89(defun vi-debugging (arg)
90 "Toggle debug-on-error flag. If prefix arg is given, set t."
91 (interactive "P")
92 (if arg
93 (setq debug-on-error t)
94 (setq debug-on-error (not debug-on-error)))
95 (if debug-on-error
96 (message "Debug-on-error ...")
97 (message "NO more debug-on-error")))
98
99(defun vi-back-to-old-mode ()
100 "Go back to the previous mode without setting up for insertion."
101 (interactive)
102 (if vi-mode-old-major-mode
103 (progn
104 (setq mode-name vi-mode-old-mode-name)
105 (use-local-map vi-mode-old-local-map)
106 (setq major-mode vi-mode-old-major-mode)
107 (setq case-fold-search vi-mode-old-case-fold)
75abbc6e 108 (force-mode-line-update))))
b20cd8db
RS
109
110(defun vi-readonly-mode ()
111 "Toggle current buffer's readonly flag."
112 (interactive)
113 (setq buffer-read-only (not buffer-read-only)))
114
115(defvar vi-com-map nil
116 "Keymap used in Evi's command state
117Command state includes most of the vi editing commands, with some Emacs
118command extensions.")
119
120(put 'vi-undefined 'suppress-keymap t)
121(if vi-com-map nil
122 (setq vi-com-map (make-keymap))
123;;(fillarray vi-com-map 'vi-undefined)
124 (define-key vi-com-map "\C-@" 'vi-mark-region) ; extension
125 (define-key vi-com-map "\C-a" 'vi-ask-for-info) ; extension
4f9da241 126 (define-key vi-com-map "\C-b" 'vi-backward-windowful)
b20cd8db
RS
127 (define-key vi-com-map "\C-c" 'vi-do-old-mode-C-c-command) ; extension
128 (define-key vi-com-map "\C-d" 'vi-scroll-down-window)
129 (define-key vi-com-map "\C-e" 'vi-expose-line-below)
4f9da241 130 (define-key vi-com-map "\C-f" 'vi-forward-windowful)
b20cd8db
RS
131 (define-key vi-com-map "\C-g" 'keyboard-quit)
132 (define-key vi-com-map "\C-i" 'indent-relative-maybe) ; TAB
133 (define-key vi-com-map "\C-j" 'vi-next-line) ; LFD
134 (define-key vi-com-map "\C-k" 'vi-kill-line) ; extension
135 (define-key vi-com-map "\C-l" 'recenter)
136 (define-key vi-com-map "\C-m" 'vi-next-line-first-nonwhite) ; RET
137 (define-key vi-com-map "\C-n" 'vi-next-line)
138 (define-key vi-com-map "\C-o" 'vi-split-open-line)
139 (define-key vi-com-map "\C-p" 'previous-line)
140 (define-key vi-com-map "\C-q" 'vi-query-replace) ; extension
141 (define-key vi-com-map "\C-r" 'vi-isearch-backward) ; modification
142 (define-key vi-com-map "\C-s" 'vi-isearch-forward) ; extension
143 (define-key vi-com-map "\C-t" 'vi-transpose-objects) ; extension
144 (define-key vi-com-map "\C-u" 'vi-scroll-up-window)
ce3cefcc 145 (define-key vi-com-map "\C-v" 'scroll-up-command) ; extension
b20cd8db
RS
146 (define-key vi-com-map "\C-w" 'vi-kill-region) ; extension
147 (define-key vi-com-map "\C-x" 'Control-X-prefix) ; extension
148 (define-key vi-com-map "\C-y" 'vi-expose-line-above)
149 (define-key vi-com-map "\C-z" 'suspend-emacs)
150
151 (define-key vi-com-map "\e" 'ESC-prefix); C-[ (ESC)
152 (define-key vi-com-map "\C-\\" 'vi-unimplemented)
153 (define-key vi-com-map "\C-]" 'find-tag)
154 (define-key vi-com-map "\C-^" 'vi-locate-def) ; extension
a1506d29 155 (define-key vi-com-map "\C-_" 'vi-undefined)
b20cd8db
RS
156
157 (define-key vi-com-map " " 'forward-char)
158 (define-key vi-com-map "!" 'vi-operator)
159 (define-key vi-com-map "\"" 'vi-char-argument)
160 (define-key vi-com-map "#" 'universal-argument) ; extension
161 (define-key vi-com-map "$" 'end-of-line)
162 (define-key vi-com-map "%" 'vi-find-matching-paren)
163 (define-key vi-com-map "&" 'vi-unimplemented)
164 (define-key vi-com-map "'" 'vi-goto-line-mark)
165 (define-key vi-com-map "(" 'backward-sexp)
166 (define-key vi-com-map ")" 'forward-sexp)
167 (define-key vi-com-map "*" 'vi-name-last-change-or-macro) ; extension
168 (define-key vi-com-map "+" 'vi-next-line-first-nonwhite)
169 (define-key vi-com-map "," 'vi-reverse-last-find-char)
170 (define-key vi-com-map "-" 'vi-previous-line-first-nonwhite)
171 (define-key vi-com-map "." 'vi-redo-last-change-command)
172 (define-key vi-com-map "/" 'vi-search-forward)
173 (define-key vi-com-map "0" 'beginning-of-line)
174
175 (define-key vi-com-map "1" 'vi-digit-argument)
176 (define-key vi-com-map "2" 'vi-digit-argument)
177 (define-key vi-com-map "3" 'vi-digit-argument)
178 (define-key vi-com-map "4" 'vi-digit-argument)
179 (define-key vi-com-map "5" 'vi-digit-argument)
180 (define-key vi-com-map "6" 'vi-digit-argument)
181 (define-key vi-com-map "7" 'vi-digit-argument)
182 (define-key vi-com-map "8" 'vi-digit-argument)
183 (define-key vi-com-map "9" 'vi-digit-argument)
184
185 (define-key vi-com-map ":" 'vi-ex-cmd)
186 (define-key vi-com-map ";" 'vi-repeat-last-find-char)
187 (define-key vi-com-map "<" 'vi-operator)
188 (define-key vi-com-map "=" 'vi-operator)
189 (define-key vi-com-map ">" 'vi-operator)
190 (define-key vi-com-map "?" 'vi-search-backward)
191 (define-key vi-com-map "@" 'vi-call-named-change-or-macro) ; extension
192
193 (define-key vi-com-map "A" 'vi-append-at-end-of-line)
194 (define-key vi-com-map "B" 'vi-backward-blank-delimited-word)
195 (define-key vi-com-map "C" 'vi-change-rest-of-line)
196 (define-key vi-com-map "D" 'vi-kill-line)
197 (define-key vi-com-map "E" 'vi-end-of-blank-delimited-word)
198 (define-key vi-com-map "F" 'vi-backward-find-char)
199 (define-key vi-com-map "G" 'vi-goto-line)
200 (define-key vi-com-map "H" 'vi-home-window-line)
201 (define-key vi-com-map "I" 'vi-insert-before-first-nonwhite)
202 (define-key vi-com-map "J" 'vi-join-lines)
a1506d29 203 (define-key vi-com-map "K" 'vi-undefined)
b20cd8db
RS
204 (define-key vi-com-map "L" 'vi-last-window-line)
205 (define-key vi-com-map "M" 'vi-middle-window-line)
206 (define-key vi-com-map "N" 'vi-reverse-last-search)
207 (define-key vi-com-map "O" 'vi-open-above)
208 (define-key vi-com-map "P" 'vi-put-before)
209 (define-key vi-com-map "Q" 'vi-quote-words) ; extension
210 (define-key vi-com-map "R" 'vi-replace-chars)
211 (define-key vi-com-map "S" 'vi-substitute-lines)
212 (define-key vi-com-map "T" 'vi-backward-upto-char)
213 (define-key vi-com-map "U" 'vi-unimplemented)
a1506d29 214 (define-key vi-com-map "V" 'vi-undefined)
b20cd8db
RS
215 (define-key vi-com-map "W" 'vi-forward-blank-delimited-word)
216 (define-key vi-com-map "X" 'call-last-kbd-macro) ; modification/extension
217 (define-key vi-com-map "Y" 'vi-yank-line)
218 (define-key vi-com-map "Z" (make-sparse-keymap)) ;allow below prefix command
219 (define-key vi-com-map "ZZ" 'vi-save-all-and-exit)
220
221 (define-key vi-com-map "[" 'vi-unimplemented)
222 (define-key vi-com-map "\\" 'vi-operator) ; extension for vi-narrow-op
223 (define-key vi-com-map "]" 'vi-unimplemented)
224 (define-key vi-com-map "^" 'back-to-indentation)
225 (define-key vi-com-map "_" 'vi-undefined)
226 (define-key vi-com-map "`" 'vi-goto-char-mark)
227
228 (define-key vi-com-map "a" 'vi-insert-after)
229 (define-key vi-com-map "b" 'backward-word)
230 (define-key vi-com-map "c" 'vi-operator)
231 (define-key vi-com-map "d" 'vi-operator)
232 (define-key vi-com-map "e" 'vi-end-of-word)
233 (define-key vi-com-map "f" 'vi-forward-find-char)
234 (define-key vi-com-map "g" 'vi-beginning-of-buffer) ; extension
235 (define-key vi-com-map "h" 'backward-char)
236 (define-key vi-com-map "i" 'vi-insert-before)
237 (define-key vi-com-map "j" 'vi-next-line)
238 (define-key vi-com-map "k" 'previous-line)
239 (define-key vi-com-map "l" 'forward-char)
240 (define-key vi-com-map "m" 'vi-set-mark)
241 (define-key vi-com-map "n" 'vi-repeat-last-search)
242 (define-key vi-com-map "o" 'vi-open-below)
243 (define-key vi-com-map "p" 'vi-put-after)
244 (define-key vi-com-map "q" 'vi-replace)
245 (define-key vi-com-map "r" 'vi-replace-1-char)
246 (define-key vi-com-map "s" 'vi-substitute-chars)
247 (define-key vi-com-map "t" 'vi-forward-upto-char)
248 (define-key vi-com-map "u" 'undo)
a1506d29 249 (define-key vi-com-map "v" 'vi-verify-spelling)
b20cd8db
RS
250 (define-key vi-com-map "w" 'vi-forward-word)
251 (define-key vi-com-map "x" 'vi-kill-char)
252 (define-key vi-com-map "y" 'vi-operator)
253 (define-key vi-com-map "z" 'vi-adjust-window)
254
255 (define-key vi-com-map "{" 'backward-paragraph)
256 (define-key vi-com-map "|" 'vi-goto-column)
257 (define-key vi-com-map "}" 'forward-paragraph)
258 (define-key vi-com-map "~" 'vi-change-case)
259 (define-key vi-com-map "\177" 'delete-backward-char))
260
261(put 'backward-char 'point-moving-unit 'char)
262(put 'vi-next-line 'point-moving-unit 'line)
263(put 'next-line 'point-moving-unit 'line)
264(put 'forward-line 'point-moving-unit 'line)
265(put 'previous-line 'point-moving-unit 'line)
266(put 'vi-isearch-backward 'point-moving-unit 'search)
267(put 'vi-search-backward 'point-moving-unit 'search)
268(put 'vi-isearch-forward 'point-moving-unit 'search)
269(put 'vi-search-forward 'point-moving-unit 'search)
270(put 'forward-char 'point-moving-unit 'char)
271(put 'end-of-line 'point-moving-unit 'char)
272(put 'vi-find-matching-paren 'point-moving-unit 'match)
273(put 'vi-goto-line-mark 'point-moving-unit 'line)
274(put 'backward-sexp 'point-moving-unit 'sexp)
275(put 'forward-sexp 'point-moving-unit 'sexp)
276(put 'vi-next-line-first-nonwhite 'point-moving-unit 'line)
277(put 'vi-previous-line-first-nonwhite 'point-moving-unit 'line)
278(put 'vi-reverse-last-find-char 'point-moving-unit 'rev-find)
279(put 'vi-re-search-forward 'point-moving-unit 'search)
280(put 'beginning-of-line 'point-moving-unit 'char)
281(put 'vi-beginning-of-buffer 'point-moving-unit 'char)
282(put 'vi-repeat-last-find-char 'point-moving-unit 'find)
283(put 'vi-re-search-backward 'point-moving-unit 'search)
284(put 'vi-backward-blank-delimited-word 'point-moving-unit 'WORD)
285(put 'vi-end-of-blank-delimited-word 'point-moving-unit 'match)
286(put 'vi-backward-find-char 'point-moving-unit 'find)
287(put 'vi-goto-line 'point-moving-unit 'line)
288(put 'vi-home-window-line 'point-moving-unit 'line)
289(put 'vi-last-window-line 'point-moving-unit 'line)
290(put 'vi-middle-window-line 'point-moving-unit 'line)
291(put 'vi-reverse-last-search 'point-moving-unit 'rev-search)
292(put 'vi-backward-upto-char 'point-moving-unit 'find)
293(put 'vi-forward-blank-delimited-word 'point-moving-unit 'WORD)
294(put 'back-to-indentation 'point-moving-unit 'char)
295(put 'vi-goto-char-mark 'point-moving-unit 'char)
296(put 'backward-word 'point-moving-unit 'word)
297(put 'vi-end-of-word 'point-moving-unit 'match)
298(put 'vi-forward-find-char 'point-moving-unit 'find)
299(put 'backward-char 'point-moving-unit 'char)
300(put 'vi-forward-char 'point-moving-unit 'char)
301(put 'vi-repeat-last-search 'point-moving-unit 'search)
302(put 'vi-forward-upto-char 'point-moving-unit 'find)
303(put 'vi-forward-word 'point-moving-unit 'word)
304(put 'vi-goto-column 'point-moving-unit 'match)
305(put 'forward-paragraph 'point-moving-unit 'paragraph)
306(put 'backward-paragraph 'point-moving-unit 'paragraph)
307
308;;; region mark commands
309(put 'mark-page 'point-moving-unit 'region)
310(put 'mark-paragraph 'point-moving-unit 'region)
311(put 'mark-word 'point-moving-unit 'region)
312(put 'mark-sexp 'point-moving-unit 'region)
313(put 'mark-defun 'point-moving-unit 'region)
314(put 'mark-whole-buffer 'point-moving-unit 'region)
315(put 'mark-end-of-sentence 'point-moving-unit 'region)
3b72eca0 316(put 'c-mark-function 'point-moving-unit 'region)
b20cd8db
RS
317;;;
318
319(defvar vi-mark-alist nil
320 "Alist of (NAME . MARK), marks are local to each buffer.")
321
322(defvar vi-scroll-amount (/ (window-height) 2)
cbf08f77 323 "Default amount of lines for scrolling (used by \"^D\"/\"^U\").")
b20cd8db
RS
324
325(defvar vi-shift-width 4
cbf08f77 326 "Shift amount for \"<\"/\">\" operators.")
b20cd8db
RS
327
328(defvar vi-ins-point nil ; integer
cbf08f77 329 "Last insertion point. Should use `mark' instead.")
b20cd8db
RS
330
331(defvar vi-ins-length nil ; integer
332 "Length of last insertion.")
333
334(defvar vi-ins-repetition nil ; integer
335 "The repetition required for last insertion.")
336
337(defvar vi-ins-overwrt-p nil ; boolean
338 "T if last insertion was a replace actually.")
339
340(defvar vi-ins-prefix-code nil ; ready-to-eval sexp
341 "Code to be eval'ed before (redo-)insertion begins.")
342
343(defvar vi-last-find-char nil ; cons cell
344 "Save last direction, char and upto-flag used for char finding.")
345
346(defvar vi-last-change-command nil ; cons cell
eb8c3be9 347 "Save commands for redoing last changes. Each command is in (FUNC . ARGS)
cbf08f77 348form that is ready to be `apply'ed.")
b20cd8db
RS
349
350(defvar vi-last-shell-command nil ; last shell op command line
351 "Save last shell command given for \"!\" operator.")
352
353(defvar vi-insert-state nil ; boolean
cbf08f77 354 "Non-nil if it is in insert state.")
b20cd8db
RS
355
356; in "loaddefs.el"
a1506d29 357;(defvar search-last-string ""
b20cd8db
RS
358; "Last string search for by a search command.")
359
360(defvar vi-search-last-command nil ; (re-)search-forward(backward)
361 "Save last search command for possible redo.")
362
363(defvar vi-mode-old-local-map nil
364 "Save the local-map used before entering vi-mode.")
365
366(defvar vi-mode-old-mode-name nil
367 "Save the mode-name before entering vi-mode.")
a1506d29 368
b20cd8db
RS
369(defvar vi-mode-old-major-mode nil
370 "Save the major-mode before entering vi-mode.")
371
372(defvar vi-mode-old-case-fold nil)
a1506d29 373
b20cd8db
RS
374;(defconst vi-add-to-mode-line-1
375; '(overwrite-mode nil " Insert"))
376
377;; Value is same as vi-add-to-mode-line-1 when in vi mode,
378;; but nil in other buffers.
379;(defvar vi-add-to-mode-line nil)
380
381(defun vi-mode-setup ()
382 "Setup a buffer for vi-mode by creating necessary buffer-local variables."
383; (make-local-variable 'vi-add-to-mode-line)
384; (setq vi-add-to-mode-line vi-add-to-mode-line-1)
385; (or (memq vi-add-to-mode-line minor-mode-alist)
386; (setq minor-mode-alist (cons vi-add-to-mode-line minor-mode-alist)))
387 (make-local-variable 'vi-scroll-amount)
388 (setq vi-scroll-amount (/ (window-height) 2))
389 (make-local-variable 'vi-shift-width)
390 (setq vi-shift-width 4)
391 (make-local-variable 'vi-ins-point)
392 (make-local-variable 'vi-ins-length)
393 (make-local-variable 'vi-ins-repetition)
394 (make-local-variable 'vi-ins-overwrt-p)
395 (make-local-variable 'vi-ins-prefix-code)
396 (make-local-variable 'vi-last-change-command)
397 (make-local-variable 'vi-last-shell-command)
398 (make-local-variable 'vi-last-find-char)
399 (make-local-variable 'vi-mark-alist)
400 (make-local-variable 'vi-insert-state)
401 (make-local-variable 'vi-mode-old-local-map)
402 (make-local-variable 'vi-mode-old-mode-name)
403 (make-local-variable 'vi-mode-old-major-mode)
404 (make-local-variable 'vi-mode-old-case-fold)
ec965cd4 405 (run-mode-hooks 'vi-mode-hook))
a1506d29 406
f9f9507e 407;;;###autoload
b20cd8db
RS
408(defun vi-mode ()
409 "Major mode that acts like the `vi' editor.
410The purpose of this mode is to provide you the combined power of vi (namely,
411the \"cross product\" effect of commands and repeat last changes) and Emacs.
412
413This command redefines nearly all keys to look like vi commands.
414It records the previous major mode, and any vi command for input
415\(`i', `a', `s', etc.) switches back to that mode.
416Thus, ordinary Emacs (in whatever major mode you had been using)
417is \"input\" mode as far as vi is concerned.
418
419To get back into vi from \"input\" mode, you must issue this command again.
420Therefore, it is recommended that you assign it to a key.
421
422Major differences between this mode and real vi :
423
424* Limitations and unsupported features
425 - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
426 not supported.
427 - Ex commands are not implemented; try ':' to get some hints.
428 - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
429
430* Modifications
431 - The stopping positions for some point motion commands (word boundary,
432 pattern search) are slightly different from standard 'vi'.
433 Also, no automatic wrap around at end of buffer for pattern searching.
434 - Since changes are done in two steps (deletion then insertion), you need
435 to undo twice to completely undo a change command. But this is not needed
436 for undoing a repeated change command.
437 - No need to set/unset 'magic', to search for a string with regular expr
438 in it just put a prefix arg for the search commands. Replace cmds too.
439 - ^R is bound to incremental backward search, so use ^L to redraw screen.
440
441* Extensions
442 - Some standard (or modified) Emacs commands were integrated, such as
443 incremental search, query replace, transpose objects, and keyboard macros.
444 - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
445 esc-map or set undefined. These can give you the full power of Emacs.
446 - See vi-com-map for those keys that are extensions to standard vi, e.g.
447 `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
448 `vi-mark-region', and 'vi-quote-words'. Some of them are quite handy.
449 - Use \\[vi-switch-mode] to switch among different modes quickly.
a1506d29 450
b20cd8db
RS
451Syntax table and abbrevs while in vi mode remain as they were in Emacs."
452 (interactive)
453 (if (null vi-mode-old-major-mode) ; very first call for current buffer
454 (vi-mode-setup))
455
456 (if (eq major-mode 'vi-mode)
6d255ee3 457 (progn (ding) (message "Already in vi-mode."))
b20cd8db
RS
458 (setq vi-mode-old-local-map (current-local-map))
459 (setq vi-mode-old-mode-name mode-name)
460 (setq vi-mode-old-major-mode major-mode)
461 (setq vi-mode-old-case-fold case-fold-search) ; this is needed !!
462 (setq case-fold-search nil) ; exact case match in searching
463 (use-local-map vi-com-map)
464 (setq major-mode 'vi-mode)
465 (setq mode-name "VI")
75abbc6e 466 (force-mode-line-update) ; force mode line update
b20cd8db
RS
467 (if vi-insert-state ; this is a return from insertion
468 (vi-end-of-insert-state))))
469
470(defun vi-ding()
471 "Ding !"
472 (interactive)
473 (ding))
474
475(defun vi-save-all-and-exit ()
476 "Save all modified buffers without asking, then exits emacs."
477 (interactive)
478 (save-some-buffers t)
479 (kill-emacs))
480
481;; to be used by "ex" commands
482(defvar vi-replaced-string nil)
483(defvar vi-replacing-string nil)
484
485(defun vi-ex-cmd ()
486 "Ex commands are not implemented in Evi mode. For some commonly used ex
487commands, you can use the following alternatives for similar effect :
488w C-x C-s (save-buffer)
489wq C-x C-c (save-buffers-kill-emacs)
490w fname C-x C-w (write-file)
491e fname C-x C-f (find-file)
492r fname C-x i (insert-file)
493s/old/new use q (vi-replace) to do unconditional replace
494 use C-q (vi-query-replace) to do query replace
495set sw=n M-x set-variable vi-shift-width n "
496 (interactive)
497;; (let ((cmd (read-string ":")) (lines 1))
498;; (cond ((string-match "s"))))
499 (with-output-to-temp-buffer "*Help*"
519248ac 500 (princ (documentation 'vi-ex-cmd))
937e6a56 501 (with-current-buffer standard-output
519248ac 502 (help-mode))))
b20cd8db
RS
503
504(defun vi-undefined ()
505 (interactive)
506 (message "Command key \"%s\" is undefined in Evi."
a4d9b7bc 507 (single-key-description last-command-event))
b20cd8db
RS
508 (ding))
509
510(defun vi-unimplemented ()
511 (interactive)
512 (message "Command key \"%s\" is not implemented in Evi."
a4d9b7bc 513 (single-key-description last-command-event))
b20cd8db
RS
514 (ding))
515
516;;;;;
517(defun vi-goto-insert-state (repetition &optional prefix-code do-it-now-p)
518 "Go into insert state, the text entered will be repeated if REPETITION > 1.
519If PREFIX-CODE is given, do it before insertion begins if DO-IT-NOW-P is T.
520In any case, the prefix-code will be done before each 'redo-insert'.
4790f3a4 521This function expects `overwrite-mode' being set properly beforehand."
b20cd8db
RS
522 (if do-it-now-p (apply (car prefix-code) (cdr prefix-code)))
523 (setq vi-ins-point (point))
524 (setq vi-ins-repetition repetition)
525 (setq vi-ins-prefix-code prefix-code)
526 (setq mode-name vi-mode-old-mode-name)
527 (setq case-fold-search vi-mode-old-case-fold)
528 (use-local-map vi-mode-old-local-map)
529 (setq major-mode vi-mode-old-major-mode)
75abbc6e 530 (force-mode-line-update)
b20cd8db
RS
531 (setq vi-insert-state t))
532
533(defun vi-end-of-insert-state ()
534 "Terminate insertion and set up last change command."
535 (if (or (< (point) vi-ins-point) ;Check if there is any effective change
536 (and (= (point) vi-ins-point) (null vi-ins-prefix-code))
537 (<= vi-ins-repetition 0))
538 (vi-goto-command-state t)
539 (if (> vi-ins-repetition 1)
a1506d29 540 (progn
b20cd8db
RS
541 (let ((str (buffer-substring vi-ins-point (point))))
542 (while (> vi-ins-repetition 1)
543 (insert str)
544 (setq vi-ins-repetition (1- vi-ins-repetition))))))
545 (vi-set-last-change-command 'vi-first-redo-insertion vi-ins-point (point)
546 overwrite-mode vi-ins-prefix-code)
547 (vi-goto-command-state t)))
548
549(defun vi-first-redo-insertion (begin end &optional overwrite-p prefix-code)
550 "Redo last insertion the first time. Extract the string and save it for
551future redoes. Do prefix-code if it's given, use overwrite mode if asked."
552 (let ((str (buffer-substring begin end)))
553 (if prefix-code (apply (car prefix-code) (cdr prefix-code)))
554 (if overwrite-p (delete-region (point) (+ (point) (length str))))
555 (insert str)
556 (vi-set-last-change-command 'vi-more-redo-insertion str overwrite-p prefix-code)))
557
558(defun vi-more-redo-insertion (str &optional overwrite-p prefix-code)
559 "Redo more insertion : copy string from STR to point, use overwrite mode
560if overwrite-p is T; apply prefix-code first if it's non-nil."
561 (if prefix-code (apply (car prefix-code) (cdr prefix-code)))
562 (if overwrite-p (delete-region (point) (+ (point) (length str))))
563 (insert str))
564
565(defun vi-goto-command-state (&optional from-insert-state-p)
566 "Go to vi-mode command state. If optional arg exists, means return from
567insert state."
568 (use-local-map vi-com-map)
569 (setq vi-insert-state nil)
570 (if from-insert-state-p
571 (if overwrite-mode
572 (overwrite-mode 0)
573; (set-minor-mode 'ins "Insert" nil)
574 )))
575
576(defun vi-kill-line (arg)
577 "kill specified number of lines (=d$), text saved in the kill ring."
578 (interactive "*P")
579 (kill-line arg)
580 (vi-set-last-change-command 'kill-line arg))
581
30fa657c
KH
582(defun vi-kill-region (start end)
583 (interactive "*r")
584 (kill-region start end)
b20cd8db 585 (vi-set-last-change-command 'kill-region))
a1506d29 586
b20cd8db
RS
587(defun vi-append-at-end-of-line (arg)
588 "go to end of line and then go into vi insert state."
589 (interactive "*p")
590 (vi-goto-insert-state arg '(end-of-line) t))
591
592(defun vi-change-rest-of-line (arg)
593 "Change the rest of (ARG) lines (= c$ in vi)."
594 (interactive "*P")
595 (vi-goto-insert-state 1 (list 'kill-line arg) t))
596
597(defun vi-insert-before-first-nonwhite (arg)
598 "(= ^i in vi)"
599 (interactive "*p")
600 (vi-goto-insert-state arg '(back-to-indentation) t))
601
602(defun vi-open-above (arg)
603 "open new line(s) above current line and enter insert state."
604 (interactive "*p")
605 (vi-goto-insert-state 1
606 (list (function (lambda (x)
607 (or (beginning-of-line)
608 (open-line x)))) arg)
609 t))
610
611(defun vi-open-below (arg)
612 "open new line(s) and go into insert mode on the last line."
613 (interactive "*p")
614 (vi-goto-insert-state 1
615 (list (function (lambda (x)
616 (or (end-of-line)
617 (open-line x)
618 (forward-line x)))) arg)
619 t))
620
621(defun vi-insert-after (arg)
622 "start vi insert state after cursor."
623 (interactive "*p")
624 (vi-goto-insert-state arg
625 (list (function (lambda ()
626 (if (not (eolp)) (forward-char)))))
627 t))
628
629(defun vi-insert-before (arg)
630 "enter insert state before the cursor."
631 (interactive "*p")
632 (vi-goto-insert-state arg))
633
634(defun vi-goto-line (arg)
635 "Go to ARGth line."
636 (interactive "P")
637 (if (null (vi-raw-numeric-prefix arg))
3b72eca0
RS
638 (with-no-warnings
639 (end-of-buffer))
880be50e 640 (with-no-warnings (goto-line (vi-prefix-numeric-value arg)))))
b20cd8db
RS
641
642(defun vi-beginning-of-buffer ()
643 "Move point to the beginning of current buffer."
644 (interactive)
645 (goto-char (point-min)))
646
647;;;;; not used now
648;;(defvar regexp-search t ; string
649;; "*T if search string can contain regular expressions. (= set magic in vi)")
650;;;;;
651
652(defun vi-isearch-forward (arg)
a1506d29 653 "Incremental search forward. Use regexp version if ARG is non-nil."
b20cd8db
RS
654 (interactive "P")
655 (let ((scmd (if arg 'isearch-forward-regexp 'isearch-forward))
656 (opoint (point)))
657 (call-interactively scmd)
658 (if (= opoint (point))
659 nil
660 (setq vi-search-last-command (if arg 're-search-forward 'search-forward)))))
661
662(defun vi-isearch-backward (arg)
663 "Incremental search backward. Use regexp version if ARG is non-nil."
664 (interactive "P")
665 (let ((scmd (if arg 'isearch-backward-regexp 'isearch-backward))
666 (opoint (point)))
667 (call-interactively scmd)
668 (if (= opoint (point))
669 nil
670 (setq vi-search-last-command (if arg 're-search-backward 'search-backward)))))
671
672(defun vi-search-forward (arg string)
673 "Nonincremental search forward. Use regexp version if ARG is non-nil."
674 (interactive (if current-prefix-arg
675 (list t (read-string "regexp/" nil))
676 (list nil (read-string "/" nil))))
677 (setq vi-search-last-command (if arg 're-search-forward 'search-forward))
8b16c1f5
RS
678 (if (> (length string) 0)
679 (isearch-update-ring string arg))
680 (funcall vi-search-last-command string nil nil 1))
b20cd8db
RS
681
682(defun vi-search-backward (arg string)
683 "Nonincremental search backward. Use regexp version if ARG is non-nil."
684 (interactive (if current-prefix-arg
685 (list t (read-string "regexp?" nil))
686 (list nil (read-string "?" nil))))
687 (setq vi-search-last-command (if arg 're-search-backward 'search-backward))
8b16c1f5
RS
688 (if (> (length string) 0)
689 (isearch-update-ring string arg))
690 (funcall vi-search-last-command string nil nil 1))
b20cd8db
RS
691
692(defun vi-repeat-last-search (arg &optional search-command search-string)
8b16c1f5
RS
693 "Repeat last search command.
694If optional search-command/string are given,
b20cd8db 695use those instead of the ones saved."
8b16c1f5
RS
696 (interactive "p")
697 (if (null search-command) (setq search-command vi-search-last-command))
698 (if (null search-string)
699 (setq search-string
700 (car (if (memq search-command
701 '(re-search-forward re-search-backward))
702 regexp-search-ring
703 search-ring))))
704 (if (null search-command)
6d255ee3 705 (progn (ding) (message "No last search command to repeat."))
8b16c1f5 706 (funcall search-command search-string nil nil arg)))
b20cd8db
RS
707
708(defun vi-reverse-last-search (arg &optional search-command search-string)
8b16c1f5
RS
709 "Redo last search command in reverse direction.
710If the optional search args are given, use those instead of the ones saved."
b20cd8db
RS
711 (interactive "p")
712 (if (null search-command) (setq search-command vi-search-last-command))
8b16c1f5
RS
713 (if (null search-string)
714 (setq search-string
715 (car (if (memq search-command
716 '(re-search-forward re-search-backward))
717 regexp-search-ring
718 search-ring))))
b20cd8db 719 (if (null search-command)
6d255ee3 720 (progn (ding) (message "No last search command to repeat."))
b20cd8db
RS
721 (funcall (cond ((eq search-command 're-search-forward) 're-search-backward)
722 ((eq search-command 're-search-backward) 're-search-forward)
723 ((eq search-command 'search-forward) 'search-backward)
724 ((eq search-command 'search-backward) 'search-forward))
725 search-string nil nil arg)))
a1506d29 726
b20cd8db
RS
727(defun vi-join-lines (arg)
728 "join ARG lines from current line (default 2), cleaning up white space."
729 (interactive "P")
730 (if (null (vi-raw-numeric-prefix arg))
731 (delete-indentation t)
8b16c1f5
RS
732 (let ((count (vi-prefix-numeric-value arg)))
733 (while (>= count 2)
734 (delete-indentation t)
735 (setq count (1- count)))))
b20cd8db
RS
736 (vi-set-last-change-command 'vi-join-lines arg))
737
738(defun vi-backward-kill-line ()
739 "kill the current line. Only works in insert state."
740 (interactive)
741 (if (not vi-insert-state)
742 nil
743 (beginning-of-line 1)
744 (kill-line nil)))
745
746(defun vi-abort-ins ()
747 "abort insert state, kill inserted text and go back to command state."
748 (interactive)
749 (if (not vi-insert-state)
750 nil
751 (if (> (point) vi-ins-point)
752 (kill-region vi-ins-point (point)))
753 (vi-goto-command-state t)))
754
4f9da241
KH
755(defun vi-backward-windowful (count)
756 "Backward COUNT windowfuls. Default is one."
b20cd8db
RS
757 (interactive "p")
758; (set-mark-command nil)
759 (while (> count 0)
760 (scroll-down nil)
761 (setq count (1- count))))
762
763(defun vi-scroll-down-window (count)
1433a222
CZ
764 "Scrolls down window COUNT lines.
765If COUNT is nil (actually, non-integer), scrolls default amount.
766The given COUNT is remembered for future scrollings."
b20cd8db
RS
767 (interactive "P")
768 (if (integerp count)
769 (setq vi-scroll-amount count))
770 (scroll-up vi-scroll-amount))
771
772(defun vi-expose-line-below (count)
773 "Expose COUNT more lines below the current window. Default COUNT is 1."
774 (interactive "p")
775 (scroll-up count))
776
4f9da241
KH
777(defun vi-forward-windowful (count)
778 "Forward COUNT windowfuls. Default is one."
b20cd8db
RS
779 (interactive "p")
780; (set-mark-command nil)
781 (while (> count 0)
782 (scroll-up nil)
783 (setq count (1- count))))
784
785(defun vi-next-line (count)
786 "Go down count lines, try to keep at the same column."
787 (interactive "p")
788 (setq this-command 'next-line) ; this is a needed trick
c0d8c0a4 789 (if (= (point) (progn (line-move count) (point)))
b20cd8db
RS
790 (ding) ; no moving, already at end of buffer
791 (setq last-command 'next-line)))
792
793(defun vi-next-line-first-nonwhite (count)
794 "Go down COUNT lines. Stop at first non-white."
795 (interactive "p")
796 (if (= (point) (progn (forward-line count) (back-to-indentation) (point)))
797 (ding))) ; no moving, already at end of buffer
798
799(defun vi-previous-line-first-nonwhite (count)
800 "Go up COUNT lines. Stop at first non-white."
801 (interactive "p")
7caf6803 802 (forward-line (- count))
b20cd8db
RS
803 (back-to-indentation))
804
805(defun vi-scroll-up-window (count)
1433a222
CZ
806 "Scrolls up window COUNT lines.
807If COUNT is nil (actually, non-integer), scrolls default amount.
808The given COUNT is remembered for future scrollings."
b20cd8db
RS
809 (interactive "P")
810 (if (integerp count)
811 (setq vi-scroll-amount count))
812 (scroll-down vi-scroll-amount))
813
814(defun vi-expose-line-above (count)
815 "Expose COUNT more lines above the current window. Default COUNT is 1."
816 (interactive "p")
817 (scroll-down count))
818
819(defun vi-char-argument (arg)
820 "Get following character (could be any CHAR) as part of the prefix argument.
a3c0e188 821Possible prefix-arg cases are nil, INTEGER, (nil . CHAR) or (INTEGER . CHAR)."
b20cd8db
RS
822 (interactive "P")
823 (let ((char (read-char)))
824 (cond ((null arg) (setq prefix-arg (cons nil char)))
825 ((integerp arg) (setq prefix-arg (cons arg char)))
826 ; This can happen only if the user changed his/her mind for CHAR,
827 ; Or there are some leading "universal-argument"s
828 (t (setq prefix-arg (cons (car arg) char))))))
829
830(defun vi-goto-mark (mark-char &optional line-flag)
1433a222
CZ
831 "Go to marked position or line (if line-flag is given).
832Goto mark '@' means jump into and pop the top mark on the mark ring."
a4d9b7bc 833 (cond ((char-equal mark-char last-command-event) ; `` or ''
b20cd8db
RS
834 (exchange-point-and-mark) (if line-flag (back-to-indentation)))
835 ((char-equal mark-char ?@) ; jump and pop mark
836 (set-mark-command t) (if line-flag (back-to-indentation)))
837 (t
838 (let ((mark (vi-get-mark mark-char)))
839 (if (null mark)
6d255ee3 840 (progn (vi-ding) (message "Mark register undefined."))
b20cd8db
RS
841 (set-mark-command nil)
842 (goto-char mark)
843 (if line-flag (back-to-indentation)))))))
a1506d29 844
b20cd8db
RS
845(defun vi-goto-line-mark (char)
846 "Go to the line (at first non-white) marked by next char."
847 (interactive "c")
848 (vi-goto-mark char t))
849
850(defun vi-goto-char-mark (char)
851 "Go to the char position marked by next mark-char."
852 (interactive "c")
853 (vi-goto-mark char))
854
855(defun vi-digit-argument (arg)
856 "Set numeric prefix argument."
857 (interactive "P")
858 (cond ((null arg) (digit-argument arg))
859 ((integerp arg) (digit-argument nil)
860 (setq prefix-arg (* prefix-arg arg)))
861 (t (digit-argument nil) ; in (NIL . CHAR) or (NUM . CHAR) form
862 (setq prefix-arg (cons (* prefix-arg
863 (if (null (car arg)) 1 (car arg)))
864 (cdr arg))))))
865
866(defun vi-raw-numeric-prefix (arg)
867 "Return the raw value of numeric part prefix argument."
868 (if (consp arg) (car arg) arg))
869
870(defun vi-prefix-numeric-value (arg)
871 "Return numeric meaning of the raw prefix argument. This is a modification
872to the standard one provided in `callint.c' to handle (_ . CHAR) cases."
873 (cond ((null arg) 1)
874 ((integerp arg) arg)
875 ((consp arg) (if (car arg) (car arg) 1))))
876
877(defun vi-reverse-last-find-char (count &optional find-arg)
878 "Reverse last f F t T operation COUNT times. If the optional FIND-ARG
879is given, it is used instead of the saved one."
880 (interactive "p")
881 (if (null find-arg) (setq find-arg vi-last-find-char))
882 (if (null find-arg)
6d255ee3 883 (progn (ding) (message "No last find char to repeat."))
b20cd8db
RS
884 (vi-find-char (cons (* (car find-arg) -1) (cdr find-arg)) count))) ;6/13/86
885
886(defun vi-find-char (arg count)
887 "Find in DIRECTION (1/-1) for CHAR of COUNT'th times on current line.
888If UPTO-FLAG is T, stop before the char. ARG = (DIRECTION.CHAR.UPTO-FLAG."
889 (let* ((direction (car arg)) (char (car (cdr arg)))
890 (upto-flag (cdr (cdr arg))) (pos (+ (point) direction)))
891 (if (catch 'exit-find-char
892 (while t
893 (cond ((null (char-after pos)) (throw 'exit-find-char nil))
894 ((char-equal (char-after pos) ?\n) (throw 'exit-find-char nil))
895 ((char-equal char (char-after pos)) (setq count (1- count))
896 (if (= count 0)
897 (throw 'exit-find-char
898 (if upto-flag
899 (setq pos (- pos direction))
900 pos)))))
901 (setq pos (+ pos direction))))
902 (goto-char pos)
903 (ding))))
904
905(defun vi-repeat-last-find-char (count &optional find-arg)
906 "Repeat last f F t T operation COUNT times. If optional FIND-ARG is given,
907it is used instead of the saved one."
908 (interactive "p")
909 (if (null find-arg) (setq find-arg vi-last-find-char))
910 (if (null find-arg)
6d255ee3 911 (progn (ding) (message "No last find char to repeat."))
b20cd8db
RS
912 (vi-find-char find-arg count)))
913
914(defun vi-backward-find-char (count char)
915 "Find the COUNT'th CHAR backward on current line."
916 (interactive "p\nc")
917 (setq vi-last-find-char (cons -1 (cons char nil)))
918 (vi-repeat-last-find-char count))
919
920(defun vi-forward-find-char (count char)
921 "Find the COUNT'th CHAR forward on current line."
922 (interactive "p\nc")
923 (setq vi-last-find-char (cons 1 (cons char nil)))
924 (vi-repeat-last-find-char count))
925
926(defun vi-backward-upto-char (count char)
927 "Find upto the COUNT'th CHAR backward on current line."
928 (interactive "p\nc")
929 (setq vi-last-find-char (cons -1 (cons char t)))
930 (vi-repeat-last-find-char count))
931
932(defun vi-forward-upto-char (count char)
933 "Find upto the COUNT'th CHAR forward on current line."
934 (interactive "p\nc")
935 (setq vi-last-find-char (cons 1 (cons char t)))
936 (vi-repeat-last-find-char count))
937
938(defun vi-end-of-word (count)
939 "Move forward until encountering the end of a word.
940With argument, do this that many times."
941 (interactive "p")
942 (if (not (eobp)) (forward-char))
943 (if (re-search-forward "\\W*\\w+\\>" nil t count)
944 (backward-char)))
945
946(defun vi-replace-1-char (count char)
947 "Replace char after point by CHAR. Repeat COUNT times."
948 (interactive "p\nc")
949 (delete-char count nil) ; don't save in kill ring
a4d9b7bc 950 (setq last-command-event char)
b20cd8db
RS
951 (self-insert-command count)
952 (vi-set-last-change-command 'vi-replace-1-char count char))
953
954(defun vi-replace-chars (arg)
955 "Replace chars over old ones."
956 (interactive "*p")
957 (overwrite-mode 1)
958 (vi-goto-insert-state arg))
959
960(defun vi-substitute-chars (count)
961 "Substitute COUNT chars by the input chars, enter insert state."
962 (interactive "*p")
963 (vi-goto-insert-state 1 (list (function (lambda (c) ; this is a bit tricky
964 (delete-region (point)
965 (+ (point) c))))
966 count) t))
967
968(defun vi-substitute-lines (count)
969 "Substitute COUNT lines by the input chars. (=cc in vi)"
970 (interactive "*p")
971 (vi-goto-insert-state 1 (list 'vi-delete-op 'next-line (1- count)) t))
972
973(defun vi-prefix-char-value (arg)
974 "Get the char part of the current prefix argument."
975 (cond ((null arg) nil)
976 ((integerp arg) nil)
977 ((consp arg) (cdr arg))
978 (t nil)))
979
980(defun vi-operator (arg)
981 "Handling vi operators (d/c/</>/!/=/y). Current implementation requires
982the key bindings of the operators being fixed."
983 (interactive "P")
984 (catch 'vi-exit-op
a4d9b7bc
GM
985 (let ((this-op-char last-command-event))
986 (setq last-command-event (read-char))
987 (setq this-command (lookup-key vi-com-map (char-to-string last-command-event)))
b20cd8db
RS
988 (if (not (eq this-command 'vi-digit-argument))
989 (setq prefix-arg arg)
990 (vi-digit-argument arg)
a4d9b7bc
GM
991 (setq last-command-event (read-char))
992 (setq this-command (lookup-key vi-com-map (char-to-string last-command-event))))
993 (cond ((char-equal this-op-char last-command-event) ; line op
b20cd8db
RS
994 (vi-execute-op this-op-char 'next-line
995 (cons (1- (vi-prefix-numeric-value prefix-arg))
996 (vi-prefix-char-value prefix-arg))))
997 ;; We assume any command that has no property 'point-moving-unit'
998 ;; as having that property with the value 'CHAR'. 3/12/86
999 (t ;; (get this-command 'point-moving-unit)
1000 (vi-execute-op this-op-char this-command prefix-arg))))))
1001 ;; (t (throw 'vi-exit-op (ding)))))))
1002
1003(defun vi-execute-op (op-char motion-command arg)
1004 "Execute vi edit operator as specified by OP-CHAR, the operand is the region
1005determined by the MOTION-COMMAND with ARG."
1006 (cond ((= op-char ?d)
1007 (if (vi-delete-op motion-command arg)
1008 (vi-set-last-change-command 'vi-delete-op (vi-repeat-command-of motion-command) arg)))
1009 ((= op-char ?c)
1010 (if (vi-delete-op motion-command arg)
1011 (vi-goto-insert-state 1 (list 'vi-delete-op
1012 (vi-repeat-command-of motion-command) arg) nil)))
1013 ((= op-char ?y)
1014 (if (vi-yank-op motion-command arg)
1015 (vi-set-last-change-command 'vi-yank-op (vi-repeat-command-of motion-command) arg)))
1016 ((= op-char ?!)
1017 (if (vi-shell-op motion-command arg)
1018 (vi-set-last-change-command 'vi-shell-op (vi-repeat-command-of motion-command) arg vi-last-shell-command)))
1019 ((= op-char ?<)
1020 (if (vi-shift-op motion-command arg (- vi-shift-width))
1021 (vi-set-last-change-command 'vi-shift-op (vi-repeat-command-of motion-command) arg (- vi-shift-width))))
1022 ((= op-char ?>)
1023 (if (vi-shift-op motion-command arg vi-shift-width)
1024 (vi-set-last-change-command 'vi-shift-op (vi-repeat-command-of motion-command) arg vi-shift-width)))
1025 ((= op-char ?=)
1026 (if (vi-indent-op motion-command arg)
1027 (vi-set-last-change-command 'vi-indent-op (vi-repeat-command-of motion-command) arg)))
1028 ((= op-char ?\\)
1029 (vi-narrow-op motion-command arg))))
1030
1031(defun vi-repeat-command-of (command)
1032 "Return the command for redo the given command."
1033 (let ((cmd-type (get command 'point-moving-unit)))
1034 (cond ((eq cmd-type 'search) 'vi-repeat-last-search)
1035 ((eq cmd-type 'find) 'vi-repeat-last-find-char)
1036 (t command))))
1037
1038(defun vi-effective-range (motion-command arg)
1039 "Return (begin . end) of the range spanned by executing the given
1040MOTION-COMMAND with ARG.
1041 MOTION-COMMAND in ready-to-eval list form is not yet supported."
1042 (save-excursion
1043 (let ((begin (point)) end opoint
1044 (moving-unit (get motion-command 'point-moving-unit)))
1045 (setq prefix-arg arg)
1046 (setq opoint (point))
1047 (command-execute motion-command nil)
1048;; Check if there is any effective motion. Note that for single line operation
1049;; the motion-command causes no effective point movement (since it moves up or
1050;; down zero lines), but it should be counted as effectively moved.
1051 (if (and (= (point) opoint) (not (eq moving-unit 'line)))
1052 (cons opoint opoint) ; no effective motion
1053 (if (eq moving-unit 'region)
1054 (setq begin (or (mark) (point))))
1055 (if (<= begin (point))
1056 (setq end (point))
1057 (setq end begin)
1058 (setq begin (point)))
1059 (cond ((or (eq moving-unit 'match) (eq moving-unit 'find))
1060 (setq end (1+ end)))
1061 ((eq moving-unit 'line)
1062 (goto-char begin) (beginning-of-line) (setq begin (point))
7caf6803 1063 (goto-char end) (forward-line 1) (beginning-of-line) (setq end (point))))
a1506d29 1064 (if (> end (point-max)) (setq end (point-max))) ; force in buffer region
b20cd8db
RS
1065 (cons begin end)))))
1066
1067(defun vi-delete-op (motion-command arg)
1068 "Delete range specified by MOTION-COMMAND with ARG."
1069 (let* ((range (vi-effective-range motion-command arg))
1070 (begin (car range)) (end (cdr range)) reg)
1071 (if (= begin end)
1072 nil ; point not moved, abort op
1073 (setq reg (vi-prefix-char-value arg))
1074 (if (null reg)
1075 (kill-region begin end) ; kill ring as unnamed registers
1076 (if (and (>= reg ?A) (<= reg ?Z))
1077 (append-to-register (downcase reg) begin end t)
1078 (copy-to-register reg begin end t)))
1079 t)))
1080
1081(defun vi-yank-op (motion-command arg)
1082 "Yank (in vi sense) range specified by MOTION-COMMAND with ARG."
1083 (let* ((range (vi-effective-range motion-command arg))
1084 (begin (car range)) (end (cdr range)) reg)
1085 (if (= begin end)
1086 nil ; point not moved, abort op
1087 (setq reg (vi-prefix-char-value arg))
1088 (if (null reg)
1089 (copy-region-as-kill begin end); kill ring as unnamed registers
1090 (if (and (>= reg ?A) (<= reg ?Z))
1091 (append-to-register (downcase reg) begin end nil)
1092 (copy-to-register reg begin end nil)))
1093 t)))
1094
1095(defun vi-yank-line (arg)
1096 "Yank (in vi sense) lines (= `yy' command)."
1097 (interactive "*P")
1098 (setq arg (cons (1- (vi-prefix-numeric-value arg)) (vi-prefix-char-value arg)))
1099 (if (vi-yank-op 'next-line arg)
1100 (vi-set-last-change-command 'vi-yank-op 'next-line arg)))
1101
1102(defun vi-string-end-with-nl-p (string)
1433a222
CZ
1103 "See if STRING ends with a newline char.
1104Used in checking whether the yanked text should be put back as lines or not."
b20cd8db
RS
1105 (= (aref string (1- (length string))) ?\n))
1106
1107(defun vi-put-before (arg &optional after-p)
a1506d29 1108 "Put yanked (in vi sense) text back before/above cursor.
1433a222
CZ
1109If a numeric prefix value (currently it should be >1) is given, put back
1110text as lines. If the optional after-p is given, put after/below the cursor."
b20cd8db
RS
1111 (interactive "P")
1112 (let ((reg (vi-prefix-char-value arg)) put-text)
1113 (if (and reg (or (< reg ?1) (> reg ?9)) (null (get-register reg)))
1114 (error "Nothing in register %c" reg)
1115 (if (null reg) (setq reg ?1)) ; the default is the last text killed
1116 (setq put-text
492878e4
JB
1117 (cond
1118 ((and (>= reg ?1) (<= reg ?9))
1119 (setq this-command 'yank) ; So we may yank-pop !!
1120 (current-kill (- reg ?0 1) 'do-not-rotate))
1121 ((stringp (get-register reg)) (get-register reg))
1122 (t (error "Register %c is not containing text string" reg))))
b20cd8db
RS
1123 (if (vi-string-end-with-nl-p put-text) ; put back text as lines
1124 (if after-p
7caf6803 1125 (progn (forward-line 1) (beginning-of-line))
b20cd8db
RS
1126 (beginning-of-line))
1127 (if after-p (forward-char 1)))
1128 (push-mark (point))
1129 (insert put-text)
1130 (exchange-point-and-mark)
1131;; (back-to-indentation) ; this is not allowed if we allow yank-pop
1132 (vi-set-last-change-command 'vi-put-before arg after-p))))
1133
1134(defun vi-put-after (arg)
1135 "Put yanked (in vi sense) text back after/below cursor."
1136 (interactive "P")
1137 (vi-put-before arg t))
1138
1139(defun vi-shell-op (motion-command arg &optional shell-command)
1433a222
CZ
1140 "Perform shell command (as filter).
1141Performs command on range specified by MOTION-COMMAND
b20cd8db
RS
1142with ARG. If SHELL-COMMAND is not given, ask for one from minibuffer.
1143If char argument is given, it directs the output to a *temp* buffer."
1144 (let* ((range (vi-effective-range motion-command arg))
1145 (begin (car range)) (end (cdr range)))
1146 (if (= begin end)
1147 nil ; point not moved, abort op
1148 (cond ((null shell-command)
1149 (setq shell-command (read-string "!" nil))
1150 (setq vi-last-shell-command shell-command)))
0950aa27
JL
1151 (shell-command-on-region begin end shell-command (not (vi-prefix-char-value arg))
1152 (not (vi-prefix-char-value arg)))
b20cd8db
RS
1153 t)))
1154
1155(defun vi-shift-op (motion-command arg amount)
1156 "Perform shift command on range specified by MOTION-COMMAND with ARG for
1157AMOUNT on each line. Negative amount means shift left.
1158SPECIAL FEATURE: char argument can be used to specify shift amount(1-9)."
1159 (let* ((range (vi-effective-range motion-command arg))
1160 (begin (car range)) (end (cdr range)))
1161 (if (= begin end)
1162 nil ; point not moved, abort op
1163 (if (vi-prefix-char-value arg)
1164 (setq amount (if (> amount 0)
1165 (- (vi-prefix-char-value arg) ?0)
1166 (- ?0 (vi-prefix-char-value arg)))))
1167 (indent-rigidly begin end amount)
1168 t)))
1169
1170(defun vi-indent-op (motion-command arg)
1171 "Perform indent command on range specified by MOTION-COMMAND with ARG."
1172 (let* ((range (vi-effective-range motion-command arg))
1173 (begin (car range)) (end (cdr range)))
1174 (if (= begin end)
1175 nil ; point not moved, abort op
1176 (indent-region begin end nil) ; insert TAB as indent command
1177 t)))
1178
1179(defun vi-narrow-op (motion-command arg)
1180 "Narrow to region specified by MOTION-COMMAND with ARG."
1181 (let* ((range (vi-effective-range motion-command arg))
1182 (begin (car range)) (end (cdr range)) reg)
1183 (if (= begin end)
1184 nil ; point not moved, abort op
1185 (narrow-to-region begin end))))
1186
1187(defun vi-get-mark (char)
1188 "Return contents of vi mark register named CHAR, or nil if undefined."
1189 (cdr (assq char vi-mark-alist)))
1190
1191(defun vi-set-mark (char)
1433a222
CZ
1192 "Set contents of vi mark register named CHAR to current point.
1193'@' is the special anonymous mark register."
b20cd8db
RS
1194 (interactive "c")
1195 (if (char-equal char ?@)
1196 (set-mark-command nil)
1197 (let ((aelt (assq char vi-mark-alist)))
1198 (if aelt
1199 (move-marker (cdr aelt) (point)) ; fixed 6/12/86
1200 (setq aelt (cons char (copy-marker (point))))
1201 (setq vi-mark-alist (cons aelt vi-mark-alist))))))
1202
1203(defun vi-find-matching-paren ()
1204 "Locate the matching paren. It's a hack right now."
1205 (interactive)
1206 (cond ((looking-at "[[({]") (forward-sexp 1) (backward-char 1))
1207 ((looking-at "[])}]") (forward-char 1) (backward-sexp 1))
1208 (t (ding))))
1209
1210(defun vi-backward-blank-delimited-word (count)
1211 "Backward COUNT blank-delimited words."
1212 (interactive "p")
1213 (if (re-search-backward "[ \t\n\`][^ \t\n\`]+" nil t count)
1214 (if (not (bobp)) (forward-char 1))))
1215
1216(defun vi-forward-blank-delimited-word (count)
1217 "Forward COUNT blank-delimited words."
1218 (interactive "p")
1219 (if (re-search-forward "[^ \t\n]*[ \t\n]+[^ \t\n]" nil t count)
1220 (if (not (eobp)) (backward-char 1))))
1221
1222(defun vi-end-of-blank-delimited-word (count)
1223 "Forward to the end of the COUNT'th blank-delimited word."
1224 (interactive "p")
1225 (if (re-search-forward "[^ \t\n\']+[ \t\n\']" nil t count)
1226 (if (not (eobp)) (backward-char 2))))
1227
1228(defun vi-home-window-line (arg)
1229 "To window home or arg'th line from the top of the window."
1230 (interactive "p")
1231 (move-to-window-line (1- arg))
1232 (back-to-indentation))
1233
1234(defun vi-last-window-line (arg)
1235 "To window last line or arg'th line from the bottom of the window."
1236 (interactive "p")
1237 (move-to-window-line (- arg))
1238 (back-to-indentation))
1239
1240(defun vi-middle-window-line ()
1241 "To the middle line of the window."
1242 (interactive)
1243 (move-to-window-line nil)
1244 (back-to-indentation))
1245
1246(defun vi-forward-word (count)
1247 "Stop at the beginning of the COUNT'th words from point."
1248 (interactive "p")
1249 (if (re-search-forward "\\w*\\W+\\<" nil t count)
1250 t
1251 (vi-ding)))
1252
1253(defun vi-set-last-change-command (fun &rest args)
1433a222 1254 "Set (FUN . ARGS) as the `last-change-command'."
b20cd8db
RS
1255 (setq vi-last-change-command (cons fun args)))
1256
1257(defun vi-redo-last-change-command (count &optional command)
1258 "Redo last change command COUNT times. If the optional COMMAND is given,
1433a222 1259it is used instead of the current `last-change-command'."
b20cd8db
RS
1260 (interactive "p")
1261 (if (null command)
1262 (setq command vi-last-change-command))
1263 (if (null command)
1264 (message "No last change command available.")
1265 (while (> count 0)
1266 (apply (car command) (cdr command))
1267 (setq count (1- count)))))
1268
1269(defun vi-kill-char (count)
1270 "Kill COUNT chars from current point."
1271 (interactive "*p")
1272 (delete-char count t) ; save in kill ring
1273 (vi-set-last-change-command 'delete-char count t))
1274
1275(defun vi-transpose-objects (arg unit)
1433a222
CZ
1276 "Transpose objects.
1277The following char specifies unit of objects to be
b20cd8db
RS
1278transposed -- \"c\" for chars, \"l\" for lines, \"w\" for words, \"s\" for
1279 sexp, \"p\" for paragraph.
1280For the use of the prefix-arg, refer to individual functions called."
1281 (interactive "*P\nc")
1282 (if (char-equal unit ??)
1283 (progn
1284 (message "Transpose: c(har), l(ine), p(aragraph), s(-exp), w(ord),")
1285 (setq unit (read-char))))
1286 (vi-set-last-change-command 'vi-transpose-objects arg unit)
1287 (cond ((char-equal unit ?c) (transpose-chars arg))
1288 ((char-equal unit ?l) (transpose-lines (vi-prefix-numeric-value arg)))
1289 ((char-equal unit ?p) (transpose-paragraphs (vi-prefix-numeric-value arg)))
1290 ((char-equal unit ?s) (transpose-sexps (vi-prefix-numeric-value arg)))
1291 ((char-equal unit ?w) (transpose-words (vi-prefix-numeric-value arg)))
1292 (t (vi-transpose-objects arg ??))))
1293
1294(defun vi-query-replace (arg)
1295 "Query replace, use regexp version if ARG is non-nil."
1296 (interactive "*P")
1297 (let ((rcmd (if arg 'query-replace-regexp 'query-replace)))
1298 (call-interactively rcmd nil)))
1299
1300(defun vi-replace (arg)
1301 "Replace strings, use regexp version if ARG is non-nil."
1302 (interactive "*P")
1303 (let ((rcmd (if arg 'replace-regexp 'replace-string)))
1304 (call-interactively rcmd nil)))
a1506d29 1305
b20cd8db
RS
1306(defun vi-adjust-window (arg position)
1307 "Move current line to the top/center/bottom of the window."
1308 (interactive "p\nc")
1309 (cond ((char-equal position ?\r) (recenter 0))
1310 ((char-equal position ?-) (recenter -1))
1311 ((char-equal position ?.) (recenter (/ (window-height) 2)))
1312 (t (message "Move current line to: \\r(top) -(bottom) .(middle)")
1313 (setq position (read-char))
1314 (vi-adjust-window arg position))))
1315
1316(defun vi-goto-column (col)
1317 "Go to given column of the current line."
1318 (interactive "p")
1319 (let ((opoint (point)))
1320 (beginning-of-line)
1321 (while (> col 1)
1322 (if (eolp)
1323 (setq col 0)
1324 (forward-char 1)
1325 (setq col (1- col))))
1326 (if (= col 1)
1327 t
1328 (goto-char opoint)
1329 (ding))))
1330
1331(defun vi-name-last-change-or-macro (arg char)
a1506d29 1332 "Give name to the last change command or just defined kbd macro.
1433a222
CZ
1333If prefix ARG is given, name last macro, otherwise name last change command.
1334The following CHAR will be the name for the command or macro."
b20cd8db
RS
1335 (interactive "P\nc")
1336 (if arg
1337 (name-last-kbd-macro (intern (char-to-string char)))
1338 (if (eq (car vi-last-change-command) 'vi-first-redo-insertion)
1339 (let* ((args (cdr vi-last-change-command)) ; save the insertion text
1340 (str (buffer-substring (nth 0 args) (nth 1 args)))
1341 (overwrite-p (nth 2 args))
1342 (prefix-code (nth 3 args)))
1343 (vi-set-last-change-command 'vi-more-redo-insertion str
1344 overwrite-p prefix-code)))
1345 (fset (intern (char-to-string char)) vi-last-change-command)))
a1506d29 1346
b20cd8db
RS
1347(defun vi-call-named-change-or-macro (count char)
1348 "Execute COUNT times the keyboard macro definition named by the following CHAR."
1349 (interactive "p\nc")
1350 (if (stringp (symbol-function (intern (char-to-string char))))
1351 (execute-kbd-macro (intern (char-to-string char)) count)
1352 (vi-redo-last-change-command count (symbol-function (intern (char-to-string char))))))
1353
1354(defun vi-change-case (arg) ; could be made as an operator ?
1355 "Change the case of the char after point."
1356 (interactive "*p")
1357 (catch 'exit
1358 (if (looking-at "[a-z]")
1359 (upcase-region (point) (+ (point) arg))
1360 (if (looking-at "[A-Z]")
1361 (downcase-region (point) (+ (point) arg))
1362 (ding)
1363 (throw 'exit nil)))
1364 (vi-set-last-change-command 'vi-change-case arg) ;should avoid redundant save
1365 (forward-char arg)))
1366
1367(defun vi-ask-for-info (char)
1368 "Inquire status info. The next CHAR will specify the particular info requested."
1369 (interactive "c")
1370 (cond ((char-equal char ?l) (what-line))
1371 ((char-equal char ?c) (what-cursor-position))
1372 ((char-equal char ?p) (what-page))
1373 (t (message "Ask for: l(ine number), c(ursor position), p(age number)")
1374 (setq char (read-char))
1375 (vi-ask-for-info char))))
1376
5cec3056 1377(declare-function c-mark-function "cc-cmds" ())
153ef845 1378
b20cd8db 1379(defun vi-mark-region (arg region)
eb8c3be9 1380 "Mark region appropriately. The next char REGION is d(efun),s(-exp),b(uffer),
b20cd8db
RS
1381p(aragraph), P(age), f(unction in C/Pascal etc.), w(ord), e(nd of sentence),
1382l(ines)."
1383 (interactive "p\nc")
30fa657c 1384 (cond ((char-equal region ?d) (mark-defun))
b20cd8db
RS
1385 ((char-equal region ?s) (mark-sexp arg))
1386 ((char-equal region ?b) (mark-whole-buffer))
30fa657c 1387 ((char-equal region ?p) (mark-paragraph))
b20cd8db 1388 ((char-equal region ?P) (mark-page arg))
3b72eca0 1389 ((char-equal region ?f) (c-mark-function))
b20cd8db
RS
1390 ((char-equal region ?w) (mark-word arg))
1391 ((char-equal region ?e) (mark-end-of-sentence arg))
1392 ((char-equal region ?l) (vi-mark-lines arg))
1393 (t (message "Mark: d(efun),s(-exp),b(uf),p(arag),P(age),f(unct),w(ord),e(os),l(ines)")
1394 (setq region (read-char))
1395 (vi-mark-region arg region))))
1396
1397(defun vi-mark-lines (num)
1398 "Mark NUM of lines from current line as current region."
1399 (beginning-of-line 1)
1400 (push-mark)
1401 (end-of-line num))
1402
1403(defun vi-verify-spelling (arg unit)
1404 "Verify spelling for the objects specified by char UNIT : [b(uffer),
1405r(egion), s(tring), w(ord) ]."
1406 (interactive "P\nc")
1407 (setq prefix-arg arg) ; seems not needed
1408 (cond ((char-equal unit ?b) (call-interactively 'spell-buffer))
1409 ((char-equal unit ?r) (call-interactively 'spell-region))
1410 ((char-equal unit ?s) (call-interactively 'spell-string))
1411 ((char-equal unit ?w) (call-interactively 'spell-word))
1412 (t (message "Spell check: b(uffer), r(egion), s(tring), w(ord)")
1413 (setq unit (read-char))
1414 (vi-verify-spelling arg unit))))
1415
1416(defun vi-do-old-mode-C-c-command (arg)
1417 "This is a hack for accessing mode specific C-c commands in vi-mode."
1418 (interactive "P")
1419 (let ((cmd (lookup-key vi-mode-old-local-map
1420 (concat "\C-c" (char-to-string (read-char))))))
1421 (if (catch 'exit-vi-mode ; kludge hack due to dynamic binding
1422 ; of case-fold-search
1423 (if (null cmd)
1424 (progn (ding) nil)
1425 (let ((case-fold-search vi-mode-old-case-fold)) ; a hack
1426 (setq prefix-arg arg)
1427 (command-execute cmd nil)
1428 nil)))
1429 (progn
1430 (vi-back-to-old-mode)
1431 (setq prefix-arg arg)
1432 (command-execute cmd nil)))))
1433
1434(defun vi-quote-words (arg char)
1433a222
CZ
1435 "Quote ARG words from the word point is on with pattern specified by CHAR.
1436Currently, CHAR could be [,{,(,\",',`,<,*, etc."
b20cd8db
RS
1437 (interactive "*p\nc")
1438 (while (not (string-match "[[({<\"'`*]" (char-to-string char)))
1439 (message "Enter any of [,{,(,<,\",',`,* as quoting character.")
1440 (setq char (read-char)))
1441 (vi-set-last-change-command 'vi-quote-words arg char)
1442 (if (not (looking-at "\\<")) (forward-word -1))
1443 (insert char)
1444 (cond ((char-equal char ?[) (setq char ?]))
1445 ((char-equal char ?{) (setq char ?}))
1446 ((char-equal char ?<) (setq char ?>))
1447 ((char-equal char ?() (setq char ?)))
1448 ((char-equal char ?`) (setq char ?')))
1449 (vi-end-of-word arg)
1450 (forward-char 1)
1451 (insert char))
1452
1453(defun vi-locate-def ()
1433a222
CZ
1454 "Locate definition in current file for the name before the point.
1455It assumes a `(def..' always starts at the beginning of a line."
b20cd8db
RS
1456 (interactive)
1457 (let (name)
1458 (save-excursion
1459 (setq name (buffer-substring (progn (vi-backward-blank-delimited-word 1)
1460 (skip-chars-forward "^a-zA-Z")
1461 (point))
1462 (progn (vi-end-of-blank-delimited-word 1)
1463 (forward-char)
1464 (skip-chars-backward "^a-zA-Z")
1465 (point)))))
1466 (set-mark-command nil)
1467 (goto-char (point-min))
1468 (if (re-search-forward (concat "^(def[unvarconst ]*" name) nil t)
1469 nil
6d255ee3
AS
1470 (ding)
1471 (message "No definition for \"%s\" in current file." name)
b20cd8db
RS
1472 (set-mark-command t))))
1473
1474(defun vi-split-open-line (arg)
1475 "Insert a newline and leave point before it.
1433a222 1476With ARG, inserts that many newlines."
b20cd8db
RS
1477 (interactive "*p")
1478 (vi-goto-insert-state 1
1479 (list (function (lambda (arg)
1480 (let ((flag (and (bolp) (not (bobp)))))
1481 (if flag (forward-char -1))
1482 (while (> arg 0)
1483 (save-excursion
1484 (insert ?\n)
1485 (if fill-prefix (insert fill-prefix)))
1486 (setq arg (1- arg)))
1487 (if flag (forward-char 1))))) arg)
1488 t))
d501f516 1489
896546cd
RS
1490(provide 'vi)
1491
d501f516 1492;;; vi.el ends here