annotate lisp/viper/viper-ex.el @ 78:c7528f8e288d r20-0b34

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