*** empty log message ***
[bpt/emacs.git] / lisp / emulation / viper-ex.el
CommitLineData
52fa07ba 1;;; viper-ex.el --- functions implementing the Ex commands for Viper
be010748 2
5fd6d89f 3;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003,
8b72699e 4;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6c2e12f4 5
50a07e18 6;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
02f34c70 7
6c2e12f4
KH
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e0085d62 12;; the Free Software Foundation; either version 3, or (at your option)
6c2e12f4
KH
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
52fa07ba 21;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
6c2e12f4 24
60370d40
PJ
25;;; Commentary:
26
27;;; Code:
03fc1246 28
9b70a748 29(provide 'viper-ex)
6c2e12f4 30
03fc1246 31;; Compiler pacifier
52fa07ba 32(defvar read-file-name-map)
8626cfa2
MK
33(defvar viper-use-register)
34(defvar viper-s-string)
35(defvar viper-shift-width)
36(defvar viper-ex-history)
37(defvar viper-related-files-and-buffers-ring)
38(defvar viper-local-search-start-marker)
1e70790f 39(defvar viper-expert-level)
8626cfa2
MK
40(defvar viper-custom-file-name)
41(defvar viper-case-fold-search)
e36a387d 42(defvar explicit-shell-file-name)
50a07e18 43(defvar compile-command)
9b70a748 44
726e270f
MK
45;; loading happens only in non-interactive compilation
46;; in order to spare non-viperized emacs from being viperized
47(if noninteractive
48 (eval-when-compile
49 (let ((load-path (cons (expand-file-name ".") load-path)))
726e270f 50 (or (featurep 'viper-cmd)
fd298e02 51 (load "viper-cmd.el" nil t 'nosuffix))
726e270f 52 )))
9b70a748
MK
53;; end pacifier
54
55(require 'viper-util)
56
1e70790f 57(defgroup viper-ex nil
87c81c89 58 "Viper support for Ex commands."
1e70790f
MK
59 :prefix "ex-"
60 :group 'viper)
61
62
03fc1246 63
6c2e12f4 64;;; Variables
bbe6126c 65
8626cfa2 66(defconst viper-ex-work-buf-name " *ex-working-space*")
e07ff078 67(defvar viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 68(defconst viper-ex-tmp-buf-name " *ex-tmp*")
241d963d 69(defconst viper-ex-print-buf-name " *ex-print*")
e07ff078 70(defvar viper-ex-print-buf (get-buffer-create viper-ex-print-buf-name))
52fa07ba
MK
71
72
4986c2c6
MK
73;;; ex-commands...
74
75(defun ex-cmd-obsolete (name)
76 (error "`%s': Obsolete command, not supported by Viper" name))
77
78(defun ex-cmd-not-yet (name)
79 (error "`%s': Command not implemented in Viper" name))
80
81;; alist entries: name (in any order), command, cont(??)
82;; If command is a string, then that is an alias to the real command
83;; to execute (for instance, ":m" -> ":move").
84;; command attributes:
85;; is-mashed: the command's args may be jammed right up against the command
86;; one-letter: this is a one-letter token. Any text appearing after
87;; the name gets appended as an argument for the command
88;; i.e. ":kabc" gets turned into (ex-mark "abc")
89(defconst ex-token-alist '(
90 ("!" (ex-command))
91 ("&" (ex-substitute t))
92 ("=" (ex-line-no))
93 (">" (ex-line "right"))
94 ("<" (ex-line "left"))
95 ("Buffer" (if ex-cycle-other-window
96 (viper-switch-to-buffer)
97 (viper-switch-to-buffer-other-window)))
98 ("Next" (ex-next (not ex-cycle-other-window)))
99 ("PreviousRelatedFile" (ex-next-related-buffer -1))
100 ("RelatedFile" (ex-next-related-buffer 1))
101 ("W" "Write")
102 ("WWrite" (save-some-buffers t))
103 ("Write" (save-some-buffers))
104 ("a" "append")
105 ("args" (ex-args))
106 ("buffer" (if ex-cycle-other-window
107 (viper-switch-to-buffer-other-window)
108 (viper-switch-to-buffer)))
109 ("c" "change")
110 ;; ch should be "change" but maintain old viper compatibility
111 ("ch" "chdir")
112 ("cd" (ex-cd))
113 ("chdir" (ex-cd))
114 ("copy" (ex-copy nil))
115 ("customize" (customize-group "viper"))
116 ("delete" (ex-delete))
117 ("edit" (ex-edit))
b9fe4732 118 ("file" (ex-set-visited-file-name))
4986c2c6
MK
119 ("g" "global")
120 ("global" (ex-global nil) is-mashed)
121 ("goto" (ex-goto))
122 ("help" (ex-help))
123 ("join" (ex-line "join"))
124 ("k" (ex-mark) one-letter)
125 ("kmark" (ex-mark))
126 ("m" "move")
4960e757 127 ("make" (ex-compile))
4986c2c6
MK
128 ; old viper doesn't specify a default for "ma" so leave it undefined
129 ("map" (ex-map))
130 ("mark" (ex-mark))
131 ("move" (ex-copy t))
132 ("next" (ex-next ex-cycle-other-window))
133 ("p" "print")
134 ("preserve" (ex-preserve))
241d963d 135 ("print" (ex-print))
4986c2c6
MK
136 ("put" (ex-put))
137 ("pwd" (ex-pwd))
138 ("quit" (ex-quit))
139 ("r" "read")
140 ("re" "read")
141 ("read" (ex-read))
142 ("recover" (ex-recover))
143 ("rewind" (ex-rewind))
144 ("s" "substitute")
145 ("su" "substitute")
146 ("sub" "substitute")
147 ("set" (ex-set))
148 ("shell" (ex-shell))
149 ("source" (ex-source))
a1506d29 150 ("stop" (suspend-emacs))
4986c2c6
MK
151 ("sr" (ex-substitute t t))
152 ("submitReport" (viper-submit-report))
153 ("substitute" (ex-substitute) is-mashed)
154 ("suspend" (suspend-emacs))
155 ("t" "transfer")
156 ("tag" (ex-tag))
157 ("transfer" (ex-copy nil))
158 ("u" "undo")
159 ("un" "undo")
160 ("undo" (viper-undo))
161 ("unmap" (ex-unmap))
162 ("v" "vglobal")
163 ("version" (viper-version))
164 ("vglobal" (ex-global t) is-mashed)
a1506d29 165 ("visual" (ex-edit))
4986c2c6
MK
166 ("w" "write")
167 ("wq" (ex-write t))
168 ("write" (ex-write nil))
169 ("xit" (ex-write t))
170 ("yank" (ex-yank))
171 ("~" (ex-substitute t t))
172
173 ("append" (ex-cmd-obsolete "append"))
174 ("change" (ex-cmd-obsolete "change"))
175 ("insert" (ex-cmd-obsolete "insert"))
176 ("open" (ex-cmd-obsolete "open"))
177
178 ("list" (ex-cmd-not-yet "list"))
4986c2c6
MK
179 ("z" (ex-cmd-not-yet "z"))
180 ("#" (ex-cmd-not-yet "#"))
181
182 ("abbreviate" (error "`%s': Vi abbreviations are obsolete. Use the more powerful Emacs abbrevs" ex-token))
183 ("unabbreviate" (error "`%s': Vi abbreviations are obsolete. Use the more powerful Emacs abbrevs" ex-token))
184 ))
185
186;; No code should touch anything in the alist entry! (other than the name,
187;; "car entry", of course) This way, changing this data structure
188;; requires changing only the following ex-cmd functions...
189
190;; Returns cmd if the command may be jammed right up against its
191;; arguments, nil if there must be a space.
192;; examples of mashable commands: g// g!// v// s// sno// sm//
193(defun ex-cmd-is-mashed-with-args (cmd)
194 (if (eq 'is-mashed (car (nthcdr 2 cmd))) cmd))
195
196;; Returns true if this is a one-letter command that may be followed
197;; by anything, no whitespace needed. This is a special-case for ":k".
198(defun ex-cmd-is-one-letter (cmd)
199 (if (eq 'one-letter (car (nthcdr 2 cmd))) cmd))
200
201;; Executes the function associated with the command
202(defun ex-cmd-execute (cmd)
203 (eval (cadr cmd)))
204
205;; If this is a one-letter magic command, splice in args.
206(defun ex-splice-args-in-1-letr-cmd (key list)
83f49acb
MK
207 (let ((oneletter (ex-cmd-is-one-letter (assoc (substring key 0 1) list))))
208 (if oneletter
4986c2c6 209 (list key
83f49acb 210 (append (cadr oneletter)
4986c2c6 211 (if (< 1 (length key)) (list (substring key 1))))
83f49acb 212 (car (cdr (cdr oneletter))) ))
4986c2c6
MK
213 ))
214
215
216;; Returns the alist entry for the appropriate key.
217;; Tries to complete the key before using it in the alist.
218;; If there is no appropriate key (no match or duplicate matches) return nil
219(defun ex-cmd-assoc (key list)
220 (let ((entry (try-completion key list))
4960e757 221 result)
4986c2c6
MK
222 (setq result (cond
223 ((eq entry t) (assoc key list))
224 ((stringp entry) (or (ex-splice-args-in-1-letr-cmd key list)
225 (assoc entry list)))
226 ((eq entry nil) (ex-splice-args-in-1-letr-cmd key list))
227 (t nil)
228 ))
229 ;; If we end up with an alias, look up the alias...
230 (if (stringp (cadr result))
231 (setq result (ex-cmd-assoc (cadr result) list)))
232 ;; and return the corresponding alist entry
233 result
234 ))
235
52fa07ba
MK
236
237;; A-list of Ex variables that can be set using the :set command.
a1506d29 238(defconst ex-variable-alist
52fa07ba 239 '(("wrapscan") ("ws") ("wrapmargin") ("wm")
e36a387d 240 ("tabstop-global") ("ts-g") ("tabstop") ("ts")
52fa07ba 241 ("showmatch") ("sm") ("shiftwidth") ("sw") ("shell") ("sh")
a1506d29 242 ("readonly") ("ro")
52fa07ba
MK
243 ("nowrapscan") ("nows") ("noshowmatch") ("nosm")
244 ("noreadonly") ("noro") ("nomagic") ("noma")
245 ("noignorecase") ("noic")
e36a387d 246 ("noautoindent-global") ("noai-g") ("noautoindent") ("noai")
52fa07ba 247 ("magic") ("ma") ("ignorecase") ("ic")
a1506d29
JB
248 ("autoindent-global") ("ai-g") ("autoindent") ("ai")
249 ("all")
52fa07ba 250 ))
bbe6126c 251
a1506d29 252
bbe6126c 253
52fa07ba
MK
254;; Token recognized during parsing of Ex commands (e.g., "read", "comma")
255(defvar ex-token nil)
256
a1506d29 257;; Type of token.
52fa07ba
MK
258;; If non-nil, gives type of address; if nil, it is a command.
259(defvar ex-token-type nil)
260
261;; List of addresses passed to Ex command
262(defvar ex-addresses nil)
263
8e41a31c 264;; This flag is supposed to be set only by `#', `print', and `list',
3af0304a
MK
265;; none of which is implemented. So, it and the pices of the code it
266;; controls are dead weight. We keep it just in case this might be
8e41a31c 267;; needed in the future.
52fa07ba
MK
268(defvar ex-flag nil)
269
270;; "buffer" where Ex commands keep deleted data.
271;; In Emacs terms, this is a register.
272(defvar ex-buffer nil)
273
274;; Value of ex count.
275(defvar ex-count nil)
276
1e70790f 277;; Flag indicating that :global Ex command is being executed.
52fa07ba 278(defvar ex-g-flag nil)
1e70790f 279;; Flag indicating that :vglobal Ex command is being executed.
52fa07ba 280(defvar ex-g-variant nil)
241d963d
MK
281;; Marks to operate on during a :global Ex command.
282(defvar ex-g-marks nil)
52fa07ba
MK
283
284;; Save reg-exp used in substitute.
285(defvar ex-reg-exp nil)
286
287
288;; Replace pattern for substitute.
289(defvar ex-repl nil)
290
291;; Pattern for global command.
292(defvar ex-g-pat nil)
293
1e70790f 294(defcustom ex-unix-type-shell
52fa07ba
MK
295 (let ((case-fold-search t))
296 (and (stringp shell-file-name)
297 (string-match
298 (concat
299 "\\("
300 "csh$\\|csh.exe$"
301 "\\|"
302 "ksh$\\|ksh.exe$"
303 "\\|"
304 "^sh$\\|sh.exe$"
305 "\\|"
306 "[^a-z]sh$\\|[^a-z]sh.exe$"
307 "\\|"
308 "bash$\\|bash.exe$"
309 "\\)")
310 shell-file-name)))
1e70790f 311 "Is the user using a unix-type shell under a non-OS?"
5ee3742d 312 :type 'boolean
1e70790f 313 :group 'viper-ex)
52fa07ba 314
1e70790f 315(defcustom ex-unix-type-shell-options
52fa07ba
MK
316 (let ((case-fold-search t))
317 (if ex-unix-type-shell
318 (cond ((string-match "\\(csh$\\|csh.exe$\\)" shell-file-name)
319 "-f") ; csh: do it fast
320 ((string-match "\\(bash$\\|bash.exe$\\)" shell-file-name)
321 "-noprofile") ; bash: ignore .profile
322 )))
a1506d29 323 "Options to pass to the Unix-style shell.
1e70790f 324Don't put `-c' here, as it is added automatically."
ee6a3436 325 :type '(choice (const nil) string)
1e70790f 326 :group 'viper-ex)
52fa07ba 327
4960e757 328(defcustom ex-compile-command "make"
c760d040 329 "The command to run when the user types :make."
4960e757
MK
330 :type 'string
331 :group 'viper-ex)
332
3af0304a
MK
333(defcustom viper-glob-function
334 (cond (ex-unix-type-shell 'viper-glob-unix-files)
335 ((eq system-type 'emx) 'viper-glob-mswindows-files) ; OS/2
336 (viper-ms-style-os-p 'viper-glob-mswindows-files) ; Microsoft OS
337 (viper-vms-os-p 'viper-glob-unix-files) ; VMS
338 (t 'viper-glob-unix-files) ; presumably UNIX
339 )
340 "Expand the file spec containing wildcard symbols.
341The default tries to set this variable to work with Unix, Windows,
342OS/2, and VMS.
343
a1506d29 344However, if it doesn't work right for some types of Unix shells or some OS,
3af0304a
MK
345the user should supply the appropriate function and set this variable to the
346corresponding function symbol."
347 :type 'symbol
348 :group 'viper-ex)
349
bbe6126c 350
52fa07ba
MK
351;; Remembers the previous Ex tag.
352(defvar ex-tag nil)
bbe6126c 353
52fa07ba
MK
354;; file used by Ex commands like :r, :w, :n
355(defvar ex-file nil)
bbe6126c 356
52fa07ba
MK
357;; If t, tells Ex that this is a variant-command, i.e., w>>, r!, etc.
358(defvar ex-variant nil)
bbe6126c 359
52fa07ba
MK
360;; Specified the offset of an Ex command, such as :read.
361(defvar ex-offset nil)
bbe6126c 362
52fa07ba
MK
363;; Tells Ex that this is a w>> command.
364(defvar ex-append nil)
bbe6126c 365
52fa07ba
MK
366;; File containing the shell command to be executed at Ex prompt,
367;; e.g., :r !date
368(defvar ex-cmdfile nil)
328b4b70 369(defvar ex-cmdfile-args "")
a1506d29 370
8626cfa2 371;; flag used in viper-ex-read-file-name to indicate that we may be reading
3af0304a 372;; multiple file names. Used for :edit and :next
8626cfa2 373(defvar viper-keep-reading-filename nil)
bbe6126c 374
1e70790f 375(defcustom ex-cycle-other-window t
52fa07ba 376 "*If t, :n and :b cycles through files and buffers in other window.
3af0304a 377Then :N and :B cycles in the current window. If nil, this behavior is
1e70790f
MK
378reversed."
379 :type 'boolean
380 :group 'viper-ex)
bbe6126c 381
1e70790f
MK
382(defcustom ex-cycle-through-non-files nil
383 "*Cycle through *scratch* and other buffers that don't visit any file."
384 :type 'boolean
385 :group 'viper-ex)
bbe6126c 386
52fa07ba 387;; Last shell command executed with :! command.
8626cfa2 388(defvar viper-ex-last-shell-com nil)
a1506d29 389
52fa07ba 390;; Indicates if Minibuffer was exited temporarily in Ex-command.
8626cfa2 391(defvar viper-incomplete-ex-cmd nil)
a1506d29 392
52fa07ba 393;; Remembers the last ex-command prompt.
8626cfa2 394(defvar viper-last-ex-prompt "")
bbe6126c 395
bbe6126c 396
52fa07ba 397;; Get a complete ex command
8626cfa2 398(defun viper-get-ex-com-subr ()
4986c2c6 399 (let (cmd case-fold-search)
52fa07ba
MK
400 (set-mark (point))
401 (re-search-forward "[a-zA-Z][a-zA-Z]*")
402 (setq ex-token-type 'command)
403 (setq ex-token (buffer-substring (point) (mark t)))
4986c2c6
MK
404 (setq cmd (ex-cmd-assoc ex-token ex-token-alist))
405 (if cmd
406 (setq ex-token (car cmd))
407 (setq ex-token-type 'non-command))
52fa07ba 408 ))
bbe6126c 409
52fa07ba
MK
410;; Get an ex-token which is either an address or a command.
411;; A token has a type, \(command, address, end-mark\), and a value
8626cfa2 412(defun viper-get-ex-token ()
52fa07ba 413 (save-window-excursion
a1506d29 414 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 415 (set-buffer viper-ex-work-buf)
52fa07ba 416 (skip-chars-forward " \t|")
96dffd25
MK
417 (let ((case-fold-search t))
418 (cond ((looking-at "#")
419 (setq ex-token-type 'command)
420 (setq ex-token (char-to-string (following-char)))
421 (forward-char 1))
422 ((looking-at "[a-z]") (viper-get-ex-com-subr))
423 ((looking-at "\\.")
424 (forward-char 1)
425 (setq ex-token-type 'dot))
426 ((looking-at "[0-9]")
427 (set-mark (point))
428 (re-search-forward "[0-9]*")
429 (setq ex-token-type
430 (cond ((eq ex-token-type 'plus) 'add-number)
431 ((eq ex-token-type 'minus) 'sub-number)
432 (t 'abs-number)))
433 (setq ex-token
027a4b6b 434 (string-to-number (buffer-substring (point) (mark t)))))
96dffd25
MK
435 ((looking-at "\\$")
436 (forward-char 1)
437 (setq ex-token-type 'end))
438 ((looking-at "%")
439 (forward-char 1)
440 (setq ex-token-type 'whole))
441 ((looking-at "+")
442 (cond ((or (looking-at "+[-+]") (looking-at "+[\n|]"))
443 (forward-char 1)
444 (insert "1")
445 (backward-char 1)
52fa07ba 446 (setq ex-token-type 'plus))
96dffd25
MK
447 ((looking-at "+[0-9]")
448 (forward-char 1)
449 (setq ex-token-type 'plus))
450 (t
451 (error viper-BadAddress))))
452 ((looking-at "-")
453 (cond ((or (looking-at "-[-+]") (looking-at "-[\n|]"))
454 (forward-char 1)
455 (insert "1")
456 (backward-char 1)
457 (setq ex-token-type 'minus))
458 ((looking-at "-[0-9]")
459 (forward-char 1)
460 (setq ex-token-type 'minus))
461 (t
462 (error viper-BadAddress))))
463 ((looking-at "/")
464 (forward-char 1)
465 (set-mark (point))
466 (let ((cont t))
467 (while (and (not (eolp)) cont)
468 ;;(re-search-forward "[^/]*/")
469 (re-search-forward "[^/]*\\(/\\|\n\\)")
470 (if (not (viper-looking-back "[^\\\\]\\(\\\\\\\\\\)*\\\\/"))
471 (setq cont nil))))
472 (backward-char 1)
473 (setq ex-token (buffer-substring (point) (mark t)))
474 (if (looking-at "/") (forward-char 1))
475 (setq ex-token-type 'search-forward))
476 ((looking-at "\\?")
477 (forward-char 1)
478 (set-mark (point))
479 (let ((cont t))
480 (while (and (not (eolp)) cont)
481 ;;(re-search-forward "[^\\?]*\\?")
482 (re-search-forward "[^\\?]*\\(\\?\\|\n\\)")
483 (if (not (viper-looking-back "[^\\\\]\\(\\\\\\\\\\)*\\\\\\?"))
484 (setq cont nil))
485 (backward-char 1)
486 (if (not (looking-at "\n")) (forward-char 1))))
487 (setq ex-token-type 'search-backward)
488 (setq ex-token (buffer-substring (1- (point)) (mark t))))
489 ((looking-at ",")
490 (forward-char 1)
491 (setq ex-token-type 'comma))
492 ((looking-at ";")
493 (forward-char 1)
494 (setq ex-token-type 'semi-colon))
495 ((looking-at "[!=><&~]")
496 (setq ex-token-type 'command)
497 (setq ex-token (char-to-string (following-char)))
498 (forward-char 1))
499 ((looking-at "'")
500 (setq ex-token-type 'goto-mark)
501 (forward-char 1)
502 (cond ((looking-at "'") (setq ex-token nil))
503 ((looking-at "[a-z]") (setq ex-token (following-char)))
504 (t (error "Marks are ' and a-z")))
505 (forward-char 1))
506 ((looking-at "\n")
507 (setq ex-token-type 'end-mark)
508 (setq ex-token "goto"))
509 (t
510 (error viper-BadExCommand))))))
bbe6126c 511
3af0304a
MK
512;; Reads Ex command. Tries to determine if it has to exit because command
513;; is complete or invalid. If not, keeps reading command.
52fa07ba
MK
514(defun ex-cmd-read-exit ()
515 (interactive)
8626cfa2 516 (setq viper-incomplete-ex-cmd t)
52fa07ba
MK
517 (let ((quit-regex1 (concat
518 "\\(" "set[ \t]*"
519 "\\|" "edit[ \t]*"
520 "\\|" "[nN]ext[ \t]*"
521 "\\|" "unm[ \t]*"
522 "\\|" "^[ \t]*rep"
523 "\\)"))
524 (quit-regex2 (concat
525 "[a-zA-Z][ \t]*"
526 "\\(" "!" "\\|" ">>"
527 "\\|" "\\+[0-9]+"
528 "\\)"
529 "*[ \t]*$"))
530 (stay-regex (concat
531 "\\(" "^[ \t]*$"
1e70790f 532 "\\|" "[?/].*"
52fa07ba
MK
533 "\\|" "[ktgjmsz][ \t]*$"
534 "\\|" "^[ \t]*ab.*"
535 "\\|" "tr[ansfer \t]*"
536 "\\|" "sr[ \t]*"
537 "\\|" "mo.*"
538 "\\|" "^[ \t]*k?ma[^p]*"
539 "\\|" "^[ \t]*fi.*"
540 "\\|" "v?gl.*"
541 "\\|" "[vg][ \t]*$"
542 "\\|" "jo.*"
543 "\\|" "^[ \t]*ta.*"
544 "\\|" "^[ \t]*una.*"
2eb4bdca
MK
545 ;; don't jump up in :s command
546 "\\|" "^[ \t]*\\([`'][a-z]\\|[.,%]\\)*[ \t]*su.*"
547 "\\|" "^[ \t]*\\([`'][a-z]\\|[.,%]\\)*[ \t]*s[^a-z].*"
328b4b70
MK
548 "\\|" "['`][a-z][ \t]*"
549 ;; r! assumes that the next one is a shell command
550 "\\|" "\\(r\\|re\\|rea\\|read\\)[ \t]*!"
551 ;; w ! assumes that the next one is a shell command
552 "\\|" "\\(w\\|wr\\|wri\\|writ.?\\)[ \t]+!"
52fa07ba
MK
553 "\\|" "![ \t]*[a-zA-Z].*"
554 "\\)"
555 "!*")))
a1506d29 556
52fa07ba 557 (save-window-excursion ;; put cursor at the end of the Ex working buffer
a1506d29 558 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 559 (set-buffer viper-ex-work-buf)
52fa07ba 560 (goto-char (point-max)))
8626cfa2
MK
561 (cond ((viper-looking-back quit-regex1) (exit-minibuffer))
562 ((viper-looking-back stay-regex) (insert " "))
563 ((viper-looking-back quit-regex2) (exit-minibuffer))
52fa07ba 564 (t (insert " ")))))
a1506d29 565
52fa07ba
MK
566;; complete Ex command
567(defun ex-cmd-complete ()
568 (interactive)
569 (let (save-pos dist compl-list string-to-complete completion-result)
a1506d29 570
52fa07ba
MK
571 (save-excursion
572 (setq dist (skip-chars-backward "[a-zA-Z!=>&~]")
573 save-pos (point)))
a1506d29 574
52fa07ba 575 (if (or (= dist 0)
8626cfa2
MK
576 (viper-looking-back "\\([ \t]*['`][ \t]*[a-z]*\\)")
577 (viper-looking-back
3af0304a 578 "^[ \t]*[a-zA-Z!=>&~][ \t]*[/?]*[ \t]+[a-zA-Z!=>&~]+"))
52fa07ba
MK
579 ;; Preceding characters are not the ones allowed in an Ex command
580 ;; or we have typed past command name.
3af0304a 581 ;; Note: we didn't do parsing, so there can be surprises.
8626cfa2
MK
582 (if (or (viper-looking-back "[a-zA-Z!=>&~][ \t]*[/?]*[ \t]*")
583 (viper-looking-back "\\([ \t]*['`][ \t]*[a-z]*\\)")
52fa07ba
MK
584 (looking-at "[^ \t\n\C-m]"))
585 nil
a1506d29 586 (with-output-to-temp-buffer "*Completions*"
52fa07ba 587 (display-completion-list
8626cfa2 588 (viper-alist-to-list ex-token-alist))))
52fa07ba
MK
589 ;; Preceding chars may be part of a command name
590 (setq string-to-complete (buffer-substring save-pos (point)))
591 (setq completion-result
592 (try-completion string-to-complete ex-token-alist))
a1506d29 593
52fa07ba 594 (cond ((eq completion-result t) ; exact match--do nothing
8626cfa2 595 (viper-tmp-insert-at-eob " (Sole completion)"))
52fa07ba 596 ((eq completion-result nil)
8626cfa2 597 (viper-tmp-insert-at-eob " (No match)"))
52fa07ba
MK
598 (t ;; partial completion
599 (goto-char save-pos)
600 (delete-region (point) (point-max))
601 (insert completion-result)
602 (let (case-fold-search)
603 (setq compl-list
8626cfa2 604 (viper-filter-alist (concat "^" completion-result)
52fa07ba
MK
605 ex-token-alist)))
606 (if (> (length compl-list) 1)
a1506d29 607 (with-output-to-temp-buffer "*Completions*"
52fa07ba 608 (display-completion-list
8626cfa2 609 (viper-alist-to-list (reverse compl-list)))))))
52fa07ba 610 )))
bbe6126c 611
a1506d29
JB
612
613;; Read Ex commands
3af0304a
MK
614;; ARG is a prefix argument. If given, the ex command runs on the region
615;;(without the user having to specify the address :a,b
616;; STRING is the command to execute. If nil, then Viper asks you to enter the
a1506d29 617;; command.
c004db97
MK
618(defun viper-ex (arg &optional string)
619 (interactive "P")
52fa07ba
MK
620 (or string
621 (setq ex-g-flag nil
622 ex-g-variant nil))
623 (let* ((map (copy-keymap minibuffer-local-map))
624 (address nil)
625 (cont t)
626 (dot (point))
c004db97
MK
627 reg-beg-line reg-end-line
628 reg-beg reg-end
629 initial-str
52fa07ba 630 prev-token-type com-str)
8626cfa2 631 (viper-add-keymap viper-ex-cmd-map map)
c004db97
MK
632
633 (if arg
634 (progn
635 (viper-enlarge-region (mark t) (point))
636 (if (> (point) (mark t))
637 (setq reg-beg (mark t)
638 reg-end (point))
639 (setq reg-end (mark t)
640 reg-beg (point)))
641 (save-excursion
642 (goto-char reg-beg)
643 (setq reg-beg-line (1+ (count-lines (point-min) (point)))
644 reg-end-line
645 (+ reg-beg-line (count-lines reg-beg reg-end) -1)))))
646 (if reg-beg-line
647 (setq initial-str (format "%d,%d" reg-beg-line reg-end-line)))
a1506d29
JB
648
649 (setq com-str
33468a59
MK
650 (if string
651 (concat initial-str string)
652 (viper-read-string-with-history
653 ":"
654 initial-str
655 'viper-ex-history
656 ;; no default when working on region
657 (if initial-str
658 nil
659 (car viper-ex-history))
660 map
661 (if initial-str
662 " [Type command to execute on current region]"))))
52fa07ba
MK
663 (save-window-excursion
664 ;; just a precaution
a1506d29 665 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 666 (set-buffer viper-ex-work-buf)
52fa07ba
MK
667 (delete-region (point-min) (point-max))
668 (insert com-str "\n")
669 (goto-char (point-min)))
670 (setq ex-token-type nil
671 ex-addresses nil)
672 (while cont
8626cfa2 673 (viper-get-ex-token)
52fa07ba
MK
674 (cond ((memq ex-token-type '(command end-mark))
675 (if address (setq ex-addresses (cons address ex-addresses)))
4986c2c6
MK
676 (viper-deactivate-mark)
677 (let ((cmd (ex-cmd-assoc ex-token ex-token-alist)))
678 (if (null cmd)
679 (error "`%s': %s" ex-token viper-BadExCommand))
680 (ex-cmd-execute cmd)
681 (if (or (ex-cmd-is-mashed-with-args cmd)
682 (ex-cmd-is-one-letter cmd))
683 (setq cont nil)
684 (save-excursion
685 (save-window-excursion
686 (setq viper-ex-work-buf
687 (get-buffer-create viper-ex-work-buf-name))
688 (set-buffer viper-ex-work-buf)
689 (skip-chars-forward " \t")
690 (cond ((looking-at "|")
691 (forward-char 1))
692 ((looking-at "\n")
693 (setq cont nil))
694 (t (error
695 "`%s': %s" ex-token viper-SpuriousText)))
696 )))
697 ))
52fa07ba 698 ((eq ex-token-type 'non-command)
8626cfa2 699 (error "`%s': %s" ex-token viper-BadExCommand))
52fa07ba
MK
700 ((eq ex-token-type 'whole)
701 (setq address nil)
702 (setq ex-addresses
703 (if ex-addresses
704 (cons (point-max) ex-addresses)
705 (cons (point-max) (cons (point-min) ex-addresses)))))
706 ((eq ex-token-type 'comma)
707 (if (eq prev-token-type 'whole)
708 (setq address (point-min)))
709 (setq ex-addresses
710 (cons (if (null address) (point) address) ex-addresses)))
711 ((eq ex-token-type 'semi-colon)
712 (if (eq prev-token-type 'whole)
713 (setq address (point-min)))
714 (if address (setq dot address))
715 (setq ex-addresses
716 (cons (if (null address) (point) address) ex-addresses)))
8626cfa2 717 (t (let ((ans (viper-get-ex-address-subr address dot)))
52fa07ba
MK
718 (if ans (setq address ans)))))
719 (setq prev-token-type ex-token-type))))
a1506d29 720
bbe6126c 721
52fa07ba 722;; Get a regular expression and set `ex-variant', if found
2d341681
MK
723;; Viper doesn't parse the substitution or search patterns.
724;; In particular, it doesn't expand ~ into the last substitution.
8626cfa2 725(defun viper-get-ex-pat ()
52fa07ba 726 (save-window-excursion
8626cfa2
MK
727 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
728 (set-buffer viper-ex-work-buf)
52fa07ba
MK
729 (skip-chars-forward " \t")
730 (if (looking-at "!")
2eb4bdca 731 ;; this is probably a variant command r!
52fa07ba
MK
732 (progn
733 (setq ex-g-variant (not ex-g-variant)
734 ex-g-flag (not ex-g-flag))
735 (forward-char 1)
736 (skip-chars-forward " \t")))
737 (let ((c (following-char)))
2eb4bdca
MK
738 (cond ((string-match "[0-9A-Za-z]" (format "%c" c))
739 (error
740 "Global regexp must be inside matching non-alphanumeric chars"))
741 ((= c ??) (error "`?' is not an allowed pattern delimiter here")))
52fa07ba
MK
742 (if (looking-at "[^\\\\\n]")
743 (progn
744 (forward-char 1)
745 (set-mark (point))
746 (let ((cont t))
2eb4bdca
MK
747 ;; the use of eobp instead of eolp permits the use of newlines in
748 ;; pat2 in s/pat1/pat2/
749 (while (and (not (eobp)) cont)
52fa07ba
MK
750 (if (not (re-search-forward (format "[^%c]*%c" c c) nil t))
751 (if (member ex-token '("global" "vglobal"))
2eb4bdca 752 (error "Missing closing delimiter for global regexp")
52fa07ba 753 (goto-char (point-max))))
8626cfa2 754 (if (not (viper-looking-back
52fa07ba 755 (format "[^\\\\]\\(\\\\\\\\\\)*\\\\%c" c)))
2eb4bdca
MK
756 (setq cont nil)
757 ;; we are at an escaped delimiter: unescape it and continue
758 (delete-backward-char 2)
759 (insert c)
760 (if (eolp)
761 ;; if at eol, exit loop and go to next line
762 ;; later, delim will be inserted at the end
763 (progn
764 (setq cont nil)
765 (forward-char))))
766 ))
52fa07ba
MK
767 (setq ex-token
768 (if (= (mark t) (point)) ""
769 (buffer-substring (1- (point)) (mark t))))
1e70790f 770 (backward-char 1)
2eb4bdca 771 ;; if the user didn't insert the final pattern delimiter, we're
3af0304a 772 ;; at newline now. In this case, insert the initial delimiter
1e70790f 773 ;; specified in variable c
2eb4bdca 774 (if (eolp)
1e70790f 775 (progn
2eb4bdca
MK
776 (insert c)
777 (backward-char 1)))
1e70790f 778 )
52fa07ba
MK
779 (setq ex-token nil))
780 c)))
bbe6126c 781
52fa07ba 782;; Get an Ex option g or c
8626cfa2 783(defun viper-get-ex-opt-gc (c)
52fa07ba 784 (save-window-excursion
a1506d29 785 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 786 (set-buffer viper-ex-work-buf)
52fa07ba
MK
787 (if (looking-at (format "%c" c)) (forward-char 1))
788 (skip-chars-forward " \t")
789 (cond ((looking-at "g")
790 (setq ex-token "g")
791 (forward-char 1)
792 t)
793 ((looking-at "c")
794 (setq ex-token "c")
795 (forward-char 1)
796 t)
797 (t nil))))
798
799;; Compute default addresses. WHOLE-FLAG means use the whole buffer
8626cfa2 800(defun viper-default-ex-addresses (&optional whole-flag)
52fa07ba
MK
801 (cond ((null ex-addresses)
802 (setq ex-addresses
803 (if whole-flag
2eb4bdca
MK
804 (list (point-max) (point-min))
805 (list (point) (point)))))
52fa07ba
MK
806 ((null (cdr ex-addresses))
807 (setq ex-addresses
808 (cons (car ex-addresses) ex-addresses)))))
809
810;; Get an ex-address as a marker and set ex-flag if a flag is found
8626cfa2 811(defun viper-get-ex-address ()
9b70a748
MK
812 (let ((address (point-marker))
813 (cont t))
52fa07ba
MK
814 (setq ex-token "")
815 (setq ex-flag nil)
816 (while cont
8626cfa2 817 (viper-get-ex-token)
52fa07ba
MK
818 (cond ((eq ex-token-type 'command)
819 (if (member ex-token '("print" "list" "#"))
820 (progn
821 (setq ex-flag t
822 cont nil))
823 (error "Address expected in this Ex command")))
824 ((eq ex-token-type 'end-mark)
825 (setq cont nil))
826 ((eq ex-token-type 'whole)
827 (error "Trailing address expected"))
828 ((eq ex-token-type 'comma)
8626cfa2
MK
829 (error "`%s': %s" ex-token viper-SpuriousText))
830 (t (let ((ans (viper-get-ex-address-subr address (point-marker))))
52fa07ba
MK
831 (if ans (setq address ans))))))
832 address))
833
834;; Returns an address as a point
8626cfa2 835(defun viper-get-ex-address-subr (old-address dot)
52fa07ba
MK
836 (let ((address nil))
837 (if (null old-address) (setq old-address dot))
838 (cond ((eq ex-token-type 'dot)
839 (setq address dot))
840 ((eq ex-token-type 'add-number)
841 (save-excursion
842 (goto-char old-address)
843 (forward-line (if (= old-address 0) (1- ex-token) ex-token))
844 (setq address (point-marker))))
845 ((eq ex-token-type 'sub-number)
846 (save-excursion
847 (goto-char old-address)
848 (forward-line (- ex-token))
849 (setq address (point-marker))))
850 ((eq ex-token-type 'abs-number)
851 (save-excursion
852 (goto-char (point-min))
853 (if (= ex-token 0) (setq address 0)
854 (forward-line (1- ex-token))
855 (setq address (point-marker)))))
856 ((eq ex-token-type 'end)
2d341681
MK
857 (save-excursion
858 (goto-char (1- (point-max)))
859 (setq address (point-marker))))
52fa07ba
MK
860 ((eq ex-token-type 'plus) t) ; do nothing
861 ((eq ex-token-type 'minus) t) ; do nothing
862 ((eq ex-token-type 'search-forward)
863 (save-excursion
864 (ex-search-address t)
865 (setq address (point-marker))))
866 ((eq ex-token-type 'search-backward)
867 (save-excursion
868 (ex-search-address nil)
869 (setq address (point-marker))))
870 ((eq ex-token-type 'goto-mark)
871 (save-excursion
872 (if (null ex-token)
873 (exchange-point-and-mark)
a1506d29 874 (goto-char
4960e757
MK
875 (viper-register-to-point
876 (viper-int-to-char (1+ (- ex-token ?a))) 'enforce-buffer)))
52fa07ba
MK
877 (setq address (point-marker)))))
878 address))
879
880
881;; Search pattern and set address
2d341681 882;; Doesn't wrap around. Should it?
52fa07ba
MK
883(defun ex-search-address (forward)
884 (if (string= ex-token "")
8626cfa2
MK
885 (if (null viper-s-string)
886 (error viper-NoPrevSearch)
887 (setq ex-token viper-s-string))
888 (setq viper-s-string ex-token))
52fa07ba
MK
889 (if forward
890 (progn
891 (forward-line 1)
892 (re-search-forward ex-token))
893 (forward-line -1)
894 (re-search-backward ex-token)))
895
896;; Get a buffer name and set `ex-count' and `ex-flag' if found
8626cfa2 897(defun viper-get-ex-buffer ()
52fa07ba
MK
898 (setq ex-buffer nil)
899 (setq ex-count nil)
900 (setq ex-flag nil)
901 (save-window-excursion
a1506d29 902 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 903 (set-buffer viper-ex-work-buf)
52fa07ba
MK
904 (skip-chars-forward " \t")
905 (if (looking-at "[a-zA-Z]")
906 (progn
907 (setq ex-buffer (following-char))
908 (forward-char 1)
909 (skip-chars-forward " \t")))
910 (if (looking-at "[0-9]")
911 (progn
912 (set-mark (point))
913 (re-search-forward "[0-9][0-9]*")
027a4b6b 914 (setq ex-count (string-to-number (buffer-substring (point) (mark t))))
52fa07ba
MK
915 (skip-chars-forward " \t")))
916 (if (looking-at "[pl#]")
917 (progn
918 (setq ex-flag t)
919 (forward-char 1)))
920 (if (not (looking-at "[\n|]"))
8626cfa2 921 (error "`%s': %s" ex-token viper-SpuriousText))))
52fa07ba 922
8626cfa2 923(defun viper-get-ex-count ()
52fa07ba
MK
924 (setq ex-variant nil
925 ex-count nil
926 ex-flag nil)
927 (save-window-excursion
a1506d29 928 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 929 (set-buffer viper-ex-work-buf)
52fa07ba
MK
930 (skip-chars-forward " \t")
931 (if (looking-at "!")
932 (progn
933 (setq ex-variant t)
934 (forward-char 1)))
935 (skip-chars-forward " \t")
936 (if (looking-at "[0-9]")
937 (progn
938 (set-mark (point))
939 (re-search-forward "[0-9][0-9]*")
027a4b6b 940 (setq ex-count (string-to-number (buffer-substring (point) (mark t))))
52fa07ba
MK
941 (skip-chars-forward " \t")))
942 (if (looking-at "[pl#]")
943 (progn
944 (setq ex-flag t)
945 (forward-char 1)))
946 (if (not (looking-at "[\n|]"))
947 (error "`%s': %s"
8626cfa2
MK
948 (buffer-substring
949 (point-min) (1- (point-max))) viper-BadExCommand))))
52fa07ba
MK
950
951;; Expand \% and \# in ex command
952(defun ex-expand-filsyms (cmd buf)
953 (let (cf pf ret)
a1506d29 954 (save-excursion
52fa07ba
MK
955 (set-buffer buf)
956 (setq cf buffer-file-name)
957 (setq pf (ex-next nil t))) ; this finds alternative file name
958 (if (and (null cf) (string-match "[^\\]%\\|\\`%" cmd))
959 (error "No current file to substitute for `%%'"))
960 (if (and (null pf) (string-match "[^\\]#\\|\\`#" cmd))
961 (error "No alternate file to substitute for `#'"))
962 (save-excursion
8626cfa2 963 (set-buffer (get-buffer-create viper-ex-tmp-buf-name))
52fa07ba
MK
964 (erase-buffer)
965 (insert cmd)
966 (goto-char (point-min))
967 (while (re-search-forward "%\\|#" nil t)
a1506d29 968 (let ((data (match-data))
52fa07ba 969 (char (buffer-substring (match-beginning 0) (match-end 0))))
8626cfa2 970 (if (viper-looking-back (concat "\\\\" char))
52fa07ba 971 (replace-match char)
2eb4bdca 972 (store-match-data data)
52fa07ba
MK
973 (if (string= char "%")
974 (replace-match cf)
975 (replace-match pf)))))
976 (end-of-line)
977 (setq ret (buffer-substring (point-min) (point)))
978 (message "%s" ret))
979 ret))
980
328b4b70
MK
981;; Get a file name and set `ex-variant', `ex-append' and `ex-offset' if found
982;; If it is r!, then get the command name and whatever args
8626cfa2 983(defun viper-get-ex-file ()
52fa07ba
MK
984 (let (prompt)
985 (setq ex-file nil
986 ex-variant nil
987 ex-append nil
988 ex-offset nil
328b4b70
MK
989 ex-cmdfile nil
990 ex-cmdfile-args "")
52fa07ba
MK
991 (save-excursion
992 (save-window-excursion
a1506d29 993 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 994 (set-buffer viper-ex-work-buf)
52fa07ba
MK
995 (skip-chars-forward " \t")
996 (if (looking-at "!")
8626cfa2 997 (if (and (not (viper-looking-back "[ \t]"))
52fa07ba
MK
998 ;; read doesn't have a corresponding :r! form, so ! is
999 ;; immediately interpreted as a shell command.
1000 (not (string= ex-token "read")))
1001 (progn
1002 (setq ex-variant t)
1003 (forward-char 1)
1004 (skip-chars-forward " \t"))
1005 (setq ex-cmdfile t)
1006 (forward-char 1)
1007 (skip-chars-forward " \t")))
1008 (if (looking-at ">>")
1009 (progn
1010 (setq ex-append t
1011 ex-variant t)
1012 (forward-char 2)
1013 (skip-chars-forward " \t")))
1014 (if (looking-at "+")
1015 (progn
1016 (forward-char 1)
1017 (set-mark (point))
1018 (re-search-forward "[ \t\n]")
1019 (backward-char 1)
1020 (setq ex-offset (buffer-substring (point) (mark t)))
1021 (forward-char 1)
1022 (skip-chars-forward " \t")))
1023 ;; this takes care of :r, :w, etc., when they get file names
1024 ;; from the history list
1025 (if (member ex-token '("read" "write" "edit" "visual" "next"))
1026 (progn
1027 (setq ex-file (buffer-substring (point) (1- (point-max))))
1028 (setq ex-file
1029 ;; For :e, match multiple non-white strings separated
3af0304a 1030 ;; by white. For others, find the first non-white string
52fa07ba
MK
1031 (if (string-match
1032 (if (string= ex-token "edit")
1033 "[^ \t\n]+\\([ \t]+[^ \t\n]+\\)*"
1034 "[^ \t\n]+")
1035 ex-file)
1036 (progn
1037 ;; if file name comes from history, don't leave
1038 ;; minibuffer when the user types space
8626cfa2 1039 (setq viper-incomplete-ex-cmd nil)
328b4b70
MK
1040 (setq ex-cmdfile-args
1041 (substring ex-file (match-end 0) nil))
52fa07ba
MK
1042 ;; this must be the last clause in this progn
1043 (substring ex-file (match-beginning 0) (match-end 0))
1044 )
1045 ""))
1046 ;; this leaves only the command name in the work area
1047 ;; file names are gone
1048 (delete-region (point) (1- (point-max)))
1049 ))
1050 (goto-char (point-max))
1051 (skip-chars-backward " \t\n")
1052 (setq prompt (buffer-substring (point-min) (point)))
1053 ))
a1506d29 1054
8626cfa2 1055 (setq viper-last-ex-prompt prompt)
a1506d29 1056
52fa07ba 1057 ;; If we just finished reading command, redisplay prompt
8626cfa2
MK
1058 (if viper-incomplete-ex-cmd
1059 (setq ex-file (viper-ex-read-file-name (format ":%s " prompt)))
52fa07ba
MK
1060 ;; file was typed in-line
1061 (setq ex-file (or ex-file "")))
1062 ))
bbe6126c 1063
bbe6126c 1064
3af0304a 1065;; Completes file name or exits minibuffer. If Ex command accepts multiple
52fa07ba 1066;; file names, arranges to re-enter the minibuffer.
8626cfa2 1067(defun viper-complete-filename-or-exit ()
52fa07ba 1068 (interactive)
a1506d29
JB
1069 (setq viper-keep-reading-filename t)
1070 ;; don't exit if directory---ex-commands don't
52fa07ba
MK
1071 (cond ((ex-cmd-accepts-multiple-files-p ex-token) (exit-minibuffer))
1072 ;; apparently the argument to an Ex command is
1073 ;; supposed to be a shell command
8626cfa2 1074 ((viper-looking-back "^[ \t]*!.*")
52fa07ba
MK
1075 (setq ex-cmdfile t)
1076 (insert " "))
1077 (t
1078 (setq ex-cmdfile nil)
1079 (minibuffer-complete-word))))
bbe6126c 1080
8626cfa2 1081(defun viper-handle-! ()
52fa07ba
MK
1082 (interactive)
1083 (if (and (string=
8626cfa2 1084 (buffer-string) (viper-abbreviate-file-name default-directory))
52fa07ba
MK
1085 (member ex-token '("read" "write")))
1086 (erase-buffer))
1087 (insert "!"))
1088
1089(defun ex-cmd-accepts-multiple-files-p (token)
1090 (member token '("edit" "next" "Next")))
1091
328b4b70 1092;; Read file name from the minibuffer in an ex command.
52fa07ba
MK
1093;; If user doesn't enter anything, then "" is returned, i.e., the
1094;; prompt-directory is not returned.
8626cfa2 1095(defun viper-ex-read-file-name (prompt)
52fa07ba
MK
1096 (let* ((str "")
1097 (minibuffer-local-completion-map
1098 (copy-keymap minibuffer-local-completion-map))
1099 beg end cont val)
a1506d29 1100
8626cfa2 1101 (viper-add-keymap ex-read-filename-map
e83d1fe8 1102 (if (featurep 'emacs)
52fa07ba 1103 minibuffer-local-completion-map
a1506d29
JB
1104 read-file-name-map))
1105
8626cfa2 1106 (setq cont (setq viper-keep-reading-filename t))
52fa07ba 1107 (while cont
8626cfa2 1108 (setq viper-keep-reading-filename nil
52fa07ba 1109 val (read-file-name (concat prompt str) nil default-directory))
2eb4bdca
MK
1110 (setq val (expand-file-name val))
1111 (if (and (string-match " " val)
1112 (ex-cmd-accepts-multiple-files-p ex-token))
1113 (setq val (concat "\"" val "\"")))
52fa07ba
MK
1114 (setq str (concat str (if (equal val "") "" " ")
1115 val (if (equal val "") "" " ")))
a1506d29 1116
52fa07ba 1117 ;; Only edit, next, and Next commands accept multiple files.
8626cfa2 1118 ;; viper-keep-reading-filename is set in the anonymous function that is
52fa07ba 1119 ;; bound to " " in ex-read-filename-map.
8626cfa2 1120 (setq cont (and viper-keep-reading-filename
52fa07ba
MK
1121 (ex-cmd-accepts-multiple-files-p ex-token)))
1122 )
a1506d29 1123
52fa07ba
MK
1124 (setq beg (string-match "[^ \t]" str) ; delete leading blanks
1125 end (string-match "[ \t]*$" str)) ; delete trailing blanks
1126 (if (member ex-token '("read" "write"))
1127 (if (string-match "[\t ]*!" str)
1128 ;; this is actually a shell command
1129 (progn
1130 (setq ex-cmdfile t)
1131 (setq beg (1+ beg))
8626cfa2
MK
1132 (setq viper-last-ex-prompt
1133 (concat viper-last-ex-prompt " !")))))
52fa07ba 1134 (substring str (or beg 0) end)))
bbe6126c 1135
52fa07ba 1136
8626cfa2 1137(defun viper-undisplayed-files ()
52fa07ba 1138 (mapcar
a1506d29 1139 (lambda (b)
3af0304a
MK
1140 (if (null (get-buffer-window b))
1141 (let ((f (buffer-file-name b)))
1142 (if f f
a1506d29 1143 (if ex-cycle-through-non-files
3af0304a
MK
1144 (let ((s (buffer-name b)))
1145 (if (string= " " (substring s 0 1))
1146 nil
1147 s))
1148 nil)))
1149 nil))
52fa07ba
MK
1150 (buffer-list)))
1151
1152
1153(defun ex-args ()
8626cfa2 1154 (let ((l (viper-undisplayed-files))
52fa07ba
MK
1155 (args "")
1156 (file-count 1))
1157 (while (not (null l))
a1506d29 1158 (if (car l)
52fa07ba
MK
1159 (setq args (format "%s %d) %s\n" args file-count (car l))
1160 file-count (1+ file-count)))
1161 (setq l (cdr l)))
1162 (if (string= args "")
1163 (message "All files are already displayed")
1164 (save-excursion
1165 (save-window-excursion
8626cfa2 1166 (with-output-to-temp-buffer " *viper-info*"
52fa07ba
MK
1167 (princ "\n\nThese files are not displayed in any window.\n")
1168 (princ "\n=============\n")
1169 (princ args)
1170 (princ "\n=============\n")
1171 (princ "\nThe numbers can be given as counts to :next. ")
1172 (princ "\n\nPress any key to continue...\n\n"))
8626cfa2 1173 (viper-read-event))))))
52fa07ba 1174
3af0304a 1175;; Ex cd command. Default directory of this buffer changes
52fa07ba 1176(defun ex-cd ()
8626cfa2 1177 (viper-get-ex-file)
52fa07ba
MK
1178 (if (string= ex-file "")
1179 (setq ex-file "~"))
1180 (setq default-directory (file-name-as-directory (expand-file-name ex-file))))
1181
1182;; Ex copy and move command. DEL-FLAG means delete
1183(defun ex-copy (del-flag)
8626cfa2
MK
1184 (viper-default-ex-addresses)
1185 (let ((address (viper-get-ex-address))
52fa07ba
MK
1186 (end (car ex-addresses)) (beg (car (cdr ex-addresses))))
1187 (goto-char end)
1188 (save-excursion
1189 (push-mark beg t)
8626cfa2 1190 (viper-enlarge-region (mark t) (point))
52fa07ba
MK
1191 (if del-flag
1192 (kill-region (point) (mark t))
1193 (copy-region-as-kill (point) (mark t)))
1194 (if ex-flag
1195 (progn
8e41a31c 1196 (with-output-to-temp-buffer " *copy text*"
52fa07ba
MK
1197 (princ
1198 (if (or del-flag ex-g-flag ex-g-variant)
1199 (current-kill 0)
1200 (buffer-substring (point) (mark t)))))
1201 (condition-case nil
1202 (progn
8e41a31c
MK
1203 (read-string "[Hit return to confirm] ")
1204 (save-excursion (kill-buffer " *copy text*")))
1205 (quit (save-excursion (kill-buffer " *copy text*"))
52fa07ba
MK
1206 (signal 'quit nil))))))
1207 (if (= address 0)
1208 (goto-char (point-min))
1209 (goto-char address)
1210 (forward-line 1))
1211 (insert (current-kill 0))))
1212
1213;; Ex delete command
1214(defun ex-delete ()
8626cfa2
MK
1215 (viper-default-ex-addresses)
1216 (viper-get-ex-buffer)
52fa07ba 1217 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses))))
8626cfa2 1218 (if (> beg end) (error viper-FirstAddrExceedsSecond))
52fa07ba 1219 (save-excursion
8626cfa2 1220 (viper-enlarge-region beg end)
52fa07ba
MK
1221 (exchange-point-and-mark)
1222 (if ex-count
1223 (progn
1224 (set-mark (point))
1225 (forward-line (1- ex-count)))
1226 (set-mark end))
8626cfa2 1227 (viper-enlarge-region (point) (mark t))
52fa07ba
MK
1228 (if ex-flag
1229 ;; show text to be deleted and ask for confirmation
1230 (progn
1231 (with-output-to-temp-buffer " *delete text*"
1232 (princ (buffer-substring (point) (mark t))))
1233 (condition-case nil
8e41a31c 1234 (read-string "[Hit return to confirm] ")
52fa07ba
MK
1235 (quit
1236 (save-excursion (kill-buffer " *delete text*"))
69441214 1237 (error "Viper bell")))
52fa07ba
MK
1238 (save-excursion (kill-buffer " *delete text*")))
1239 (if ex-buffer
8626cfa2
MK
1240 (cond ((viper-valid-register ex-buffer '(Letter))
1241 (viper-append-to-register
52fa07ba 1242 (downcase ex-buffer) (point) (mark t)))
8626cfa2 1243 ((viper-valid-register ex-buffer)
52fa07ba 1244 (copy-to-register ex-buffer (point) (mark t) nil))
8626cfa2 1245 (t (error viper-InvalidRegister ex-buffer))))
52fa07ba
MK
1246 (kill-region (point) (mark t))))))
1247
1248
1249
1250;; Ex edit command
3af0304a 1251;; In Viper, `e' and `e!' behave identically. In both cases, the user is
52fa07ba 1252;; asked if current buffer should really be discarded.
3af0304a 1253;; This command can take multiple file names. It replaces the current buffer
52fa07ba
MK
1254;; with the first file in its argument list
1255(defun ex-edit (&optional file)
1256 (if (not file)
8626cfa2 1257 (viper-get-ex-file))
52fa07ba 1258 (cond ((and (string= ex-file "") buffer-file-name)
8626cfa2 1259 (setq ex-file (viper-abbreviate-file-name (buffer-file-name))))
52fa07ba 1260 ((string= ex-file "")
8626cfa2 1261 (error viper-NoFileSpecified)))
a1506d29 1262
2d341681
MK
1263 (let (msg do-edit)
1264 (if buffer-file-name
1265 (cond ((buffer-modified-p)
1266 (setq msg
1267 (format "Buffer %s is modified. Discard changes? "
1268 (buffer-name))
1269 do-edit t))
1270 ((not (verify-visited-file-modtime (current-buffer)))
1271 (setq msg
1272 (format "File %s changed on disk. Reread from disk? "
1273 buffer-file-name)
1274 do-edit t))
1275 (t (setq do-edit nil))))
a1506d29 1276
2d341681
MK
1277 (if do-edit
1278 (if (yes-or-no-p msg)
1279 (progn
1280 (set-buffer-modified-p nil)
1281 (kill-buffer (current-buffer)))
1282 (message "Buffer %s was left intact" (buffer-name))))
1283 ) ; let
a1506d29 1284
52fa07ba 1285 (if (null (setq file (get-file-buffer ex-file)))
a1506d29 1286 (progn
3af0304a
MK
1287 ;; this also does shell-style globbing
1288 (ex-find-file
1289 ;; replace # and % with the previous/current file
1290 (ex-expand-filsyms ex-file (current-buffer)))
ab124470 1291 (or (eq major-mode 'dired-mode)
8626cfa2 1292 (viper-change-state-to-vi))
52fa07ba
MK
1293 (goto-char (point-min)))
1294 (switch-to-buffer file))
1295 (if ex-offset
1296 (progn
1297 (save-window-excursion
a1506d29 1298 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1299 (set-buffer viper-ex-work-buf)
52fa07ba
MK
1300 (delete-region (point-min) (point-max))
1301 (insert ex-offset "\n")
1302 (goto-char (point-min)))
8626cfa2 1303 (goto-char (viper-get-ex-address))
52fa07ba 1304 (beginning-of-line)))
8626cfa2 1305 (ex-fixup-history viper-last-ex-prompt ex-file))
52fa07ba 1306
ab124470 1307;; Find-file FILESPEC if it appears to specify a single file.
2eb4bdca 1308;; Otherwise, assume that FILESPEC is a wildcard.
ab124470 1309;; In this case, split it into substrings separated by newlines.
3af0304a 1310;; Each line is assumed to be a file name.
52fa07ba 1311(defun ex-find-file (filespec)
ab124470
MK
1312 (let ((nonstandard-filename-chars "[^-a-zA-Z0-9_./,~$\\]"))
1313 (cond ((file-exists-p filespec) (find-file filespec))
1314 ((string-match nonstandard-filename-chars filespec)
3af0304a 1315 (mapcar 'find-file (funcall viper-glob-function filespec)))
ab124470 1316 (t (find-file filespec)))
52fa07ba 1317 ))
bbe6126c 1318
6c2e12f4 1319
52fa07ba 1320;; Ex global command
1e70790f
MK
1321;; This is executed in response to:
1322;; :global "pattern" ex-command
1323;; :vglobal "pattern" ex-command
1324;; :global executes ex-command on all lines matching <pattern>
1325;; :vglobal executes ex-command on all lines that don't match <pattern>
1326;;
1327;; With VARIANT nil, this functions executes :global
1328;; With VARIANT t, executes :vglobal
52fa07ba
MK
1329(defun ex-global (variant)
1330 (let ((gcommand ex-token))
1331 (if (or ex-g-flag ex-g-variant)
1332 (error "`%s' within `global' is not allowed" gcommand)
1333 (if variant
1334 (setq ex-g-flag nil
1335 ex-g-variant t)
1336 (setq ex-g-flag t
1337 ex-g-variant nil)))
8626cfa2 1338 (viper-get-ex-pat)
52fa07ba
MK
1339 (if (null ex-token)
1340 (error "`%s': Missing regular expression" gcommand)))
a1506d29 1341
52fa07ba 1342 (if (string= ex-token "")
8626cfa2
MK
1343 (if (null viper-s-string)
1344 (error viper-NoPrevSearch)
1345 (setq ex-g-pat viper-s-string))
52fa07ba 1346 (setq ex-g-pat ex-token
8626cfa2 1347 viper-s-string ex-token))
52fa07ba
MK
1348 (if (null ex-addresses)
1349 (setq ex-addresses (list (point-max) (point-min)))
8626cfa2 1350 (viper-default-ex-addresses))
241d963d
MK
1351 (setq ex-g-marks nil)
1352 (let ((mark-count 0)
1e70790f
MK
1353 (end (car ex-addresses))
1354 (beg (car (cdr ex-addresses)))
1355 com-str)
8626cfa2 1356 (if (> beg end) (error viper-FirstAddrExceedsSecond))
52fa07ba 1357 (save-excursion
8626cfa2 1358 (viper-enlarge-region beg end)
52fa07ba
MK
1359 (exchange-point-and-mark)
1360 (let ((cont t) (limit (point-marker)))
1361 (exchange-point-and-mark)
1362 ;; skip the last line if empty
1363 (beginning-of-line)
8626cfa2 1364 (if (eobp) (viper-backward-char-carefully))
52fa07ba
MK
1365 (while (and cont (not (bobp)) (>= (point) limit))
1366 (beginning-of-line)
1367 (set-mark (point))
1368 (end-of-line)
1369 (let ((found (re-search-backward ex-g-pat (mark t) t)))
1370 (if (or (and ex-g-flag found)
1371 (and ex-g-variant (not found)))
1372 (progn
1373 (end-of-line)
1374 (setq mark-count (1+ mark-count))
241d963d 1375 (setq ex-g-marks (cons (point-marker) ex-g-marks)))))
52fa07ba
MK
1376 (beginning-of-line)
1377 (if (bobp) (setq cont nil)
1378 (forward-line -1)
1379 (end-of-line)))))
1380 (save-window-excursion
a1506d29 1381 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1382 (set-buffer viper-ex-work-buf)
3af0304a 1383 ;; com-str is the command string, i.e., g/pattern/ or v/pattern'
52fa07ba 1384 (setq com-str (buffer-substring (1+ (point)) (1- (point-max)))))
241d963d
MK
1385 (while ex-g-marks
1386 (goto-char (car ex-g-marks))
3af0304a 1387 (viper-ex nil com-str)
52fa07ba 1388 (setq mark-count (1- mark-count))
241d963d 1389 (setq ex-g-marks (cdr ex-g-marks)))))
52fa07ba
MK
1390
1391;; Ex goto command
1392(defun ex-goto ()
1393 (if (null ex-addresses)
1394 (setq ex-addresses (cons (point) nil)))
1395 (push-mark (point) t)
1396 (goto-char (car ex-addresses))
3af0304a
MK
1397 (beginning-of-line)
1398 )
52fa07ba
MK
1399
1400;; Ex line commands. COM is join, shift-right or shift-left
1401(defun ex-line (com)
8626cfa2
MK
1402 (viper-default-ex-addresses)
1403 (viper-get-ex-count)
52fa07ba 1404 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses))) point)
8626cfa2 1405 (if (> beg end) (error viper-FirstAddrExceedsSecond))
52fa07ba 1406 (save-excursion
8626cfa2 1407 (viper-enlarge-region beg end)
52fa07ba
MK
1408 (exchange-point-and-mark)
1409 (if ex-count
1410 (progn
1411 (set-mark (point))
1412 (forward-line ex-count)))
1413 (if ex-flag
1414 ;; show text to be joined and ask for confirmation
1415 (progn
8e41a31c 1416 (with-output-to-temp-buffer " *join text*"
52fa07ba
MK
1417 (princ (buffer-substring (point) (mark t))))
1418 (condition-case nil
1419 (progn
8e41a31c 1420 (read-string "[Hit return to confirm] ")
52fa07ba
MK
1421 (ex-line-subr com (point) (mark t)))
1422 (quit (ding)))
8e41a31c 1423 (save-excursion (kill-buffer " *join text*")))
52fa07ba
MK
1424 (ex-line-subr com (point) (mark t)))
1425 (setq point (point)))
1426 (goto-char (1- point))
1427 (beginning-of-line)))
1428
1429(defun ex-line-subr (com beg end)
1430 (cond ((string= com "join")
1431 (goto-char (min beg end))
1432 (while (and (not (eobp)) (< (point) (max beg end)))
1433 (end-of-line)
1434 (if (and (<= (point) (max beg end)) (not (eobp)))
1435 (progn
1436 (forward-line 1)
1437 (delete-region (point) (1- (point)))
1438 (if (not ex-variant) (fixup-whitespace))))))
1439 ((or (string= com "right") (string= com "left"))
1440 (indent-rigidly
1441 (min beg end) (max beg end)
8626cfa2 1442 (if (string= com "right") viper-shift-width (- viper-shift-width)))
52fa07ba
MK
1443 (goto-char (max beg end))
1444 (end-of-line)
8626cfa2 1445 (viper-forward-char-carefully))))
52fa07ba
MK
1446
1447
1448;; Ex mark command
4986c2c6
MK
1449;; Sets the mark to the current point.
1450;; If name is omitted, get the name straight from the work buffer."
1451(defun ex-mark (&optional name)
52fa07ba
MK
1452 (let (char)
1453 (if (null ex-addresses)
1454 (setq ex-addresses
1455 (cons (point) nil)))
4986c2c6
MK
1456 (if name
1457 (if (eq 1 (length name))
1458 (setq char (string-to-char name))
60370d40 1459 (error "`%s': Spurious text \"%s\" after mark name"
0b762d9a 1460 name (substring name 1)))
52fa07ba 1461 (save-window-excursion
a1506d29 1462 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1463 (set-buffer viper-ex-work-buf)
52fa07ba
MK
1464 (skip-chars-forward " \t")
1465 (if (looking-at "[a-z]")
1466 (progn
1467 (setq char (following-char))
1468 (forward-char 1)
1469 (skip-chars-forward " \t")
1470 (if (not (looking-at "[\n|]"))
8626cfa2 1471 (error "`%s': %s" ex-token viper-SpuriousText)))
4986c2c6 1472 (error "`%s' requires a following letter" ex-token))))
52fa07ba
MK
1473 (save-excursion
1474 (goto-char (car ex-addresses))
4960e757 1475 (point-to-register (viper-int-to-char (1+ (- char ?a)))))))
6c2e12f4 1476
a1506d29
JB
1477
1478
52fa07ba
MK
1479;; Alternate file is the file next to the first one in the buffer ring
1480(defun ex-next (cycle-other-window &optional find-alt-file)
1481 (catch 'ex-edit
1482 (let (count l)
a1506d29 1483 (if (not find-alt-file)
bbe6126c 1484 (progn
8626cfa2 1485 (viper-get-ex-file)
52fa07ba 1486 (if (or (char-or-string-p ex-offset)
a1506d29 1487 (and (not (string= "" ex-file))
52fa07ba 1488 (not (string-match "^[0-9]+$" ex-file))))
bbe6126c 1489 (progn
52fa07ba
MK
1490 (ex-edit t)
1491 (throw 'ex-edit nil))
027a4b6b 1492 (setq count (string-to-number ex-file))
52fa07ba
MK
1493 (if (= count 0) (setq count 1))
1494 (if (< count 0) (error "Usage: `next <count>' (count >= 0)"))))
1495 (setq count 1))
8626cfa2 1496 (setq l (viper-undisplayed-files))
52fa07ba
MK
1497 (while (> count 0)
1498 (while (and (not (null l)) (null (car l)))
1499 (setq l (cdr l)))
1500 (setq count (1- count))
1501 (if (> count 0)
1502 (setq l (cdr l))))
1503 (if find-alt-file (car l)
1504 (progn
1505 (if (and (car l) (get-file-buffer (car l)))
1506 (let* ((w (if cycle-other-window
1507 (get-lru-window) (selected-window)))
1508 (b (window-buffer w)))
1509 (set-window-buffer w (get-file-buffer (car l)))
1510 (bury-buffer b)
1511 ;; this puts "next <count>" in the ex-command history
8626cfa2 1512 (ex-fixup-history viper-last-ex-prompt ex-file))
52fa07ba
MK
1513 (error "Not that many undisplayed files")))))))
1514
1515
1516(defun ex-next-related-buffer (direction &optional no-recursion)
a1506d29 1517
8626cfa2 1518 (viper-ring-rotate1 viper-related-files-and-buffers-ring direction)
a1506d29
JB
1519
1520 (let ((file-or-buffer-name
8626cfa2
MK
1521 (viper-current-ring-item viper-related-files-and-buffers-ring))
1522 (old-ring viper-related-files-and-buffers-ring)
52fa07ba
MK
1523 (old-win (selected-window))
1524 skip-rest buf wind)
a1506d29 1525
8626cfa2
MK
1526 (or (and (ring-p viper-related-files-and-buffers-ring)
1527 (> (ring-length viper-related-files-and-buffers-ring) 0))
52fa07ba 1528 (error "This buffer has no related files or buffers"))
a1506d29 1529
52fa07ba
MK
1530 (or (stringp file-or-buffer-name)
1531 (error
1532 "File and buffer names must be strings, %S" file-or-buffer-name))
a1506d29 1533
52fa07ba
MK
1534 (setq buf (cond ((get-buffer file-or-buffer-name))
1535 ((file-exists-p file-or-buffer-name)
1536 (find-file-noselect file-or-buffer-name))
1537 ))
a1506d29 1538
8626cfa2 1539 (if (not (viper-buffer-live-p buf))
52fa07ba
MK
1540 (error "Didn't find buffer %S or file %S"
1541 file-or-buffer-name
8626cfa2 1542 (viper-abbreviate-file-name
52fa07ba 1543 (expand-file-name file-or-buffer-name))))
a1506d29 1544
52fa07ba
MK
1545 (if (equal buf (current-buffer))
1546 (or no-recursion
1547 ;; try again
1548 (progn
1549 (setq skip-rest t)
1550 (ex-next-related-buffer direction 'norecursion))))
a1506d29 1551
52fa07ba
MK
1552 (if skip-rest
1553 ()
1554 ;; setup buffer
8626cfa2 1555 (if (setq wind (viper-get-visible-buffer-window buf))
52fa07ba 1556 ()
e83d1fe8 1557 (setq wind (get-lru-window (if (featurep 'xemacs) nil 'visible)))
52fa07ba 1558 (set-window-buffer wind buf))
a1506d29 1559
8626cfa2 1560 (if (viper-window-display-p)
52fa07ba
MK
1561 (progn
1562 (raise-frame (window-frame wind))
1563 (if (equal (window-frame wind) (window-frame old-win))
1564 (save-window-excursion (select-window wind) (sit-for 1))
1565 (select-window wind)))
1566 (save-window-excursion (select-window wind) (sit-for 1)))
a1506d29 1567
52fa07ba
MK
1568 (save-excursion
1569 (set-buffer buf)
8626cfa2 1570 (setq viper-related-files-and-buffers-ring old-ring))
a1506d29 1571
8626cfa2 1572 (setq viper-local-search-start-marker (point-marker))
52fa07ba 1573 )))
a1506d29
JB
1574
1575
52fa07ba
MK
1576;; Force auto save
1577(defun ex-preserve ()
1578 (message "Autosaving all buffers that need to be saved...")
1579 (do-auto-save t))
1580
1581;; Ex put
1582(defun ex-put ()
1583 (let ((point (if (null ex-addresses) (point) (car ex-addresses))))
8626cfa2
MK
1584 (viper-get-ex-buffer)
1585 (setq viper-use-register ex-buffer)
52fa07ba 1586 (goto-char point)
8626cfa2 1587 (if (bobp) (viper-Put-back 1) (viper-put-back 1))))
52fa07ba
MK
1588
1589;; Ex print working directory
1590(defun ex-pwd ()
7b8a295e 1591 (message "%s" default-directory))
52fa07ba
MK
1592
1593;; Ex quit command
1594(defun ex-quit ()
3af0304a 1595 ;; skip "!", if it is q!. In Viper q!, w!, etc., behave as q, w, etc.
52fa07ba 1596 (save-excursion
a1506d29 1597 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1598 (set-buffer viper-ex-work-buf)
52fa07ba 1599 (if (looking-at "!") (forward-char 1)))
1e70790f 1600 (if (< viper-expert-level 3)
52fa07ba
MK
1601 (save-buffers-kill-emacs)
1602 (kill-buffer (current-buffer))))
6c2e12f4 1603
6c2e12f4 1604
52fa07ba 1605;; Ex read command
3af0304a
MK
1606;; ex-read doesn't support wildcards, because file completion is a better
1607;; mechanism. We also don't support # and % (except in :r <shell-command>
1608;; because file history is a better mechanism.
52fa07ba 1609(defun ex-read ()
8626cfa2 1610 (viper-get-ex-file)
52fa07ba
MK
1611 (let ((point (if (null ex-addresses) (point) (car ex-addresses)))
1612 command)
1613 (goto-char point)
8626cfa2 1614 (viper-add-newline-at-eob-if-necessary)
52fa07ba
MK
1615 (if (not (or (bobp) (eobp))) (forward-line 1))
1616 (if (and (not ex-variant) (string= ex-file ""))
1617 (progn
1618 (if (null buffer-file-name)
8626cfa2 1619 (error viper-NoFileSpecified))
52fa07ba
MK
1620 (setq ex-file buffer-file-name)))
1621 (if ex-cmdfile
1622 (progn
a1506d29 1623 (setq command
3af0304a 1624 ;; replace # and % with the previous/current file
7eb605c7
MK
1625 (ex-expand-filsyms
1626 (concat (shell-quote-argument ex-file) ex-cmdfile-args)
1627 (current-buffer)))
52fa07ba
MK
1628 (shell-command command t))
1629 (insert-file-contents ex-file)))
328b4b70 1630 (ex-fixup-history viper-last-ex-prompt ex-file ex-cmdfile-args))
a1506d29 1631
52fa07ba 1632;; this function fixes ex-history for some commands like ex-read, ex-edit
a1506d29 1633(defun ex-fixup-history (&rest args)
8626cfa2
MK
1634 (setq viper-ex-history
1635 (cons (mapconcat 'identity args " ") (cdr viper-ex-history))))
a1506d29 1636
52fa07ba
MK
1637
1638;; Ex recover from emacs \#file\#
1639(defun ex-recover ()
8626cfa2 1640 (viper-get-ex-file)
52fa07ba 1641 (if (or ex-append ex-offset)
8626cfa2 1642 (error "`recover': %s" viper-SpuriousText))
52fa07ba
MK
1643 (if (string= ex-file "")
1644 (progn
1645 (if (null buffer-file-name)
1646 (error "This buffer isn't visiting any file"))
1647 (setq ex-file buffer-file-name))
1648 (setq ex-file (expand-file-name ex-file)))
1649 (if (and (not (string= ex-file (buffer-file-name)))
1650 (buffer-modified-p)
1651 (not ex-variant))
1652 (error "No write since last change \(:rec! overrides\)"))
1653 (recover-file ex-file))
1654
1655;; Tell that `rewind' is obsolete and to use `:next count' instead
1656(defun ex-rewind ()
1657 (message
3af0304a 1658 "Use `:n <count>' instead. Counts are obtained from the `:args' command"))
52fa07ba
MK
1659
1660
1661;; read variable name for ex-set
1662(defun ex-set-read-variable ()
1663 (let ((minibuffer-local-completion-map
1664 (copy-keymap minibuffer-local-completion-map))
1665 (cursor-in-echo-area t)
1666 str batch)
1667 (define-key
1668 minibuffer-local-completion-map " " 'minibuffer-complete-and-exit)
1669 (define-key minibuffer-local-completion-map "=" 'exit-minibuffer)
8626cfa2 1670 (if (viper-set-unread-command-events
52fa07ba
MK
1671 (ex-get-inline-cmd-args "[ \t]*[a-zA-Z]*[ \t]*" nil "\C-m"))
1672 (progn
1673 (setq batch t)
8626cfa2 1674 (viper-set-unread-command-events ?\C-m)))
52fa07ba
MK
1675 (message ":set <Variable> [= <Value>]")
1676 (or batch (sit-for 2))
a1506d29 1677
52fa07ba
MK
1678 (while (string-match "^[ \\t\\n]*$"
1679 (setq str
1680 (completing-read ":set " ex-variable-alist)))
e36a387d 1681 (message ":set <Variable> [= <Value>]")
52fa07ba 1682 ;; if there are unread events, don't wait
8626cfa2 1683 (or (viper-set-unread-command-events "") (sit-for 2))
52fa07ba
MK
1684 ) ; while
1685 str))
1686
1687
1688(defun ex-set ()
1689 (let ((var (ex-set-read-variable))
1690 (val 0)
1691 (set-cmd "setq")
1692 (ask-if-save t)
1693 (auto-cmd-label "; don't touch or else...")
1694 (delete-turn-on-auto-fill-pattern
2eb4bdca 1695 "([ \t]*add-hook[ \t]+'viper-insert-state-hook[ \t]+'turn-on-auto-fill.*)")
52fa07ba
MK
1696 actual-lisp-cmd lisp-cmd-del-pattern
1697 val2 orig-var)
1698 (setq orig-var var)
e36a387d
MK
1699 (cond ((string= var "all")
1700 (setq ask-if-save nil
1701 set-cmd nil))
1702 ((member var '("ai" "autoindent"))
8626cfa2 1703 (setq var "viper-auto-indent"
52fa07ba
MK
1704 set-cmd "setq"
1705 ask-if-save nil
1706 val "t"))
e36a387d 1707 ((member var '("ai-g" "autoindent-global"))
8626cfa2
MK
1708 (kill-local-variable 'viper-auto-indent)
1709 (setq var "viper-auto-indent"
52fa07ba
MK
1710 set-cmd "setq-default"
1711 val "t"))
1712 ((member var '("noai" "noautoindent"))
8626cfa2 1713 (setq var "viper-auto-indent"
52fa07ba
MK
1714 ask-if-save nil
1715 val "nil"))
e36a387d 1716 ((member var '("noai-g" "noautoindent-global"))
8626cfa2
MK
1717 (kill-local-variable 'viper-auto-indent)
1718 (setq var "viper-auto-indent"
52fa07ba
MK
1719 set-cmd "setq-default"
1720 val "nil"))
1721 ((member var '("ic" "ignorecase"))
8626cfa2 1722 (setq var "viper-case-fold-search"
52fa07ba
MK
1723 val "t"))
1724 ((member var '("noic" "noignorecase"))
8626cfa2 1725 (setq var "viper-case-fold-search"
52fa07ba
MK
1726 val "nil"))
1727 ((member var '("ma" "magic"))
8626cfa2 1728 (setq var "viper-re-search"
52fa07ba 1729 val "t"))
e36a387d 1730 ((member var '("noma" "nomagic"))
8626cfa2 1731 (setq var "viper-re-search"
52fa07ba
MK
1732 val "nil"))
1733 ((member var '("ro" "readonly"))
1734 (setq var "buffer-read-only"
1735 val "t"))
1736 ((member var '("noro" "noreadonly"))
1737 (setq var "buffer-read-only"
1738 val "nil"))
1739 ((member var '("sm" "showmatch"))
1740 (setq var "blink-matching-paren"
1741 val "t"))
1742 ((member var '("nosm" "noshowmatch"))
1743 (setq var "blink-matching-paren"
1744 val "nil"))
1745 ((member var '("ws" "wrapscan"))
8626cfa2 1746 (setq var "viper-search-wrap-around-t"
52fa07ba
MK
1747 val "t"))
1748 ((member var '("nows" "nowrapscan"))
8626cfa2 1749 (setq var "viper-search-wrap-around-t"
52fa07ba 1750 val "nil")))
e36a387d 1751 (if (and set-cmd (eq val 0)) ; value must be set by the user
52fa07ba
MK
1752 (let ((cursor-in-echo-area t))
1753 (message ":set %s = <Value>" var)
1754 ;; if there are unread events, don't wait
8626cfa2 1755 (or (viper-set-unread-command-events "") (sit-for 2))
52fa07ba
MK
1756 (setq val (read-string (format ":set %s = " var)))
1757 (ex-fixup-history "set" orig-var val)
a1506d29 1758
52fa07ba
MK
1759 ;; check numerical values
1760 (if (member var
1761 '("sw" "shiftwidth"
1762 "ts" "tabstop"
e36a387d 1763 "ts-g" "tabstop-global"
a1506d29 1764 "wm" "wrapmargin"))
52fa07ba
MK
1765 (condition-case nil
1766 (or (numberp (setq val2 (car (read-from-string val))))
1767 (error "%s: Invalid value, numberp, %S" var val))
1768 (error
1769 (error "%s: Invalid value, numberp, %S" var val))))
a1506d29 1770
52fa07ba
MK
1771 (cond
1772 ((member var '("sw" "shiftwidth"))
8626cfa2 1773 (setq var "viper-shift-width"))
52fa07ba
MK
1774 ((member var '("ts" "tabstop"))
1775 ;; make it take effect in curr buff and new bufs
1776 (setq var "tab-width"
1777 set-cmd "setq"
1778 ask-if-save nil))
e36a387d 1779 ((member var '("ts-g" "tabstop-global"))
52fa07ba
MK
1780 (kill-local-variable 'tab-width)
1781 (setq var "tab-width"
1782 set-cmd "setq-default"))
1783 ((member var '("wm" "wrapmargin"))
1784 ;; make it take effect in curr buff and new bufs
a1506d29
JB
1785 (kill-local-variable 'fill-column)
1786 (setq var "fill-column"
52fa07ba
MK
1787 val (format "(- (window-width) %s)" val)
1788 set-cmd "setq-default"))
1789 ((member var '("sh" "shell"))
1790 (setq var "explicit-shell-file-name"
1791 val (format "\"%s\"" val)))))
1792 (ex-fixup-history "set" orig-var))
a1506d29 1793
e36a387d
MK
1794 (if set-cmd
1795 (setq actual-lisp-cmd
1796 (format "\n(%s %s %s) %s" set-cmd var val auto-cmd-label)
1797 lisp-cmd-del-pattern
1798 (format "^\n?[ \t]*([ \t]*%s[ \t]+%s[ \t].*)[ \t]*%s"
1799 set-cmd var auto-cmd-label)))
a1506d29 1800
52fa07ba
MK
1801 (if (and ask-if-save
1802 (y-or-n-p (format "Do you want to save this setting in %s "
8626cfa2 1803 viper-custom-file-name)))
52fa07ba 1804 (progn
a1506d29 1805 (viper-save-string-in-file
8626cfa2 1806 actual-lisp-cmd viper-custom-file-name
52fa07ba
MK
1807 ;; del pattern
1808 lisp-cmd-del-pattern)
1809 (if (string= var "fill-column")
1810 (if (> val2 0)
8626cfa2 1811 (viper-save-string-in-file
52fa07ba 1812 (concat
2eb4bdca 1813 "(add-hook 'viper-insert-state-hook 'turn-on-auto-fill) "
52fa07ba 1814 auto-cmd-label)
8626cfa2 1815 viper-custom-file-name
52fa07ba 1816 delete-turn-on-auto-fill-pattern)
8626cfa2
MK
1817 (viper-save-string-in-file
1818 nil viper-custom-file-name delete-turn-on-auto-fill-pattern)
1819 (viper-save-string-in-file
1820 nil viper-custom-file-name
52fa07ba
MK
1821 ;; del pattern
1822 lisp-cmd-del-pattern)
1823 ))
1824 ))
a1506d29 1825
e36a387d
MK
1826 (if set-cmd
1827 (message "%s %s %s"
1828 set-cmd var
1829 (if (string-match "^[ \t]*$" val)
1830 (format "%S" val)
1831 val)))
1832 (if actual-lisp-cmd
1833 (eval (car (read-from-string actual-lisp-cmd))))
1834 (if (string= var "fill-column")
1835 (if (> val2 0)
1836 (auto-fill-mode 1)
1837 (auto-fill-mode -1)))
1838 (if (string= var "all") (ex-show-vars))
52fa07ba 1839 ))
6c2e12f4 1840
52fa07ba
MK
1841;; In inline args, skip regex-forw and (optionally) chars-back.
1842;; Optional 3d arg is a string that should replace ' ' to prevent its
1843;; special meaning
1844(defun ex-get-inline-cmd-args (regex-forw &optional chars-back replace-str)
1845 (save-excursion
a1506d29 1846 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1847 (set-buffer viper-ex-work-buf)
52fa07ba
MK
1848 (goto-char (point-min))
1849 (re-search-forward regex-forw nil t)
1850 (let ((beg (point))
1851 end)
1852 (goto-char (point-max))
1853 (if chars-back
1854 (skip-chars-backward chars-back)
1855 (skip-chars-backward " \t\n\C-m"))
1856 (setq end (point))
1857 ;; replace SPC with `=' to suppress the special meaning SPC has
1858 ;; in Ex commands
1859 (goto-char beg)
1860 (if replace-str
1861 (while (re-search-forward " +" nil t)
1862 (replace-match replace-str nil t)
8626cfa2 1863 (viper-forward-char-carefully)))
52fa07ba
MK
1864 (goto-char end)
1865 (buffer-substring beg end))))
1866
1867
1868;; Ex shell command
1869(defun ex-shell ()
1870 (shell))
a1506d29 1871
3af0304a 1872;; Viper help. Invokes Info
52fa07ba
MK
1873(defun ex-help ()
1874 (condition-case nil
1875 (progn
1876 (pop-to-buffer (get-buffer-create "*info*"))
e83d1fe8 1877 (info (if (featurep 'xemacs) "viper.info" "viper"))
52fa07ba
MK
1878 (message "Type `i' to search for a specific topic"))
1879 (error (beep 1)
8626cfa2 1880 (with-output-to-temp-buffer " *viper-info*"
52fa07ba
MK
1881 (princ (format "
1882The Info file for Viper does not seem to be installed.
1883
1884This file is part of the standard distribution of %sEmacs.
1885Please contact your system administrator. "
e83d1fe8 1886 (if (featurep 'xemacs) "X" "")
52fa07ba
MK
1887 ))))))
1888
3af0304a 1889;; Ex source command. Loads the file specified as argument or `~/.viper'
52fa07ba 1890(defun ex-source ()
8626cfa2 1891 (viper-get-ex-file)
52fa07ba 1892 (if (string= ex-file "")
8626cfa2 1893 (load viper-custom-file-name)
52fa07ba
MK
1894 (load ex-file)))
1895
1896;; Ex substitute command
8626cfa2 1897;; If REPEAT use previous regexp which is ex-reg-exp or viper-s-string
a1506d29 1898(defun ex-substitute (&optional repeat r-flag)
52fa07ba
MK
1899 (let ((opt-g nil)
1900 (opt-c nil)
1901 (matched-pos nil)
8626cfa2 1902 (case-fold-search viper-case-fold-search)
52fa07ba 1903 delim pat repl)
8626cfa2 1904 (if repeat (setq ex-token nil) (setq delim (viper-get-ex-pat)))
52fa07ba
MK
1905 (if (null ex-token)
1906 (progn
8626cfa2 1907 (setq pat (if r-flag viper-s-string ex-reg-exp))
52fa07ba
MK
1908 (or (stringp pat)
1909 (error "No previous pattern to use in substitution"))
1910 (setq repl ex-repl
1911 delim (string-to-char pat)))
8626cfa2
MK
1912 (setq pat (if (string= ex-token "") viper-s-string ex-token))
1913 (setq viper-s-string pat
52fa07ba 1914 ex-reg-exp pat)
8626cfa2 1915 (setq delim (viper-get-ex-pat))
52fa07ba
MK
1916 (if (null ex-token)
1917 (setq ex-token ""
1918 ex-repl "")
1919 (setq repl ex-token
1920 ex-repl ex-token)))
8626cfa2 1921 (while (viper-get-ex-opt-gc delim)
52fa07ba 1922 (if (string= ex-token "g") (setq opt-g t) (setq opt-c t)))
8626cfa2 1923 (viper-get-ex-count)
52fa07ba
MK
1924 (if ex-count
1925 (save-excursion
1926 (if ex-addresses (goto-char (car ex-addresses)))
1927 (set-mark (point))
1928 (forward-line (1- ex-count))
1929 (setq ex-addresses (cons (point) (cons (mark t) nil))))
1930 (if (null ex-addresses)
1931 (setq ex-addresses (cons (point) (cons (point) nil)))
1932 (if (null (cdr ex-addresses))
1933 (setq ex-addresses (cons (car ex-addresses) ex-addresses)))))
1934 ;(setq G opt-g)
1935 (let ((beg (car ex-addresses))
1936 (end (car (cdr ex-addresses)))
1937 eol-mark)
1938 (save-excursion
8626cfa2 1939 (viper-enlarge-region beg end)
52fa07ba
MK
1940 (let ((limit (save-excursion
1941 (goto-char (max (point) (mark t)))
1942 (point-marker))))
1943 (goto-char (min (point) (mark t)))
1944 (while (< (point) limit)
2eb4bdca
MK
1945 (save-excursion
1946 (end-of-line)
1947 ;; This move allows the use of newline as the last character in
1948 ;; the substitution pattern
1949 (viper-forward-char-carefully)
1950 (setq eol-mark (point-marker)))
52fa07ba
MK
1951 (beginning-of-line)
1952 (if opt-g
1953 (progn
1954 (while (and (not (eolp))
1955 (re-search-forward pat eol-mark t))
d35bee0e
MK
1956 (if (or (not opt-c)
1957 (progn
1958 (viper-put-on-search-overlay (match-beginning 0)
1959 (match-end 0))
1960 (y-or-n-p "Replace? ")))
52fa07ba 1961 (progn
d35bee0e 1962 (viper-hide-search-overlay)
52fa07ba
MK
1963 (setq matched-pos (point))
1964 (if (not (stringp repl))
1965 (error "Can't perform Ex substitution: No previous replacement pattern"))
1966 (replace-match repl t))))
1967 (end-of-line)
8626cfa2 1968 (viper-forward-char-carefully))
52fa07ba
MK
1969 (if (null pat)
1970 (error
1971 "Can't repeat Ex substitution: No previous regular expression"))
1972 (if (and (re-search-forward pat eol-mark t)
d35bee0e
MK
1973 (or (not opt-c)
1974 (progn
1975 (viper-put-on-search-overlay (match-beginning 0)
1976 (match-end 0))
1977 (y-or-n-p "Replace? "))))
52fa07ba 1978 (progn
d35bee0e 1979 (viper-hide-search-overlay)
52fa07ba
MK
1980 (setq matched-pos (point))
1981 (if (not (stringp repl))
1982 (error "Can't perform Ex substitution: No previous replacement pattern"))
1983 (replace-match repl t)))
2eb4bdca
MK
1984 ;;(end-of-line)
1985 ;;(viper-forward-char-carefully)
1986 (goto-char eol-mark)
1987 )))))
52fa07ba
MK
1988 (if matched-pos (goto-char matched-pos))
1989 (beginning-of-line)
1990 (if opt-c (message "done"))))
8f2685cb 1991
52fa07ba
MK
1992;; Ex tag command
1993(defun ex-tag ()
1994 (let (tag)
1995 (save-window-excursion
a1506d29 1996 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 1997 (set-buffer viper-ex-work-buf)
52fa07ba
MK
1998 (skip-chars-forward " \t")
1999 (set-mark (point))
2000 (skip-chars-forward "^ |\t\n")
2001 (setq tag (buffer-substring (mark t) (point))))
2002 (if (not (string= tag "")) (setq ex-tag tag))
8626cfa2 2003 (viper-change-state-to-emacs)
52fa07ba
MK
2004 (condition-case conds
2005 (progn
2006 (if (string= tag "")
2007 (find-tag ex-tag t)
2008 (find-tag-other-window ex-tag))
8626cfa2 2009 (viper-change-state-to-vi))
52fa07ba 2010 (error
8626cfa2
MK
2011 (viper-change-state-to-vi)
2012 (viper-message-conditions conds)))))
bbe6126c 2013
52fa07ba 2014;; Ex write command
3af0304a 2015;; ex-write doesn't support wildcards, because file completion is a better
a1506d29 2016;; mechanism. We also don't support # and %
3af0304a 2017;; because file history is a better mechanism.
52fa07ba 2018(defun ex-write (q-flag)
8626cfa2
MK
2019 (viper-default-ex-addresses t)
2020 (viper-get-ex-file)
9b70a748 2021 (let ((end (car ex-addresses))
a1506d29 2022 (beg (car (cdr ex-addresses)))
9b70a748 2023 (orig-buf (current-buffer))
50a07e18
MK
2024 ;;(orig-buf-file-name (buffer-file-name))
2025 ;;(orig-buf-name (buffer-name))
2026 ;;(buff-changed-p (buffer-modified-p))
52fa07ba
MK
2027 temp-buf writing-same-file region
2028 file-exists writing-whole-file)
8626cfa2 2029 (if (> beg end) (error viper-FirstAddrExceedsSecond))
52fa07ba
MK
2030 (if ex-cmdfile
2031 (progn
8626cfa2 2032 (viper-enlarge-region beg end)
a1506d29 2033 (shell-command-on-region (point) (mark t)
328b4b70 2034 (concat ex-file ex-cmdfile-args)))
52fa07ba
MK
2035 (if (and (string= ex-file "") (not (buffer-file-name)))
2036 (setq ex-file
2037 (read-file-name
3af0304a 2038 (format "Buffer %s isn't visiting any file. File to save in: "
52fa07ba 2039 (buffer-name)))))
a1506d29 2040
52fa07ba
MK
2041 (setq writing-whole-file (and (= (point-min) beg) (= (point-max) end))
2042 ex-file (if (string= ex-file "")
2043 (buffer-file-name)
2044 (expand-file-name ex-file)))
2045 ;; if ex-file is a directory use the file portion of the buffer file name
2046 (if (and (file-directory-p ex-file)
2047 buffer-file-name
2048 (not (file-directory-p buffer-file-name)))
2049 (setq ex-file
9b70a748
MK
2050 (concat (file-name-as-directory ex-file)
2051 (file-name-nondirectory buffer-file-name))))
a1506d29 2052
52fa07ba
MK
2053 (setq file-exists (file-exists-p ex-file)
2054 writing-same-file (string= ex-file (buffer-file-name)))
2055
2eb4bdca 2056 ;; do actual writing
52fa07ba 2057 (if (and writing-whole-file writing-same-file)
2eb4bdca 2058 ;; saving whole buffer in visited file
52fa07ba
MK
2059 (if (not (buffer-modified-p))
2060 (message "(No changes need to be saved)")
2eb4bdca 2061 (viper-maybe-checkout (current-buffer))
52fa07ba 2062 (save-buffer)
9b70a748
MK
2063 (save-restriction
2064 (widen)
2065 (ex-write-info file-exists ex-file (point-min) (point-max))
2066 ))
2eb4bdca
MK
2067 ;; writing to non-visited file and it already exists
2068 (if (and file-exists (not writing-same-file)
2069 (not (yes-or-no-p
3af0304a 2070 (format "File %s exists. Overwrite? " ex-file))))
2eb4bdca
MK
2071 (error "Quit"))
2072 ;; writing a region or whole buffer to non-visited file
a1506d29 2073 (unwind-protect
2eb4bdca
MK
2074 (save-excursion
2075 (viper-enlarge-region beg end)
2076 (setq region (buffer-substring (point) (mark t)))
2077 ;; create temp buffer for the region
2078 (setq temp-buf (get-buffer-create " *ex-write*"))
2079 (set-buffer temp-buf)
50a07e18
MK
2080 (viper-cond-compile-for-xemacs-or-emacs
2081 (set-visited-file-name ex-file) ; xemacs
2082 (set-visited-file-name ex-file 'noquerry) ; emacs
2083 )
2eb4bdca
MK
2084 (erase-buffer)
2085 (if (and file-exists ex-append)
2086 (insert-file-contents ex-file))
2087 (goto-char (point-max))
2088 (insert region)
2089 ;; ask user
2090 (viper-maybe-checkout (current-buffer))
fc290d1d 2091 (setq selective-display nil)
2eb4bdca
MK
2092 (save-buffer)
2093 (ex-write-info
2094 file-exists ex-file (point-min) (point-max))
2095 )
2096 ;; this must be under unwind-protect so that
2097 ;; temp-buf will be deleted in case of an error
2098 (set-buffer temp-buf)
2099 (set-buffer-modified-p nil)
2100 (kill-buffer temp-buf)
2101 ;; buffer/region has been written, now take care of details
2102 (set-buffer orig-buf)))
2103 ;; set the right file modification time
52fa07ba
MK
2104 (if (and (buffer-file-name) writing-same-file)
2105 (set-visited-file-modtime))
2eb4bdca 2106 ;; prevent loss of data if saving part of the buffer in visited file
a1506d29 2107 (or writing-whole-file
52fa07ba 2108 (not writing-same-file)
2eb4bdca
MK
2109 (progn
2110 (sit-for 2)
2111 (message "Warning: you have saved only part of the buffer!")
2112 (set-buffer-modified-p t)))
52fa07ba 2113 (if q-flag
1e70790f 2114 (if (< viper-expert-level 2)
52fa07ba
MK
2115 (save-buffers-kill-emacs)
2116 (kill-buffer (current-buffer))))
2117 )))
a1506d29 2118
bbe6126c 2119
52fa07ba
MK
2120(defun ex-write-info (exists file-name beg end)
2121 (message "`%s'%s %d lines, %d characters"
8626cfa2 2122 (viper-abbreviate-file-name file-name)
52fa07ba
MK
2123 (if exists "" " [New file]")
2124 (count-lines beg (min (1+ end) (point-max)))
2125 (- end beg)))
2126
2127;; Ex yank command
2128(defun ex-yank ()
8626cfa2
MK
2129 (viper-default-ex-addresses)
2130 (viper-get-ex-buffer)
52fa07ba 2131 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses))))
8626cfa2 2132 (if (> beg end) (error viper-FirstAddrExceedsSecond))
52fa07ba 2133 (save-excursion
8626cfa2 2134 (viper-enlarge-region beg end)
52fa07ba
MK
2135 (exchange-point-and-mark)
2136 (if (or ex-g-flag ex-g-variant)
2137 (error "Can't execute `yank' within `global'"))
2138 (if ex-count
bbe6126c 2139 (progn
52fa07ba
MK
2140 (set-mark (point))
2141 (forward-line (1- ex-count)))
2142 (set-mark end))
8626cfa2
MK
2143 (viper-enlarge-region (point) (mark t))
2144 (if ex-flag (error "`yank': %s" viper-SpuriousText))
52fa07ba 2145 (if ex-buffer
8626cfa2
MK
2146 (cond ((viper-valid-register ex-buffer '(Letter))
2147 (viper-append-to-register
52fa07ba 2148 (downcase ex-buffer) (point) (mark t)))
8626cfa2 2149 ((viper-valid-register ex-buffer)
52fa07ba 2150 (copy-to-register ex-buffer (point) (mark t) nil))
8626cfa2 2151 (t (error viper-InvalidRegister ex-buffer))))
52fa07ba
MK
2152 (copy-region-as-kill (point) (mark t)))))
2153
2154;; Execute shell command
2155(defun ex-command ()
2156 (let (command)
2157 (save-window-excursion
a1506d29 2158 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
8626cfa2 2159 (set-buffer viper-ex-work-buf)
52fa07ba
MK
2160 (skip-chars-forward " \t")
2161 (setq command (buffer-substring (point) (point-max)))
2162 (end-of-line))
3af0304a 2163 ;; replace # and % with the previous/current file
52fa07ba
MK
2164 (setq command (ex-expand-filsyms command (current-buffer)))
2165 (if (and (> (length command) 0) (string= "!" (substring command 0 1)))
8626cfa2
MK
2166 (if viper-ex-last-shell-com
2167 (setq command
2168 (concat viper-ex-last-shell-com (substring command 1)))
52fa07ba 2169 (error "No previous shell command")))
8626cfa2 2170 (setq viper-ex-last-shell-com command)
52fa07ba
MK
2171 (if (null ex-addresses)
2172 (shell-command command)
2173 (let ((end (car ex-addresses)) (beg (car (cdr ex-addresses))))
2174 (if (null beg) (setq beg end))
6c2e12f4 2175 (save-excursion
52fa07ba
MK
2176 (goto-char beg)
2177 (set-mark end)
8626cfa2 2178 (viper-enlarge-region (point) (mark t))
52fa07ba
MK
2179 (shell-command-on-region (point) (mark t) command t))
2180 (goto-char beg)))))
2181
4960e757
MK
2182(defun ex-compile ()
2183 "Reads args from the command line, then runs make with the args.
2184If no args are given, then it runs the last compile command.
2185Type 'mak ' (including the space) to run make with no args."
2186 (let (args)
2187 (save-window-excursion
2188 (setq viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name))
2189 (set-buffer viper-ex-work-buf)
2190 (setq args (buffer-substring (point) (point-max)))
2191 (end-of-line))
2192 ;; Remove the newline that may (will?) be at the end of the args
2193 (if (string= "\n" (substring args (1- (length args))))
2194 (setq args (substring args 0 (1- (length args)))))
2195 ;; Run last command if no args given, else construct a new command.
2196 (setq args
2197 (if (string= "" args)
2198 (if (boundp 'compile-command)
2199 compile-command
2200 ex-compile-command)
2201 (concat ex-compile-command " " args)))
2202 (compile args)
2203 ))
2204
52fa07ba
MK
2205;; Print line number
2206(defun ex-line-no ()
2207 (message "%d"
2208 (1+ (count-lines
2209 (point-min)
2210 (if (null ex-addresses) (point-max) (car ex-addresses))))))
2211
2212;; Give information on the file visited by the current buffer
8626cfa2 2213(defun viper-info-on-file ()
6c2e12f4 2214 (interactive)
8626cfa2
MK
2215 (let ((pos1 (viper-line-pos 'start))
2216 (pos2 (viper-line-pos 'end))
52fa07ba 2217 lines file info)
8626cfa2 2218 (setq lines (count-lines (point-min) (viper-line-pos 'end))
52fa07ba 2219 file (if (buffer-file-name)
8626cfa2 2220 (concat (viper-abbreviate-file-name (buffer-file-name)) ":")
52fa07ba
MK
2221 (concat (buffer-name) " [Not visiting any file]:"))
2222 info (format "line=%d/%d pos=%d/%d col=%d %s"
2223 (if (= pos1 pos2)
2224 (1+ lines)
2225 lines)
2226 (count-lines (point-min) (point-max))
2227 (point) (1- (point-max))
2228 (1+ (current-column))
2229 (if (buffer-modified-p) "[Modified]" "[Unchanged]")))
2230 (if (< (+ 1 (length info) (length file))
2231 (window-width (minibuffer-window)))
7b8a295e 2232 (message "%s" (concat file " " info))
52fa07ba 2233 (save-window-excursion
8626cfa2 2234 (with-output-to-temp-buffer " *viper-info*"
8e41a31c
MK
2235 (princ (concat "\n" file "\n\n\t" info "\n\n")))
2236 (let ((inhibit-quit t))
2237 (viper-set-unread-command-events (viper-read-event)))
8626cfa2 2238 (kill-buffer " *viper-info*")))
fad2477b 2239 ))
6c2e12f4 2240
b9fe4732
MK
2241
2242;; Without arguments displays info on file. With an arg, sets the visited file
2243;; name to that arg
2244(defun ex-set-visited-file-name ()
2245 (viper-get-ex-file)
2246 (if (string= ex-file "")
2247 (viper-info-on-file)
2248 ;; If ex-file is a directory, use the file portion of the buffer
2249 ;; file name (like ex-write). Do this even if ex-file is a
2250 ;; non-existent directory, since set-visited-file-name signals an
2251 ;; error on this condition, too.
2252 (if (and (string= (file-name-nondirectory ex-file) "")
2253 buffer-file-name
2254 (not (file-directory-p buffer-file-name)))
2255 (setq ex-file (concat (file-name-as-directory ex-file)
2256 (file-name-nondirectory buffer-file-name))))
2257 (set-visited-file-name ex-file)))
2258
2259
e36a387d
MK
2260;; display all variables set through :set
2261(defun ex-show-vars ()
8626cfa2
MK
2262 (with-output-to-temp-buffer " *viper-info*"
2263 (princ (if viper-auto-indent
e36a387d 2264 "autoindent (local)\n" "noautoindent (local)\n"))
a1506d29 2265 (princ (if (default-value 'viper-auto-indent)
e36a387d 2266 "autoindent (global) \n" "noautoindent (global) \n"))
8626cfa2
MK
2267 (princ (if viper-case-fold-search "ignorecase\n" "noignorecase\n"))
2268 (princ (if viper-re-search "magic\n" "nomagic\n"))
e36a387d
MK
2269 (princ (if buffer-read-only "readonly\n" "noreadonly\n"))
2270 (princ (if blink-matching-paren "showmatch\n" "noshowmatch\n"))
8626cfa2
MK
2271 (princ (if viper-search-wrap-around-t "wrapscan\n" "nowrapscan\n"))
2272 (princ (format "shiftwidth \t\t= %S\n" viper-shift-width))
e36a387d
MK
2273 (princ (format "tabstop (local) \t= %S\n" tab-width))
2274 (princ (format "tabstop (global) \t= %S\n" (default-value 'tab-width)))
2275 (princ (format "wrapmargin (local) \t= %S\n"
2276 (- (window-width) fill-column)))
2277 (princ (format "wrapmargin (global) \t= %S\n"
2278 (- (window-width) (default-value 'fill-column))))
2279 (princ (format "shell \t\t\t= %S\n" (if (boundp 'explicit-shell-file-name)
2280 explicit-shell-file-name
2281 'none)))
2282 ))
2283
241d963d
MK
2284(defun ex-print ()
2285 (viper-default-ex-addresses)
2286 (let ((end (car ex-addresses))
2287 (beg (car (cdr ex-addresses))))
2288 (if (> beg end) (error viper-FirstAddrExceedsSecond))
2289 (save-excursion
2290 (viper-enlarge-region beg end)
2291 (if (or ex-g-flag ex-g-variant)
2292 ;; When executing a global command, collect output of each
2293 ;; print in viper-ex-print-buf.
2294 (progn
2295 (append-to-buffer viper-ex-print-buf (point) (mark t))
2296 ;; Is this the last mark for the global command?
2297 (unless (cdr ex-g-marks)
2298 (with-current-buffer viper-ex-print-buf
2299 (ex-print-display-lines (buffer-string))
2300 (erase-buffer))))
2301 (ex-print-display-lines (buffer-substring (point) (mark t)))))))
2302
2303(defun ex-print-display-lines (lines)
2304 (cond
2305 ;; String doesn't contain a newline.
2306 ((not (string-match "\n" lines))
2307 (message "%s" lines))
2308 ;; String contains only one newline at the end. Strip it off.
2309 ((= (string-match "\n" lines) (1- (length lines)))
2310 (message "%s" (substring lines 0 -1)))
2311 ;; String spans more than one line. Use a temporary buffer.
2312 (t
2313 (save-current-buffer
2314 (with-output-to-temp-buffer " *viper-info*"
2315 (princ lines))))))
2316
e36a387d
MK
2317
2318
2319
6c2e12f4 2320
ab5796a9 2321;;; arch-tag: 56b80d36-f880-4d10-bd66-85ad91a295db
60370d40 2322;;; viper-ex.el ends here