Mercurial > emacs
annotate lisp/simple.el @ 1285:d50533e23dff
* editfns.c (make_buffer_string): Call copy_intervals_to_string().
(Finsert_buffer_substring): Call graft_intervals_into_buffer().
#include "intervals.h".
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Thu, 01 Oct 1992 00:56:11 +0000 |
parents | 6b63876aea1c |
children | b56c2c450d49 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1 ;;; simple.el --- basic editing commands for Emacs |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
2 |
582 | 3 ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
475 | 4 |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
9 ;; the Free Software Foundation; either version 2, or (at your option) |
475 | 10 ;; any later version. |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
21 ;;; Code: |
475 | 22 |
23 (defun open-line (arg) | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
24 "Insert a newline and leave point before it. |
1063
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
25 If there is a fill prefix, insert the fill prefix on the new line |
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
26 if the line would have been empty. |
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
27 With arg N, insert N newlines." |
475 | 28 (interactive "*p") |
1063
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
29 (let* ((do-fill-prefix (and fill-prefix (bolp))) |
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
30 (flag (and (null do-fill-prefix) (bolp) (not (bobp))))) |
475 | 31 (if flag (forward-char -1)) |
32 (while (> arg 0) | |
33 (save-excursion | |
1063
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
34 (insert ?\n)) |
25b929c06f83
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1039
diff
changeset
|
35 (if do-fill-prefix (insert fill-prefix)) |
475 | 36 (setq arg (1- arg))) |
37 (if flag (forward-char 1)))) | |
38 | |
39 (defun split-line () | |
40 "Split current line, moving portion beyond point vertically down." | |
41 (interactive "*") | |
42 (skip-chars-forward " \t") | |
43 (let ((col (current-column)) | |
44 (pos (point))) | |
45 (insert ?\n) | |
46 (indent-to col 0) | |
47 (goto-char pos))) | |
48 | |
49 (defun quoted-insert (arg) | |
50 "Read next input character and insert it. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
51 This is useful for inserting control characters. |
475 | 52 You may also type up to 3 octal digits, to insert a character with that code" |
53 (interactive "*p") | |
54 (let ((char (read-quoted-char))) | |
55 (while (> arg 0) | |
56 (insert char) | |
57 (setq arg (1- arg))))) | |
58 | |
59 (defun delete-indentation (&optional arg) | |
60 "Join this line to previous and fix up whitespace at join. | |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
61 If there is a fill prefix, delete it from the beginning of this line. |
475 | 62 With argument, join this line to following line." |
63 (interactive "*P") | |
64 (beginning-of-line) | |
65 (if arg (forward-line 1)) | |
66 (if (eq (preceding-char) ?\n) | |
67 (progn | |
68 (delete-region (point) (1- (point))) | |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
69 ;; If the second line started with the fill prefix, |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
70 ;; delete the prefix. |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
71 (if (and fill-prefix |
1276
6b63876aea1c
(kill-word): Don't change point before calling kill-region.
Richard M. Stallman <rms@gnu.org>
parents:
1145
diff
changeset
|
72 (<= (+ (point) (length fill-prefix)) (point-max)) |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
73 (string= fill-prefix |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
74 (buffer-substring (point) |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
75 (+ (point) (length fill-prefix))))) |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
76 (delete-region (point) (+ (point) (length fill-prefix)))) |
475 | 77 (fixup-whitespace)))) |
78 | |
79 (defun fixup-whitespace () | |
80 "Fixup white space between objects around point. | |
81 Leave one space or none, according to the context." | |
82 (interactive "*") | |
83 (save-excursion | |
84 (delete-horizontal-space) | |
85 (if (or (looking-at "^\\|\\s)") | |
86 (save-excursion (forward-char -1) | |
87 (looking-at "$\\|\\s(\\|\\s'"))) | |
88 nil | |
89 (insert ?\ )))) | |
90 | |
91 (defun delete-horizontal-space () | |
92 "Delete all spaces and tabs around point." | |
93 (interactive "*") | |
94 (skip-chars-backward " \t") | |
95 (delete-region (point) (progn (skip-chars-forward " \t") (point)))) | |
96 | |
97 (defun just-one-space () | |
98 "Delete all spaces and tabs around point, leaving one space." | |
99 (interactive "*") | |
100 (skip-chars-backward " \t") | |
101 (if (= (following-char) ? ) | |
102 (forward-char 1) | |
103 (insert ? )) | |
104 (delete-region (point) (progn (skip-chars-forward " \t") (point)))) | |
105 | |
106 (defun delete-blank-lines () | |
107 "On blank line, delete all surrounding blank lines, leaving just one. | |
108 On isolated blank line, delete that one. | |
109 On nonblank line, delete all blank lines that follow it." | |
110 (interactive "*") | |
111 (let (thisblank singleblank) | |
112 (save-excursion | |
113 (beginning-of-line) | |
114 (setq thisblank (looking-at "[ \t]*$")) | |
715 | 115 ;; Set singleblank if there is just one blank line here. |
475 | 116 (setq singleblank |
117 (and thisblank | |
118 (not (looking-at "[ \t]*\n[ \t]*$")) | |
119 (or (bobp) | |
120 (progn (forward-line -1) | |
121 (not (looking-at "[ \t]*$"))))))) | |
715 | 122 ;; Delete preceding blank lines, and this one too if it's the only one. |
475 | 123 (if thisblank |
124 (progn | |
125 (beginning-of-line) | |
126 (if singleblank (forward-line 1)) | |
127 (delete-region (point) | |
128 (if (re-search-backward "[^ \t\n]" nil t) | |
129 (progn (forward-line 1) (point)) | |
130 (point-min))))) | |
715 | 131 ;; Delete following blank lines, unless the current line is blank |
132 ;; and there are no following blank lines. | |
475 | 133 (if (not (and thisblank singleblank)) |
134 (save-excursion | |
135 (end-of-line) | |
136 (forward-line 1) | |
137 (delete-region (point) | |
138 (if (re-search-forward "[^ \t\n]" nil t) | |
139 (progn (beginning-of-line) (point)) | |
715 | 140 (point-max))))) |
141 ;; Handle the special case where point is followed by newline and eob. | |
142 ;; Delete the line, leaving point at eob. | |
143 (if (looking-at "^[ \t]*\n\\'") | |
144 (delete-region (point) (point-max))))) | |
475 | 145 |
146 (defun back-to-indentation () | |
147 "Move point to the first non-whitespace character on this line." | |
148 (interactive) | |
149 (beginning-of-line 1) | |
150 (skip-chars-forward " \t")) | |
151 | |
152 (defun newline-and-indent () | |
153 "Insert a newline, then indent according to major mode. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
154 Indentation is done using the value of `indent-line-function'. |
475 | 155 In programming language modes, this is the same as TAB. |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
156 In some text modes, where TAB inserts a tab, this command indents to the |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
157 column specified by the variable `left-margin'." |
475 | 158 (interactive "*") |
159 (delete-region (point) (progn (skip-chars-backward " \t") (point))) | |
617 | 160 (newline) |
475 | 161 (indent-according-to-mode)) |
162 | |
163 (defun reindent-then-newline-and-indent () | |
164 "Reindent current line, insert newline, then indent the new line. | |
165 Indentation of both lines is done according to the current major mode, | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
166 which means calling the current value of `indent-line-function'. |
475 | 167 In programming language modes, this is the same as TAB. |
168 In some text modes, where TAB inserts a tab, this indents to the | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
169 column specified by the variable `left-margin'." |
475 | 170 (interactive "*") |
171 (save-excursion | |
172 (delete-region (point) (progn (skip-chars-backward " \t") (point))) | |
173 (indent-according-to-mode)) | |
617 | 174 (newline) |
475 | 175 (indent-according-to-mode)) |
176 | |
177 ;; Internal subroutine of delete-char | |
178 (defun kill-forward-chars (arg) | |
179 (if (listp arg) (setq arg (car arg))) | |
180 (if (eq arg '-) (setq arg -1)) | |
181 (kill-region (point) (+ (point) arg))) | |
182 | |
183 ;; Internal subroutine of backward-delete-char | |
184 (defun kill-backward-chars (arg) | |
185 (if (listp arg) (setq arg (car arg))) | |
186 (if (eq arg '-) (setq arg -1)) | |
187 (kill-region (point) (- (point) arg))) | |
188 | |
189 (defun backward-delete-char-untabify (arg &optional killp) | |
190 "Delete characters backward, changing tabs into spaces. | |
191 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil. | |
192 Interactively, ARG is the prefix arg (default 1) | |
193 and KILLP is t if prefix arg is was specified." | |
194 (interactive "*p\nP") | |
195 (let ((count arg)) | |
196 (save-excursion | |
197 (while (and (> count 0) (not (bobp))) | |
198 (if (= (preceding-char) ?\t) | |
199 (let ((col (current-column))) | |
200 (forward-char -1) | |
201 (setq col (- col (current-column))) | |
202 (insert-char ?\ col) | |
203 (delete-char 1))) | |
204 (forward-char -1) | |
205 (setq count (1- count))))) | |
206 (delete-backward-char arg killp) | |
207 ;; In overwrite mode, back over columns while clearing them out, | |
208 ;; unless at end of line. | |
209 (and overwrite-mode (not (eolp)) | |
210 (save-excursion (insert-char ?\ arg)))) | |
211 | |
212 (defun zap-to-char (arg char) | |
213 "Kill up to and including ARG'th occurrence of CHAR. | |
214 Goes backward if ARG is negative; error if CHAR not found." | |
215 (interactive "p\ncZap to char: ") | |
216 (kill-region (point) (progn | |
217 (search-forward (char-to-string char) nil nil arg) | |
218 ; (goto-char (if (> arg 0) (1- (point)) (1+ (point)))) | |
219 (point)))) | |
220 | |
221 (defun beginning-of-buffer (&optional arg) | |
222 "Move point to the beginning of the buffer; leave mark at previous position. | |
223 With arg N, put point N/10 of the way from the true beginning. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
224 |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
225 Don't use this command in Lisp programs! |
475 | 226 \(goto-char (point-min)) is faster and avoids clobbering the mark." |
227 (interactive "P") | |
228 (push-mark) | |
229 (goto-char (if arg | |
230 (if (> (buffer-size) 10000) | |
231 ;; Avoid overflow for large buffer sizes! | |
232 (* (prefix-numeric-value arg) | |
233 (/ (buffer-size) 10)) | |
234 (/ (+ 10 (* (buffer-size) (prefix-numeric-value arg))) 10)) | |
235 (point-min))) | |
236 (if arg (forward-line 1))) | |
237 | |
238 (defun end-of-buffer (&optional arg) | |
239 "Move point to the end of the buffer; leave mark at previous position. | |
240 With arg N, put point N/10 of the way from the true end. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
241 |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
242 Don't use this command in Lisp programs! |
475 | 243 \(goto-char (point-max)) is faster and avoids clobbering the mark." |
244 (interactive "P") | |
245 (push-mark) | |
246 (goto-char (if arg | |
247 (- (1+ (buffer-size)) | |
248 (if (> (buffer-size) 10000) | |
249 ;; Avoid overflow for large buffer sizes! | |
250 (* (prefix-numeric-value arg) | |
251 (/ (buffer-size) 10)) | |
252 (/ (* (buffer-size) (prefix-numeric-value arg)) 10))) | |
253 (point-max))) | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
254 ;; If we went to a place in the middle of the buffer, |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
255 ;; adjust it to the beginning of a line. |
475 | 256 (if arg (forward-line 1) |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
257 ;; If the end of the buffer is not already on the screen, |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
258 ;; then scroll specially to put it near, but not at, the bottom. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
259 (if (let ((old-point (point))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
260 (save-excursion |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
261 (goto-char (window-start)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
262 (vertical-motion (window-height)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
263 (< (point) old-point))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
264 (recenter -3)))) |
475 | 265 |
266 (defun mark-whole-buffer () | |
715 | 267 "Put point at beginning and mark at end of buffer. |
268 You probably should not use this function in Lisp programs; | |
269 it is usually a mistake for a Lisp function to use any subroutine | |
270 that uses or sets the mark." | |
475 | 271 (interactive) |
272 (push-mark (point)) | |
273 (push-mark (point-max)) | |
274 (goto-char (point-min))) | |
275 | |
276 (defun count-lines-region (start end) | |
277 "Print number of lines and charcters in the region." | |
278 (interactive "r") | |
279 (message "Region has %d lines, %d characters" | |
280 (count-lines start end) (- end start))) | |
281 | |
282 (defun what-line () | |
283 "Print the current line number (in the buffer) of point." | |
284 (interactive) | |
285 (save-restriction | |
286 (widen) | |
287 (save-excursion | |
288 (beginning-of-line) | |
289 (message "Line %d" | |
290 (1+ (count-lines 1 (point))))))) | |
291 | |
292 (defun count-lines (start end) | |
293 "Return number of lines between START and END. | |
294 This is usually the number of newlines between them, | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
295 but can be one more if START is not equal to END |
475 | 296 and the greater of them is not at the start of a line." |
297 (save-excursion | |
298 (save-restriction | |
299 (narrow-to-region start end) | |
300 (goto-char (point-min)) | |
301 (if (eq selective-display t) | |
302 (let ((done 0)) | |
303 (while (re-search-forward "[\n\C-m]" nil t 40) | |
304 (setq done (+ 40 done))) | |
305 (while (re-search-forward "[\n\C-m]" nil t 1) | |
306 (setq done (+ 1 done))) | |
307 done) | |
308 (- (buffer-size) (forward-line (buffer-size))))))) | |
309 | |
310 (defun what-cursor-position () | |
311 "Print info on cursor position (on screen and within buffer)." | |
312 (interactive) | |
313 (let* ((char (following-char)) | |
314 (beg (point-min)) | |
315 (end (point-max)) | |
316 (pos (point)) | |
317 (total (buffer-size)) | |
318 (percent (if (> total 50000) | |
319 ;; Avoid overflow from multiplying by 100! | |
320 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1)) | |
321 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1)))) | |
322 (hscroll (if (= (window-hscroll) 0) | |
323 "" | |
324 (format " Hscroll=%d" (window-hscroll)))) | |
325 (col (current-column))) | |
326 (if (= pos end) | |
327 (if (or (/= beg 1) (/= end (1+ total))) | |
328 (message "point=%d of %d(%d%%) <%d - %d> column %d %s" | |
329 pos total percent beg end col hscroll) | |
330 (message "point=%d of %d(%d%%) column %d %s" | |
331 pos total percent col hscroll)) | |
332 (if (or (/= beg 1) (/= end (1+ total))) | |
333 (message "Char: %s (0%o) point=%d of %d(%d%%) <%d - %d> column %d %s" | |
334 (single-key-description char) char pos total percent beg end col hscroll) | |
335 (message "Char: %s (0%o) point=%d of %d(%d%%) column %d %s" | |
336 (single-key-description char) char pos total percent col hscroll))))) | |
337 | |
338 (defun fundamental-mode () | |
339 "Major mode not specialized for anything in particular. | |
340 Other major modes are defined by comparison with this one." | |
341 (interactive) | |
342 (kill-all-local-variables)) | |
343 | |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
344 (defvar read-expression-map (copy-keymap minibuffer-local-map) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
345 "Minibuffer keymap used for reading Lisp expressions.") |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
346 (define-key read-expression-map "\M-\t" 'lisp-complete-symbol) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
347 |
475 | 348 (put 'eval-expression 'disabled t) |
349 | |
350 ;; We define this, rather than making eval interactive, | |
351 ;; for the sake of completion of names like eval-region, eval-current-buffer. | |
352 (defun eval-expression (expression) | |
353 "Evaluate EXPRESSION and print value in minibuffer. | |
954
9e51bb887797
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
921
diff
changeset
|
354 Value is also consed on to front of the variable `values'." |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
355 (interactive (list (read-from-minibuffer "Eval: " |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
356 nil read-expression-map t))) |
475 | 357 (setq values (cons (eval expression) values)) |
358 (prin1 (car values) t)) | |
359 | |
360 (defun edit-and-eval-command (prompt command) | |
361 "Prompting with PROMPT, let user edit COMMAND and eval result. | |
362 COMMAND is a Lisp expression. Let user edit that expression in | |
363 the minibuffer, then read and evaluate the result." | |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
364 (let ((command (read-from-minibuffer prompt |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
365 (prin1-to-string command) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
366 read-expression-map t))) |
475 | 367 ;; Add edited command to command history, unless redundant. |
368 (or (equal command (car command-history)) | |
369 (setq command-history (cons command command-history))) | |
370 (eval command))) | |
371 | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
372 (defun repeat-complex-command (arg) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
373 "Edit and re-evaluate last complex command, or ARGth from last. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
374 A complex command is one which used the minibuffer. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
375 The command is placed in the minibuffer as a Lisp form for editing. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
376 The result is executed, repeating the command as changed. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
377 If the command has been changed or is not the most recent previous command |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
378 it is added to the front of the command history. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
379 You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element] |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
380 to get different commands to edit and resubmit." |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
381 (interactive "p") |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
382 (let ((elt (nth (1- arg) command-history)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
383 (minibuffer-history-position arg) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
384 (minibuffer-history-sexp-flag t) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
385 newcmd) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
386 (if elt |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
387 (progn |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
388 (setq newcmd (read-from-minibuffer "Redo: " |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
389 (prin1-to-string elt) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
390 read-expression-map |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
391 t |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
392 (cons 'command-history |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
393 arg))) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
394 ;; If command was added to command-history as a string, |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
395 ;; get rid of that. We want only evallable expressions there. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
396 (if (stringp (car command-history)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
397 (setq command-history (cdr command-history))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
398 ;; If command to be redone does not match front of history, |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
399 ;; add it to the history. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
400 (or (equal newcmd (car command-history)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
401 (setq command-history (cons newcmd command-history))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
402 (eval newcmd)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
403 (ding)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
404 |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
405 (defvar minibuffer-history nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
406 "Default minibuffer history list. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
407 This is used for all minibuffer input |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
408 except when an alternate history list is specified.") |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
409 (defvar minibuffer-history-sexp-flag nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
410 "Nonzero when doing history operations on `command-history'. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
411 More generally, indicates that the history list being acted on |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
412 contains expressions rather than strings.") |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
413 (setq minibuffer-history-variable 'minibuffer-history) |
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
414 (setq minibuffer-history-position nil) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
415 (defvar minibuffer-history-search-history nil) |
858
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
416 |
921 | 417 (mapcar |
418 (function (lambda (key-and-command) | |
419 (mapcar | |
420 (function (lambda (keymap) | |
421 (define-key (symbol-value keymap) | |
422 (car key-and-command) | |
423 (cdr key-and-command)))) | |
424 '(minibuffer-local-map | |
425 minibuffer-local-ns-map | |
426 minibuffer-local-completion-map | |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
427 minibuffer-local-must-match-map |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
428 read-expression-map)))) |
921 | 429 '(("\en" . next-history-element) ([next] . next-history-element) |
430 ("\ep" . previous-history-element) ([prior] . previous-history-element) | |
431 ("\er" . previous-matching-history-element) | |
432 ("\es" . next-matching-history-element))) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
433 |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
434 (defun previous-matching-history-element (regexp n) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
435 "Find the previous history element that matches REGEXP. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
436 \(Previous history elements refer to earlier actions.) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
437 With prefix argument N, search for Nth previous match. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
438 If N is negative, find the next or Nth next match." |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
439 (interactive |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
440 (let ((enable-recursive-minibuffers t) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
441 (minibuffer-history-sexp-flag nil)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
442 (list (read-from-minibuffer "Previous element matching (regexp): " |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
443 nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
444 minibuffer-local-map |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
445 nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
446 'minibuffer-history-search-history) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
447 (prefix-numeric-value current-prefix-arg)))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
448 (let ((history (symbol-value minibuffer-history-variable)) |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
449 prevpos |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
450 (pos minibuffer-history-position)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
451 (while (/= n 0) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
452 (setq prevpos pos) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
453 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
454 (if (= pos prevpos) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
455 (error (if (= pos 1) |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
456 "No later matching history item" |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
457 "No earlier matching history item"))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
458 (if (string-match regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
459 (if minibuffer-history-sexp-flag |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
460 (prin1-to-string (nth (1- pos) history)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
461 (nth (1- pos) history))) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
462 (setq n (+ n (if (< n 0) 1 -1))))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
463 (setq minibuffer-history-position pos) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
464 (erase-buffer) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
465 (let ((elt (nth (1- pos) history))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
466 (insert (if minibuffer-history-sexp-flag |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
467 (prin1-to-string elt) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
468 elt))) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
469 (goto-char (point-min))) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
470 (if (or (eq (car (car command-history)) 'previous-matching-history-element) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
471 (eq (car (car command-history)) 'next-matching-history-element)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
472 (setq command-history (cdr command-history)))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
473 |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
474 (defun next-matching-history-element (regexp n) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
475 "Find the next history element that matches REGEXP. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
476 \(The next history element refers to a more recent action.) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
477 With prefix argument N, search for Nth next match. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
478 If N is negative, find the previous or Nth previous match." |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
479 (interactive |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
480 (let ((enable-recursive-minibuffers t) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
481 (minibuffer-history-sexp-flag nil)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
482 (list (read-from-minibuffer "Next element matching (regexp): " |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
483 nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
484 minibuffer-local-map |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
485 nil |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
486 'minibuffer-history-search-history) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1063
diff
changeset
|
487 (prefix-numeric-value current-prefix-arg)))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
488 (previous-matching-history-element regexp (- n))) |
475 | 489 |
858
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
490 (defun next-history-element (n) |
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
491 "Insert the next element of the minibuffer history into the minibuffer." |
475 | 492 (interactive "p") |
858
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
493 (let ((narg (min (max 1 (- minibuffer-history-position n)) |
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
494 (length (symbol-value minibuffer-history-variable))))) |
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
495 (if (= minibuffer-history-position narg) |
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
496 (error (if (= minibuffer-history-position 1) |
892
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
497 "End of history; no next item" |
3a9943a4a440
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
498 "Beginning of history; no preceding item")) |
475 | 499 (erase-buffer) |
858
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
500 (setq minibuffer-history-position narg) |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
501 (let ((elt (nth (1- minibuffer-history-position) |
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
502 (symbol-value minibuffer-history-variable)))) |
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
503 (insert |
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
504 (if minibuffer-history-sexp-flag |
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
859
diff
changeset
|
505 (prin1-to-string elt) |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
506 elt))) |
475 | 507 (goto-char (point-min))))) |
508 | |
858
b11800dc877d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
509 (defun previous-history-element (n) |
1145 | 510 "Inserts the previous element of the minibuffer history into the minibuffer." |
475 | 511 (interactive "p") |
859
5f325fbc093d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
858
diff
changeset
|
512 (next-history-element (- n))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
513 |
475 | 514 (defun goto-line (arg) |
515 "Goto line ARG, counting from line 1 at beginning of buffer." | |
516 (interactive "NGoto line: ") | |
517 (save-restriction | |
518 (widen) | |
519 (goto-char 1) | |
520 (if (eq selective-display t) | |
521 (re-search-forward "[\n\C-m]" nil 'end (1- arg)) | |
522 (forward-line (1- arg))))) | |
523 | |
524 ;Put this on C-x u, so we can force that rather than C-_ into startup msg | |
525 (fset 'advertised-undo 'undo) | |
526 | |
527 (defun undo (&optional arg) | |
528 "Undo some previous changes. | |
529 Repeat this command to undo more changes. | |
530 A numeric argument serves as a repeat count." | |
531 (interactive "*p") | |
532 (let ((modified (buffer-modified-p))) | |
582 | 533 (or (eq (selected-window) (minibuffer-window)) |
534 (message "Undo!")) | |
475 | 535 (or (eq last-command 'undo) |
536 (progn (undo-start) | |
537 (undo-more 1))) | |
538 (setq this-command 'undo) | |
539 (undo-more (or arg 1)) | |
540 (and modified (not (buffer-modified-p)) | |
541 (delete-auto-save-file-if-necessary)))) | |
542 | |
543 (defun undo-start () | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
544 "Set `pending-undo-list' to the front of the undo list. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
545 The next call to `undo-more' will undo the most recently made change." |
475 | 546 (if (eq buffer-undo-list t) |
547 (error "No undo information in this buffer")) | |
548 (setq pending-undo-list buffer-undo-list)) | |
549 | |
550 (defun undo-more (count) | |
551 "Undo back N undo-boundaries beyond what was already undone recently. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
552 Call `undo-start' to get ready to undo recent changes, |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
553 then call `undo-more' one or more times to undo them." |
475 | 554 (or pending-undo-list |
555 (error "No further undo information")) | |
556 (setq pending-undo-list (primitive-undo count pending-undo-list))) | |
557 | |
558 (defvar last-shell-command "") | |
559 (defvar last-shell-command-on-region "") | |
560 | |
561 (defun shell-command (command &optional flag) | |
562 "Execute string COMMAND in inferior shell; display output, if any. | |
563 If COMMAND ends in ampersand, execute it asynchronously. | |
564 | |
565 Optional second arg non-nil (prefix arg, if interactive) | |
566 means insert output in current buffer after point (leave mark after it). | |
567 This cannot be done asynchronously." | |
568 (interactive (list (read-string "Shell command: " last-shell-command) | |
569 current-prefix-arg)) | |
570 (if flag | |
571 (progn (barf-if-buffer-read-only) | |
572 (push-mark) | |
573 ;; We do not use -f for csh; we will not support broken use of | |
574 ;; .cshrcs. Even the BSD csh manual says to use | |
575 ;; "if ($?prompt) exit" before things which are not useful | |
576 ;; non-interactively. Besides, if someone wants their other | |
577 ;; aliases for shell commands then they can still have them. | |
578 (call-process shell-file-name nil t nil | |
579 "-c" command) | |
580 (exchange-point-and-mark)) | |
581 ;; Preserve the match data in case called from a program. | |
582 (let ((data (match-data))) | |
583 (unwind-protect | |
584 (if (string-match "[ \t]*&[ \t]*$" command) | |
585 ;; Command ending with ampersand means asynchronous. | |
586 (let ((buffer (get-buffer-create "*shell-command*")) | |
587 (directory default-directory) | |
588 proc) | |
589 ;; Remove the ampersand. | |
590 (setq command (substring command 0 (match-beginning 0))) | |
591 ;; If will kill a process, query first. | |
592 (setq proc (get-buffer-process buffer)) | |
593 (if proc | |
594 (if (yes-or-no-p "A command is running. Kill it? ") | |
595 (kill-process proc) | |
596 (error "Shell command in progress"))) | |
597 (save-excursion | |
598 (set-buffer buffer) | |
599 (erase-buffer) | |
600 (display-buffer buffer) | |
601 (setq default-directory directory) | |
602 (setq proc (start-process "Shell" buffer | |
603 shell-file-name "-c" command)) | |
604 (setq mode-line-process '(": %s")) | |
605 (set-process-sentinel proc 'shell-command-sentinel) | |
606 (set-process-filter proc 'shell-command-filter) | |
607 )) | |
608 (shell-command-on-region (point) (point) command nil)) | |
609 (store-match-data data))))) | |
610 | |
611 ;; We have a sentinel to prevent insertion of a termination message | |
612 ;; in the buffer itself. | |
613 (defun shell-command-sentinel (process signal) | |
614 (if (memq (process-status process) '(exit signal)) | |
615 (progn | |
616 (message "%s: %s." | |
617 (car (cdr (cdr (process-command process)))) | |
618 (substring signal 0 -1)) | |
619 (save-excursion | |
620 (set-buffer (process-buffer process)) | |
621 (setq mode-line-process nil)) | |
622 (delete-process process)))) | |
623 | |
624 (defun shell-command-filter (proc string) | |
625 ;; Do save-excursion by hand so that we can leave point numerically unchanged | |
626 ;; despite an insertion immediately after it. | |
627 (let* ((obuf (current-buffer)) | |
628 (buffer (process-buffer proc)) | |
629 opoint | |
630 (window (get-buffer-window buffer)) | |
631 (pos (window-start window))) | |
632 (unwind-protect | |
633 (progn | |
634 (set-buffer buffer) | |
635 (setq opoint (point)) | |
636 (goto-char (point-max)) | |
637 (insert-before-markers string)) | |
638 ;; insert-before-markers moved this marker: set it back. | |
639 (set-window-start window pos) | |
640 ;; Finish our save-excursion. | |
641 (goto-char opoint) | |
642 (set-buffer obuf)))) | |
643 | |
644 (defun shell-command-on-region (start end command &optional flag interactive) | |
645 "Execute string COMMAND in inferior shell with region as input. | |
646 Normally display output (if any) in temp buffer `*Shell Command Output*'; | |
647 Prefix arg means replace the region with it. | |
648 Noninteractive args are START, END, COMMAND, FLAG. | |
649 Noninteractively FLAG means insert output in place of text from START to END, | |
650 and put point at the end, but don't alter the mark. | |
651 | |
652 If the output is one line, it is displayed in the echo area, | |
653 but it is nonetheless available in buffer `*Shell Command Output*' | |
654 even though that buffer is not automatically displayed. If there is no output | |
655 or output is inserted in the current buffer then `*Shell Command Output*' is | |
656 deleted." | |
657 (interactive (list (min (point) (mark)) (max (point) (mark)) | |
658 (read-string "Shell command on region: " | |
659 last-shell-command-on-region) | |
660 current-prefix-arg | |
661 (prefix-numeric-value current-prefix-arg))) | |
662 (if flag | |
663 ;; Replace specified region with output from command. | |
664 (let ((swap (and interactive (< (point) (mark))))) | |
665 ;; Don't muck with mark | |
666 ;; unless called interactively. | |
667 (and interactive (push-mark)) | |
668 (call-process-region start end shell-file-name t t nil | |
669 "-c" command) | |
670 (if (get-buffer "*Shell Command Output*") | |
671 (kill-buffer "*Shell Command Output*")) | |
672 (and interactive swap (exchange-point-and-mark))) | |
673 ;; No prefix argument: put the output in a temp buffer, | |
674 ;; replacing its entire contents. | |
675 (let ((buffer (get-buffer-create "*Shell Command Output*"))) | |
676 (if (eq buffer (current-buffer)) | |
677 ;; If the input is the same buffer as the output, | |
678 ;; delete everything but the specified region, | |
679 ;; then replace that region with the output. | |
680 (progn (delete-region end (point-max)) | |
681 (delete-region (point-min) start) | |
682 (call-process-region (point-min) (point-max) | |
683 shell-file-name t t nil | |
684 "-c" command)) | |
685 ;; Clear the output buffer, then run the command with output there. | |
686 (save-excursion | |
687 (set-buffer buffer) | |
688 (erase-buffer)) | |
689 (call-process-region start end shell-file-name | |
690 nil buffer nil | |
691 "-c" command)) | |
692 ;; Report the amount of output. | |
693 (let ((lines (save-excursion | |
694 (set-buffer buffer) | |
695 (if (= (buffer-size) 0) | |
696 0 | |
697 (count-lines (point-min) (point-max)))))) | |
698 (cond ((= lines 0) | |
699 (message "(Shell command completed with no output)") | |
700 (kill-buffer "*Shell Command Output*")) | |
701 ((= lines 1) | |
702 (message "%s" | |
703 (save-excursion | |
704 (set-buffer buffer) | |
705 (goto-char (point-min)) | |
706 (buffer-substring (point) | |
707 (progn (end-of-line) (point)))))) | |
708 (t | |
709 (set-window-start (display-buffer buffer) 1))))))) | |
710 | |
711 (defun universal-argument () | |
712 "Begin a numeric argument for the following command. | |
713 Digits or minus sign following \\[universal-argument] make up the numeric argument. | |
714 \\[universal-argument] following the digits or minus sign ends the argument. | |
715 \\[universal-argument] without digits or minus sign provides 4 as argument. | |
716 Repeating \\[universal-argument] without digits or minus sign | |
717 multiplies the argument by 4 each time." | |
718 (interactive nil) | |
513 | 719 (let ((factor 4) |
720 key) | |
715 | 721 ;; (describe-arg (list factor) 1) |
722 (setq key (read-key-sequence nil t)) | |
513 | 723 (while (equal (key-binding key) 'universal-argument) |
724 (setq factor (* 4 factor)) | |
715 | 725 ;; (describe-arg (list factor) 1) |
726 (setq key (read-key-sequence nil t))) | |
513 | 727 (prefix-arg-internal key factor nil))) |
475 | 728 |
513 | 729 (defun prefix-arg-internal (key factor value) |
475 | 730 (let ((sign 1)) |
731 (if (and (numberp value) (< value 0)) | |
732 (setq sign -1 value (- value))) | |
733 (if (eq value '-) | |
734 (setq sign -1 value nil)) | |
715 | 735 ;; (describe-arg value sign) |
513 | 736 (while (equal key "-") |
737 (setq sign (- sign) factor nil) | |
715 | 738 ;; (describe-arg value sign) |
739 (setq key (read-key-sequence nil t))) | |
1039 | 740 (while (and (stringp key) |
741 (= (length key) 1) | |
513 | 742 (not (string< key "0")) |
743 (not (string< "9" key))) | |
744 (setq value (+ (* (if (numberp value) value 0) 10) | |
745 (- (aref key 0) ?0)) | |
746 factor nil) | |
715 | 747 ;; (describe-arg value sign) |
748 (setq key (read-key-sequence nil t))) | |
475 | 749 (setq prefix-arg |
513 | 750 (cond (factor (list factor)) |
475 | 751 ((numberp value) (* value sign)) |
752 ((= sign -1) '-))) | |
513 | 753 ;; Calling universal-argument after digits |
754 ;; terminates the argument but is ignored. | |
755 (if (eq (key-binding key) 'universal-argument) | |
756 (progn | |
757 (describe-arg value sign) | |
715 | 758 (setq key (read-key-sequence nil t)))) |
513 | 759 (if (= (length key) 1) |
760 ;; Make sure self-insert-command finds the proper character; | |
761 ;; unread the character and let the command loop process it. | |
762 (setq unread-command-char (string-to-char key)) | |
763 ;; We can't push back a longer string, so we'll emulate the | |
764 ;; command loop ourselves. | |
765 (command-execute (key-binding key))))) | |
475 | 766 |
513 | 767 (defun describe-arg (value sign) |
768 (cond ((numberp value) | |
769 (message "Arg: %d" (* value sign))) | |
770 ((consp value) | |
771 (message "Arg: [%d]" (car value))) | |
772 ((< sign 0) | |
773 (message "Arg: -")))) | |
475 | 774 |
775 (defun digit-argument (arg) | |
776 "Part of the numeric argument for the next command. | |
777 \\[universal-argument] following digits or minus sign ends the argument." | |
778 (interactive "P") | |
513 | 779 (prefix-arg-internal (char-to-string (logand last-command-char ?\177)) |
780 nil arg)) | |
475 | 781 |
782 (defun negative-argument (arg) | |
783 "Begin a negative numeric argument for the next command. | |
784 \\[universal-argument] following digits or minus sign ends the argument." | |
785 (interactive "P") | |
513 | 786 (prefix-arg-internal "-" nil arg)) |
475 | 787 |
788 (defun forward-to-indentation (arg) | |
789 "Move forward ARG lines and position at first nonblank character." | |
790 (interactive "p") | |
791 (forward-line arg) | |
792 (skip-chars-forward " \t")) | |
793 | |
794 (defun backward-to-indentation (arg) | |
795 "Move backward ARG lines and position at first nonblank character." | |
796 (interactive "p") | |
797 (forward-line (- arg)) | |
798 (skip-chars-forward " \t")) | |
799 | |
800 (defun kill-line (&optional arg) | |
801 "Kill the rest of the current line; if no nonblanks there, kill thru newline. | |
802 With prefix argument, kill that many lines from point. | |
803 Negative arguments kill lines backward. | |
804 | |
805 When calling from a program, nil means \"no arg\", | |
806 a number counts as a prefix arg." | |
807 (interactive "P") | |
808 (kill-region (point) | |
809 (progn | |
810 (if arg | |
811 (forward-line (prefix-numeric-value arg)) | |
812 (if (eobp) | |
813 (signal 'end-of-buffer nil)) | |
814 (if (looking-at "[ \t]*$") | |
815 (forward-line 1) | |
816 (end-of-line))) | |
817 (point)))) | |
818 | |
715 | 819 ;;;; Window system cut and paste hooks. |
820 | |
821 (defvar interprogram-cut-function nil | |
822 "Function to call to make a killed region available to other programs. | |
823 | |
824 Most window systems provide some sort of facility for cutting and | |
825 pasting text between the windows of different programs. On startup, | |
826 this variable is set to a function which emacs will call whenever text | |
827 is put in the kill ring to make the new kill available to other | |
828 programs. | |
829 | |
830 The function takes one argument, TEXT, which is a string containing | |
831 the text which should be made available.") | |
832 | |
833 (defvar interprogram-paste-function nil | |
834 "Function to call to get text cut from other programs. | |
835 | |
836 Most window systems provide some sort of facility for cutting and | |
837 pasting text between the windows of different programs. On startup, | |
838 this variable is set to a function which emacs will call to obtain | |
839 text that other programs have provided for pasting. | |
840 | |
841 The function should be called with no arguments. If the function | |
842 returns nil, then no other program has provided such text, and the top | |
843 of the Emacs kill ring should be used. If the function returns a | |
727 | 844 string, that string should be put in the kill ring as the latest kill. |
845 | |
846 Note that the function should return a string only if a program other | |
847 than Emacs has provided a string for pasting; if Emacs provided the | |
848 most recent string, the function should return nil. If it is | |
849 difficult to tell whether Emacs or some other program provided the | |
850 current string, it is probably good enough to return nil if the string | |
851 is equal (according to `string=') to the last text Emacs provided.") | |
715 | 852 |
853 | |
854 | |
855 ;;;; The kill ring data structure. | |
475 | 856 |
857 (defvar kill-ring nil | |
715 | 858 "List of killed text sequences. |
859 Since the kill ring is supposed to interact nicely with cut-and-paste | |
860 facilities offered by window systems, use of this variable should | |
861 interact nicely with `interprogram-cut-function' and | |
862 `interprogram-paste-function'. The functions `kill-new', | |
863 `kill-append', and `current-kill' are supposed to implement this | |
864 interaction; you may want to use them instead of manipulating the kill | |
865 ring directly.") | |
475 | 866 |
867 (defconst kill-ring-max 30 | |
868 "*Maximum length of kill ring before oldest elements are thrown away.") | |
869 | |
870 (defvar kill-ring-yank-pointer nil | |
871 "The tail of the kill ring whose car is the last thing yanked.") | |
872 | |
715 | 873 (defun kill-new (string) |
874 "Make STRING the latest kill in the kill ring. | |
875 Set the kill-ring-yank pointer to point to it. | |
876 If `interprogram-cut-function' is non-nil, apply it to STRING." | |
877 (setq kill-ring (cons string kill-ring)) | |
878 (if (> (length kill-ring) kill-ring-max) | |
879 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)) | |
880 (setq kill-ring-yank-pointer kill-ring) | |
881 (if interprogram-cut-function | |
882 (funcall interprogram-cut-function string))) | |
883 | |
475 | 884 (defun kill-append (string before-p) |
715 | 885 "Append STRING to the end of the latest kill in the kill ring. |
886 If BEFORE-P is non-nil, prepend STRING to the kill. | |
887 If 'interprogram-cut-function' is set, pass the resulting kill to | |
888 it." | |
475 | 889 (setcar kill-ring |
890 (if before-p | |
891 (concat string (car kill-ring)) | |
715 | 892 (concat (car kill-ring) string))) |
893 (if interprogram-cut-function | |
894 (funcall interprogram-cut-function (car kill-ring)))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
895 |
715 | 896 (defun current-kill (n &optional do-not-move) |
897 "Rotate the yanking point by N places, and then return that kill. | |
898 If N is zero, `interprogram-paste-function' is set, and calling it | |
899 returns a string, then that string is added to the front of the | |
900 kill ring and returned as the latest kill. | |
901 If optional arg DO-NOT-MOVE is non-nil, then don't actually move the | |
902 yanking point; just return the Nth kill forward." | |
903 (let ((interprogram-paste (and (= n 0) | |
904 interprogram-paste-function | |
905 (funcall interprogram-paste-function)))) | |
906 (if interprogram-paste | |
907 (progn | |
908 ;; Disable the interprogram cut function when we add the new | |
909 ;; text to the kill ring, so Emacs doesn't try to own the | |
910 ;; selection, with identical text. | |
911 (let ((interprogram-cut-function nil)) | |
912 (kill-new interprogram-paste)) | |
913 interprogram-paste) | |
914 (or kill-ring (error "Kill ring is empty")) | |
915 (let* ((length (length kill-ring)) | |
916 (ARGth-kill-element | |
917 (nthcdr (% (+ n (- length (length kill-ring-yank-pointer))) | |
918 length) | |
919 kill-ring))) | |
920 (or do-not-move | |
921 (setq kill-ring-yank-pointer ARGth-kill-element)) | |
922 (car ARGth-kill-element))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
923 |
715 | 924 |
925 | |
926 ;;;; Commands for manipulating the kill ring. | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
927 |
475 | 928 (defun kill-region (beg end) |
929 "Kill between point and mark. | |
930 The text is deleted but saved in the kill ring. | |
931 The command \\[yank] can retrieve it from there. | |
932 \(If you want to kill and then yank immediately, use \\[copy-region-as-kill].) | |
933 | |
934 This is the primitive for programs to kill text (as opposed to deleting it). | |
935 Supply two arguments, character numbers indicating the stretch of text | |
936 to be killed. | |
937 Any command that calls this function is a \"kill command\". | |
938 If the previous command was also a kill command, | |
939 the text killed this time appends to the text killed last time | |
940 to make one entry in the kill ring." | |
941 (interactive "r") | |
715 | 942 (cond |
943 (buffer-read-only | |
944 (copy-region-as-kill beg end)) | |
945 ((not (or (eq buffer-undo-list t) | |
946 (eq last-command 'kill-region) | |
947 (eq beg end))) | |
948 ;; Don't let the undo list be truncated before we can even access it. | |
762 | 949 (let ((undo-strong-limit (+ (- (max beg end) (min beg end)) 100))) |
715 | 950 (delete-region beg end) |
951 ;; Take the same string recorded for undo | |
952 ;; and put it in the kill-ring. | |
953 (kill-new (car (car buffer-undo-list))) | |
954 (setq this-command 'kill-region))) | |
955 (t | |
475 | 956 (copy-region-as-kill beg end) |
715 | 957 (delete-region beg end)))) |
475 | 958 |
959 (defun copy-region-as-kill (beg end) | |
960 "Save the region as if killed, but don't kill it. | |
617 | 961 If `interprogram-cut-function' is non-nil, also save the text for a window |
962 system cut and paste." | |
475 | 963 (interactive "r") |
964 (if (eq last-command 'kill-region) | |
965 (kill-append (buffer-substring beg end) (< end beg)) | |
715 | 966 (kill-new (buffer-substring beg end))) |
967 (setq this-command 'kill-region) | |
475 | 968 nil) |
969 | |
970 (defun kill-ring-save (beg end) | |
971 "Save the region as if killed, but don't kill it." | |
972 (interactive "r") | |
973 (copy-region-as-kill beg end) | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
974 (if (interactive-p) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
975 (save-excursion |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
976 (let ((other-end (if (= (point) beg) end beg))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
977 (if (pos-visible-in-window-p other-end (selected-window)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
978 (progn |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
979 (goto-char other-end) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
980 (sit-for 1)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
981 (let* ((killed-text (current-kill 0)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
982 (message-len (min (length killed-text) 40))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
983 (if (= (point) beg) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
984 ;; Don't say "killed"; that is misleading. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
985 (message "Saved text until \"%s\"" |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
986 (substring killed-text (- message-len))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
987 (message "Saved text from \"%s\"" |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
988 (substring killed-text 0 message-len))))))))) |
475 | 989 |
990 (defun append-next-kill () | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
991 "Cause following command, if it kills, to append to previous kill." |
475 | 992 (interactive) |
993 (if (interactive-p) | |
994 (progn | |
995 (setq this-command 'kill-region) | |
996 (message "If the next command is a kill, it will append")) | |
997 (setq last-command 'kill-region))) | |
998 | |
999 (defun yank-pop (arg) | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1000 "Replace just-yanked stretch of killed text with a different stretch. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1001 This command is allowed only immediately after a `yank' or a `yank-pop'. |
475 | 1002 At such a time, the region contains a stretch of reinserted |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1003 previously-killed text. `yank-pop' deletes that text and inserts in its |
475 | 1004 place a different stretch of killed text. |
1005 | |
1006 With no argument, the previous kill is inserted. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1007 With argument N, insert the Nth previous kill. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1008 If N is negative, this is a more recent kill. |
475 | 1009 |
1010 The sequence of kills wraps around, so that after the oldest one | |
1011 comes the newest one." | |
1012 (interactive "*p") | |
1013 (if (not (eq last-command 'yank)) | |
1014 (error "Previous command was not a yank")) | |
1015 (setq this-command 'yank) | |
1016 (let ((before (< (point) (mark)))) | |
1017 (delete-region (point) (mark)) | |
1018 (set-mark (point)) | |
715 | 1019 (insert (current-kill arg)) |
475 | 1020 (if before (exchange-point-and-mark)))) |
1021 | |
1022 (defun yank (&optional arg) | |
1023 "Reinsert the last stretch of killed text. | |
1024 More precisely, reinsert the stretch of killed text most recently | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1025 killed OR yanked. Put point at end, and set mark at beginning. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1026 With just C-u as argument, same but put point at beginning (and mark at end). |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1027 With argument N, reinsert the Nth most recently killed stretch of killed |
475 | 1028 text. |
1029 See also the command \\[yank-pop]." | |
1030 (interactive "*P") | |
1031 (push-mark (point)) | |
715 | 1032 (insert (current-kill (cond |
1033 ((listp arg) 0) | |
1034 ((eq arg '-) -1) | |
1035 (t (1- arg))))) | |
475 | 1036 (if (consp arg) |
1037 (exchange-point-and-mark))) | |
715 | 1038 |
1039 (defun rotate-yank-pointer (arg) | |
1040 "Rotate the yanking point in the kill ring. | |
1041 With argument, rotate that many kills forward (or backward, if negative)." | |
1042 (interactive "p") | |
1043 (current-kill arg)) | |
1044 | |
475 | 1045 |
1046 (defun insert-buffer (buffer) | |
1047 "Insert after point the contents of BUFFER. | |
1048 Puts mark after the inserted text. | |
1049 BUFFER may be a buffer or a buffer name." | |
1050 (interactive (list (read-buffer "Insert buffer: " (other-buffer) t))) | |
1051 (or (bufferp buffer) | |
1052 (setq buffer (get-buffer buffer))) | |
1053 (let (start end newmark) | |
1054 (save-excursion | |
1055 (save-excursion | |
1056 (set-buffer buffer) | |
1057 (setq start (point-min) end (point-max))) | |
1058 (insert-buffer-substring buffer start end) | |
1059 (setq newmark (point))) | |
1060 (push-mark newmark))) | |
1061 | |
1062 (defun append-to-buffer (buffer start end) | |
1063 "Append to specified buffer the text of the region. | |
1064 It is inserted into that buffer before its point. | |
1065 | |
1066 When calling from a program, give three arguments: | |
1067 BUFFER (or buffer name), START and END. | |
1068 START and END specify the portion of the current buffer to be copied." | |
715 | 1069 (interactive |
1070 (list (read-buffer "Append to buffer: " (other-buffer nil t) t))) | |
475 | 1071 (let ((oldbuf (current-buffer))) |
1072 (save-excursion | |
1073 (set-buffer (get-buffer-create buffer)) | |
1074 (insert-buffer-substring oldbuf start end)))) | |
1075 | |
1076 (defun prepend-to-buffer (buffer start end) | |
1077 "Prepend to specified buffer the text of the region. | |
1078 It is inserted into that buffer after its point. | |
1079 | |
1080 When calling from a program, give three arguments: | |
1081 BUFFER (or buffer name), START and END. | |
1082 START and END specify the portion of the current buffer to be copied." | |
1083 (interactive "BPrepend to buffer: \nr") | |
1084 (let ((oldbuf (current-buffer))) | |
1085 (save-excursion | |
1086 (set-buffer (get-buffer-create buffer)) | |
1087 (save-excursion | |
1088 (insert-buffer-substring oldbuf start end))))) | |
1089 | |
1090 (defun copy-to-buffer (buffer start end) | |
1091 "Copy to specified buffer the text of the region. | |
1092 It is inserted into that buffer, replacing existing text there. | |
1093 | |
1094 When calling from a program, give three arguments: | |
1095 BUFFER (or buffer name), START and END. | |
1096 START and END specify the portion of the current buffer to be copied." | |
1097 (interactive "BCopy to buffer: \nr") | |
1098 (let ((oldbuf (current-buffer))) | |
1099 (save-excursion | |
1100 (set-buffer (get-buffer-create buffer)) | |
1101 (erase-buffer) | |
1102 (save-excursion | |
1103 (insert-buffer-substring oldbuf start end))))) | |
1104 | |
1105 (defun mark () | |
1106 "Return this buffer's mark value as integer, or nil if no mark. | |
1107 If you are using this in an editing command, you are most likely making | |
1108 a mistake; see the documentation of `set-mark'." | |
1109 (marker-position (mark-marker))) | |
1110 | |
1111 (defun set-mark (pos) | |
1112 "Set this buffer's mark to POS. Don't use this function! | |
1113 That is to say, don't use this function unless you want | |
1114 the user to see that the mark has moved, and you want the previous | |
1115 mark position to be lost. | |
1116 | |
1117 Normally, when a new mark is set, the old one should go on the stack. | |
1118 This is why most applications should use push-mark, not set-mark. | |
1119 | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1120 Novice Emacs Lisp programmers often try to use the mark for the wrong |
475 | 1121 purposes. The mark saves a location for the user's convenience. |
1122 Most editing commands should not alter the mark. | |
1123 To remember a location for internal use in the Lisp program, | |
1124 store it in a Lisp variable. Example: | |
1125 | |
1126 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))." | |
1127 | |
1128 (set-marker (mark-marker) pos (current-buffer))) | |
1129 | |
1130 (defvar mark-ring nil | |
1131 "The list of saved former marks of the current buffer, | |
1132 most recent first.") | |
1133 (make-variable-buffer-local 'mark-ring) | |
1134 | |
1135 (defconst mark-ring-max 16 | |
1136 "*Maximum size of mark ring. Start discarding off end if gets this big.") | |
1137 | |
1138 (defun set-mark-command (arg) | |
1139 "Set mark at where point is, or jump to mark. | |
1140 With no prefix argument, set mark, and push previous mark on mark ring. | |
1141 With argument, jump to mark, and pop into mark off the mark ring. | |
1142 | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1143 Novice Emacs Lisp programmers often try to use the mark for the wrong |
475 | 1144 purposes. See the documentation of `set-mark' for more information." |
1145 (interactive "P") | |
1146 (if (null arg) | |
1147 (push-mark) | |
1148 (if (null (mark)) | |
1149 (error "No mark set in this buffer") | |
1150 (goto-char (mark)) | |
1151 (pop-mark)))) | |
1152 | |
1153 (defun push-mark (&optional location nomsg) | |
1154 "Set mark at LOCATION (point, by default) and push old mark on mark ring. | |
1155 Displays \"Mark set\" unless the optional second arg NOMSG is non-nil. | |
1156 | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1157 Novice Emacs Lisp programmers often try to use the mark for the wrong |
475 | 1158 purposes. See the documentation of `set-mark' for more information." |
1159 (if (null (mark)) | |
1160 nil | |
1161 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring)) | |
1162 (if (> (length mark-ring) mark-ring-max) | |
1163 (progn | |
1164 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil) | |
1165 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))) | |
1166 (set-mark (or location (point))) | |
1167 (or nomsg executing-macro (> (minibuffer-depth) 0) | |
1168 (message "Mark set")) | |
1169 nil) | |
1170 | |
1171 (defun pop-mark () | |
1172 "Pop off mark ring into the buffer's actual mark. | |
1173 Does not set point. Does nothing if mark ring is empty." | |
1174 (if mark-ring | |
1175 (progn | |
1176 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker))))) | |
1177 (set-mark (+ 0 (car mark-ring))) | |
1178 (move-marker (car mark-ring) nil) | |
1179 (if (null (mark)) (ding)) | |
1180 (setq mark-ring (cdr mark-ring))))) | |
1181 | |
1182 (fset 'exchange-dot-and-mark 'exchange-point-and-mark) | |
1183 (defun exchange-point-and-mark () | |
1184 "Put the mark where point is now, and point where the mark is now." | |
1185 (interactive nil) | |
1186 (let ((omark (mark))) | |
1187 (if (null omark) | |
1188 (error "No mark set in this buffer")) | |
1189 (set-mark (point)) | |
1190 (goto-char omark) | |
1191 nil)) | |
1192 | |
1193 (defun next-line (arg) | |
1194 "Move cursor vertically down ARG lines. | |
1195 If there is no character in the target line exactly under the current column, | |
1196 the cursor is positioned after the character in that line which spans this | |
1197 column, or at the end of the line if it is not long enough. | |
1198 If there is no line in the buffer after this one, | |
1199 a newline character is inserted to create a line | |
1200 and the cursor moves to that line. | |
1201 | |
1202 The command \\[set-goal-column] can be used to create | |
1203 a semipermanent goal column to which this command always moves. | |
1204 Then it does not try to move vertically. This goal column is stored | |
1205 in `goal-column', which is nil when there is none. | |
1206 | |
1207 If you are thinking of using this in a Lisp program, consider | |
1208 using `forward-line' instead. It is usually easier to use | |
1209 and more reliable (no dependence on goal column, etc.)." | |
1210 (interactive "p") | |
1211 (if (= arg 1) | |
1212 (let ((opoint (point))) | |
1213 (forward-line 1) | |
1214 (if (or (= opoint (point)) | |
1215 (not (eq (preceding-char) ?\n))) | |
1216 (insert ?\n) | |
1217 (goto-char opoint) | |
1218 (line-move arg))) | |
1219 (line-move arg)) | |
1220 nil) | |
1221 | |
1222 (defun previous-line (arg) | |
1223 "Move cursor vertically up ARG lines. | |
1224 If there is no character in the target line exactly over the current column, | |
1225 the cursor is positioned after the character in that line which spans this | |
1226 column, or at the end of the line if it is not long enough. | |
1227 | |
1228 The command \\[set-goal-column] can be used to create | |
1229 a semipermanent goal column to which this command always moves. | |
1230 Then it does not try to move vertically. | |
1231 | |
1232 If you are thinking of using this in a Lisp program, consider using | |
1233 `forward-line' with negative argument instead.. It is usually easier | |
1234 to use and more reliable (no dependence on goal column, etc.)." | |
1235 (interactive "p") | |
1236 (line-move (- arg)) | |
1237 nil) | |
1238 | |
1239 (defconst track-eol nil | |
1240 "*Non-nil means vertical motion starting at end of line keeps to ends of lines. | |
1241 This means moving to the end of each line moved onto. | |
1242 The beginning of a blank line does not count as the end of a line.") | |
1243 | |
1244 (make-variable-buffer-local | |
1245 (defvar goal-column nil | |
1246 "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.")) | |
1247 | |
1248 (defvar temporary-goal-column 0 | |
1249 "Current goal column for vertical motion. | |
1250 It is the column where point was | |
1251 at the start of current run of vertical motion commands. | |
513 | 1252 When the `track-eol' feature is doing its job, the value is 9999.") |
475 | 1253 |
1254 (defun line-move (arg) | |
1255 (if (not (or (eq last-command 'next-line) | |
1256 (eq last-command 'previous-line))) | |
1257 (setq temporary-goal-column | |
1258 (if (and track-eol (eolp) | |
1259 ;; Don't count beg of empty line as end of line | |
1260 ;; unless we just did explicit end-of-line. | |
1261 (or (not (bolp)) (eq last-command 'end-of-line))) | |
1262 9999 | |
1263 (current-column)))) | |
1264 (if (not (integerp selective-display)) | |
1265 (forward-line arg) | |
1266 ;; Move by arg lines, but ignore invisible ones. | |
1267 (while (> arg 0) | |
1268 (vertical-motion 1) | |
1269 (forward-char -1) | |
1270 (forward-line 1) | |
1271 (setq arg (1- arg))) | |
1272 (while (< arg 0) | |
1273 (vertical-motion -1) | |
1274 (beginning-of-line) | |
1275 (setq arg (1+ arg)))) | |
1276 (move-to-column (or goal-column temporary-goal-column)) | |
1277 nil) | |
1278 | |
1279 | |
1280 (defun set-goal-column (arg) | |
1281 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line]. | |
1282 Those commands will move to this position in the line moved to | |
1283 rather than trying to keep the same horizontal position. | |
1284 With a non-nil argument, clears out the goal column | |
1285 so that \\[next-line] and \\[previous-line] resume vertical motion." | |
1286 (interactive "P") | |
1287 (if arg | |
1288 (progn | |
1289 (setq goal-column nil) | |
1290 (message "No goal column")) | |
1291 (setq goal-column (current-column)) | |
1292 (message (substitute-command-keys | |
1293 "Goal column %d (use \\[set-goal-column] with an arg to unset it)") | |
1294 goal-column)) | |
1295 nil) | |
1296 | |
1297 (defun transpose-chars (arg) | |
1298 "Interchange characters around point, moving forward one character. | |
1299 With prefix arg ARG, effect is to take character before point | |
1300 and drag it forward past ARG other characters (backward if ARG negative). | |
1301 If no argument and at end of line, the previous two chars are exchanged." | |
1302 (interactive "*P") | |
1303 (and (null arg) (eolp) (forward-char -1)) | |
1304 (transpose-subr 'forward-char (prefix-numeric-value arg))) | |
1305 | |
1306 (defun transpose-words (arg) | |
1307 "Interchange words around point, leaving point at end of them. | |
1308 With prefix arg ARG, effect is to take word before or around point | |
1309 and drag it forward past ARG other words (backward if ARG negative). | |
1310 If ARG is zero, the words around or after point and around or after mark | |
1311 are interchanged." | |
1312 (interactive "*p") | |
1313 (transpose-subr 'forward-word arg)) | |
1314 | |
1315 (defun transpose-sexps (arg) | |
1316 "Like \\[transpose-words] but applies to sexps. | |
1317 Does not work on a sexp that point is in the middle of | |
1318 if it is a list or string." | |
1319 (interactive "*p") | |
1320 (transpose-subr 'forward-sexp arg)) | |
1321 | |
1322 (defun transpose-lines (arg) | |
1323 "Exchange current line and previous line, leaving point after both. | |
1324 With argument ARG, takes previous line and moves it past ARG lines. | |
1325 With argument 0, interchanges line point is in with line mark is in." | |
1326 (interactive "*p") | |
1327 (transpose-subr (function | |
1328 (lambda (arg) | |
1329 (if (= arg 1) | |
1330 (progn | |
1331 ;; Move forward over a line, | |
1332 ;; but create a newline if none exists yet. | |
1333 (end-of-line) | |
1334 (if (eobp) | |
1335 (newline) | |
1336 (forward-char 1))) | |
1337 (forward-line arg)))) | |
1338 arg)) | |
1339 | |
1340 (defun transpose-subr (mover arg) | |
1341 (let (start1 end1 start2 end2) | |
1342 (if (= arg 0) | |
1343 (progn | |
1344 (save-excursion | |
1345 (funcall mover 1) | |
1346 (setq end2 (point)) | |
1347 (funcall mover -1) | |
1348 (setq start2 (point)) | |
1349 (goto-char (mark)) | |
1350 (funcall mover 1) | |
1351 (setq end1 (point)) | |
1352 (funcall mover -1) | |
1353 (setq start1 (point)) | |
1354 (transpose-subr-1)) | |
1355 (exchange-point-and-mark))) | |
1356 (while (> arg 0) | |
1357 (funcall mover -1) | |
1358 (setq start1 (point)) | |
1359 (funcall mover 1) | |
1360 (setq end1 (point)) | |
1361 (funcall mover 1) | |
1362 (setq end2 (point)) | |
1363 (funcall mover -1) | |
1364 (setq start2 (point)) | |
1365 (transpose-subr-1) | |
1366 (goto-char end2) | |
1367 (setq arg (1- arg))) | |
1368 (while (< arg 0) | |
1369 (funcall mover -1) | |
1370 (setq start2 (point)) | |
1371 (funcall mover -1) | |
1372 (setq start1 (point)) | |
1373 (funcall mover 1) | |
1374 (setq end1 (point)) | |
1375 (funcall mover 1) | |
1376 (setq end2 (point)) | |
1377 (transpose-subr-1) | |
1378 (setq arg (1+ arg))))) | |
1379 | |
1380 (defun transpose-subr-1 () | |
1381 (if (> (min end1 end2) (max start1 start2)) | |
1382 (error "Don't have two things to transpose")) | |
1383 (let ((word1 (buffer-substring start1 end1)) | |
1384 (word2 (buffer-substring start2 end2))) | |
1385 (delete-region start2 end2) | |
1386 (goto-char start2) | |
1387 (insert word1) | |
1388 (goto-char (if (< start1 start2) start1 | |
1389 (+ start1 (- (length word1) (length word2))))) | |
1390 (delete-char (length word1)) | |
1391 (insert word2))) | |
1392 | |
1393 (defconst comment-column 32 | |
1394 "*Column to indent right-margin comments to. | |
1395 Setting this variable automatically makes it local to the current buffer.") | |
1396 (make-variable-buffer-local 'comment-column) | |
1397 | |
1398 (defconst comment-start nil | |
1399 "*String to insert to start a new comment, or nil if no comment syntax defined.") | |
1400 | |
1401 (defconst comment-start-skip nil | |
1402 "*Regexp to match the start of a comment plus everything up to its body. | |
1403 If there are any \\(...\\) pairs, the comment delimiter text is held to begin | |
1404 at the place matched by the close of the first pair.") | |
1405 | |
1406 (defconst comment-end "" | |
1407 "*String to insert to end a new comment. | |
1408 Should be an empty string if comments are terminated by end-of-line.") | |
1409 | |
1410 (defconst comment-indent-hook | |
1411 '(lambda () comment-column) | |
1412 "Function to compute desired indentation for a comment. | |
1413 This function is called with no args with point at the beginning of | |
1414 the comment's starting delimiter.") | |
1415 | |
1416 (defun indent-for-comment () | |
1417 "Indent this line's comment to comment column, or insert an empty comment." | |
1418 (interactive "*") | |
1419 (beginning-of-line 1) | |
1420 (if (null comment-start) | |
1421 (error "No comment syntax defined") | |
1422 (let* ((eolpos (save-excursion (end-of-line) (point))) | |
1423 cpos indent begpos) | |
1424 (if (re-search-forward comment-start-skip eolpos 'move) | |
1425 (progn (setq cpos (point-marker)) | |
1426 ;; Find the start of the comment delimiter. | |
1427 ;; If there were paren-pairs in comment-start-skip, | |
1428 ;; position at the end of the first pair. | |
1429 (if (match-end 1) | |
1430 (goto-char (match-end 1)) | |
1431 ;; If comment-start-skip matched a string with internal | |
1432 ;; whitespace (not final whitespace) then the delimiter | |
1433 ;; start at the end of that whitespace. | |
1434 ;; Otherwise, it starts at the beginning of what was matched. | |
1435 (skip-chars-backward " \t" (match-beginning 0)) | |
1436 (skip-chars-backward "^ \t" (match-beginning 0))))) | |
1437 (setq begpos (point)) | |
1438 ;; Compute desired indent. | |
1439 (if (= (current-column) | |
1440 (setq indent (funcall comment-indent-hook))) | |
1441 (goto-char begpos) | |
1442 ;; If that's different from current, change it. | |
1443 (skip-chars-backward " \t") | |
1444 (delete-region (point) begpos) | |
1445 (indent-to indent)) | |
1446 ;; An existing comment? | |
1447 (if cpos | |
1448 (progn (goto-char cpos) | |
1449 (set-marker cpos nil)) | |
1450 ;; No, insert one. | |
1451 (insert comment-start) | |
1452 (save-excursion | |
1453 (insert comment-end)))))) | |
1454 | |
1455 (defun set-comment-column (arg) | |
1456 "Set the comment column based on point. | |
1457 With no arg, set the comment column to the current column. | |
1458 With just minus as arg, kill any comment on this line. | |
1459 With any other arg, set comment column to indentation of the previous comment | |
1460 and then align or create a comment on this line at that column." | |
1461 (interactive "P") | |
1462 (if (eq arg '-) | |
1463 (kill-comment nil) | |
1464 (if arg | |
1465 (progn | |
1466 (save-excursion | |
1467 (beginning-of-line) | |
1468 (re-search-backward comment-start-skip) | |
1469 (beginning-of-line) | |
1470 (re-search-forward comment-start-skip) | |
1471 (goto-char (match-beginning 0)) | |
1472 (setq comment-column (current-column)) | |
1473 (message "Comment column set to %d" comment-column)) | |
1474 (indent-for-comment)) | |
1475 (setq comment-column (current-column)) | |
1476 (message "Comment column set to %d" comment-column)))) | |
1477 | |
1478 (defun kill-comment (arg) | |
1479 "Kill the comment on this line, if any. | |
1480 With argument, kill comments on that many lines starting with this one." | |
1481 ;; this function loses in a lot of situations. it incorrectly recognises | |
1482 ;; comment delimiters sometimes (ergo, inside a string), doesn't work | |
1483 ;; with multi-line comments, can kill extra whitespace if comment wasn't | |
1484 ;; through end-of-line, et cetera. | |
1485 (interactive "P") | |
1486 (or comment-start-skip (error "No comment syntax defined")) | |
1487 (let ((count (prefix-numeric-value arg)) endc) | |
1488 (while (> count 0) | |
1489 (save-excursion | |
1490 (end-of-line) | |
1491 (setq endc (point)) | |
1492 (beginning-of-line) | |
1493 (and (string< "" comment-end) | |
1494 (setq endc | |
1495 (progn | |
1496 (re-search-forward (regexp-quote comment-end) endc 'move) | |
1497 (skip-chars-forward " \t") | |
1498 (point)))) | |
1499 (beginning-of-line) | |
1500 (if (re-search-forward comment-start-skip endc t) | |
1501 (progn | |
1502 (goto-char (match-beginning 0)) | |
1503 (skip-chars-backward " \t") | |
1504 (kill-region (point) endc) | |
1505 ;; to catch comments a line beginnings | |
1506 (indent-according-to-mode)))) | |
1507 (if arg (forward-line 1)) | |
1508 (setq count (1- count))))) | |
1509 | |
1510 (defun comment-region (beg end &optional arg) | |
1511 "Comment the region; third arg numeric means use ARG comment characters. | |
1512 If ARG is negative, delete that many comment characters instead. | |
1513 Comments are terminated on each line, even for syntax in which newline does | |
1514 not end the comment. Blank lines do not get comments." | |
1515 ;; if someone wants it to only put a comment-start at the beginning and | |
1516 ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x | |
1517 ;; is easy enough. No option is made here for other than commenting | |
1518 ;; every line. | |
1519 (interactive "r\np") | |
1520 (or comment-start (error "No comment syntax is defined")) | |
1521 (if (> beg end) (let (mid) (setq mid beg beg end end mid))) | |
1522 (save-excursion | |
1523 (save-restriction | |
1524 (let ((cs comment-start) (ce comment-end)) | |
1525 (cond ((not arg) (setq arg 1)) | |
1526 ((> arg 1) | |
1527 (while (> (setq arg (1- arg)) 0) | |
1528 (setq cs (concat cs comment-start) | |
1529 ce (concat ce comment-end))))) | |
1530 (narrow-to-region beg end) | |
1531 (goto-char beg) | |
1532 (while (not (eobp)) | |
1533 (if (< arg 0) | |
1534 (let ((count arg)) | |
1535 (while (and (> 1 (setq count (1+ count))) | |
1536 (looking-at (regexp-quote cs))) | |
1537 (delete-char (length cs))) | |
1538 (if (string= "" ce) () | |
1539 (setq count arg) | |
1540 (while (> 1 (setq count (1+ count))) | |
1541 (end-of-line) | |
1542 ;; this is questionable if comment-end ends in whitespace | |
1543 ;; that is pretty brain-damaged though | |
1544 (skip-chars-backward " \t") | |
1545 (backward-char (length ce)) | |
1546 (if (looking-at (regexp-quote ce)) | |
1547 (delete-char (length ce)))))) | |
1548 (if (looking-at "[ \t]*$") () | |
1549 (insert cs) | |
1550 (if (string= "" ce) () | |
1551 (end-of-line) | |
1552 (insert ce))) | |
1553 (search-forward "\n" nil 'move))))))) | |
1554 | |
1555 (defun backward-word (arg) | |
1556 "Move backward until encountering the end of a word. | |
1557 With argument, do this that many times. | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1558 In programs, it is faster to call `forward-word' with negative arg." |
475 | 1559 (interactive "p") |
1560 (forward-word (- arg))) | |
1561 | |
1562 (defun mark-word (arg) | |
1563 "Set mark arg words away from point." | |
1564 (interactive "p") | |
1565 (push-mark | |
1566 (save-excursion | |
1567 (forward-word arg) | |
1568 (point)))) | |
1569 | |
1570 (defun kill-word (arg) | |
1571 "Kill characters forward until encountering the end of a word. | |
1572 With argument, do this that many times." | |
1573 (interactive "p") | |
1276
6b63876aea1c
(kill-word): Don't change point before calling kill-region.
Richard M. Stallman <rms@gnu.org>
parents:
1145
diff
changeset
|
1574 (kill-region (point) (save-excursion (forward-word arg) (point)))) |
475 | 1575 |
1576 (defun backward-kill-word (arg) | |
1577 "Kill characters backward until encountering the end of a word. | |
1578 With argument, do this that many times." | |
1579 (interactive "p") | |
1580 (kill-word (- arg))) | |
1581 | |
1582 (defconst fill-prefix nil | |
1583 "*String for filling to insert at front of new line, or nil for none. | |
1584 Setting this variable automatically makes it local to the current buffer.") | |
1585 (make-variable-buffer-local 'fill-prefix) | |
1586 | |
1587 (defconst auto-fill-inhibit-regexp nil | |
1588 "*Regexp to match lines which should not be auto-filled.") | |
1589 | |
1590 (defun do-auto-fill () | |
1591 (let (give-up) | |
1592 (or (and auto-fill-inhibit-regexp | |
1593 (save-excursion (beginning-of-line) | |
1594 (looking-at auto-fill-inhibit-regexp))) | |
1595 (while (and (not give-up) (> (current-column) fill-column)) | |
1596 (let ((fill-point | |
1597 (let ((opoint (point))) | |
1598 (save-excursion | |
1599 (move-to-column (1+ fill-column)) | |
1600 (skip-chars-backward "^ \t\n") | |
1601 (if (bolp) | |
1602 (re-search-forward "[ \t]" opoint t)) | |
1603 (skip-chars-backward " \t") | |
1604 (point))))) | |
1605 ;; If there is a space on the line before fill-point, | |
1606 ;; and nonspaces precede it, break the line there. | |
1607 (if (save-excursion | |
1608 (goto-char fill-point) | |
1609 (not (bolp))) | |
1610 ;; If point is at the fill-point, do not `save-excursion'. | |
1611 ;; Otherwise, if a comment prefix or fill-prefix is inserted, | |
1612 ;; point will end up before it rather than after it. | |
1613 (if (save-excursion | |
1614 (skip-chars-backward " \t") | |
1615 (= (point) fill-point)) | |
1616 (indent-new-comment-line) | |
1617 (save-excursion | |
1618 (goto-char fill-point) | |
1619 (indent-new-comment-line))) | |
1620 ;; No place to break => stop trying. | |
1621 (setq give-up t))))))) | |
1622 | |
1623 (defconst comment-multi-line nil | |
1624 "*Non-nil means \\[indent-new-comment-line] should continue same comment | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1625 on new line, with no new terminator or starter. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1626 This is obsolete because you might as well use \\[newline-and-indent].") |
475 | 1627 |
1628 (defun indent-new-comment-line () | |
1629 "Break line at point and indent, continuing comment if presently within one. | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1630 The body of the continued comment is indented under the previous comment line. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1631 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1632 This command is intended for styles where you write a comment per line, |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1633 starting a new comment (and terminating it if necessary) on each line. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1634 If you want to continue one comment across several lines, use \\[newline-and-indent]." |
475 | 1635 (interactive "*") |
1636 (let (comcol comstart) | |
1637 (skip-chars-backward " \t") | |
1638 (delete-region (point) | |
1639 (progn (skip-chars-forward " \t") | |
1640 (point))) | |
1641 (insert ?\n) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1642 (if (not comment-multi-line) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1643 (save-excursion |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1644 (if (and comment-start-skip |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1645 (let ((opoint (point))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1646 (forward-line -1) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1647 (re-search-forward comment-start-skip opoint t))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1648 ;; The old line is a comment. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1649 ;; Set WIN to the pos of the comment-start. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1650 ;; But if the comment is empty, look at preceding lines |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1651 ;; to find one that has a nonempty comment. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1652 (let ((win (match-beginning 0))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1653 (while (and (eolp) (not (bobp)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1654 (let (opoint) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1655 (beginning-of-line) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1656 (setq opoint (point)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1657 (forward-line -1) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1658 (re-search-forward comment-start-skip opoint t))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1659 (setq win (match-beginning 0))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1660 ;; Indent this line like what we found. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1661 (goto-char win) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1662 (setq comcol (current-column)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1663 (setq comstart (buffer-substring (point) (match-end 0))))))) |
475 | 1664 (if comcol |
1665 (let ((comment-column comcol) | |
1666 (comment-start comstart) | |
1667 (comment-end comment-end)) | |
1668 (and comment-end (not (equal comment-end "")) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1669 ; (if (not comment-multi-line) |
475 | 1670 (progn |
1671 (forward-char -1) | |
1672 (insert comment-end) | |
1673 (forward-char 1)) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1674 ; (setq comment-column (+ comment-column (length comment-start)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1675 ; comment-start "") |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1676 ; ) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1677 ) |
475 | 1678 (if (not (eolp)) |
1679 (setq comment-end "")) | |
1680 (insert ?\n) | |
1681 (forward-char -1) | |
1682 (indent-for-comment) | |
1683 (save-excursion | |
1684 ;; Make sure we delete the newline inserted above. | |
1685 (end-of-line) | |
1686 (delete-char 1))) | |
1687 (if fill-prefix | |
1688 (insert fill-prefix) | |
1689 (indent-according-to-mode))))) | |
1690 | |
1691 (defun auto-fill-mode (&optional arg) | |
1692 "Toggle auto-fill mode. | |
1693 With arg, turn auto-fill mode on if and only if arg is positive. | |
1694 In auto-fill mode, inserting a space at a column beyond fill-column | |
1695 automatically breaks the line at a previous space." | |
1696 (interactive "P") | |
1697 (prog1 (setq auto-fill-function | |
1698 (if (if (null arg) | |
1699 (not auto-fill-function) | |
1700 (> (prefix-numeric-value arg) 0)) | |
1701 'do-auto-fill | |
1702 nil)) | |
1703 ;; update mode-line | |
1704 (set-buffer-modified-p (buffer-modified-p)))) | |
1705 | |
1706 (defun turn-on-auto-fill () | |
1707 "Unconditionally turn on Auto Fill mode." | |
1708 (auto-fill-mode 1)) | |
1709 | |
1710 (defun set-fill-column (arg) | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1711 "Set `fill-column' to current column, or to argument if given. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1712 The variable `fill-column' has a separate value for each buffer." |
475 | 1713 (interactive "P") |
1714 (setq fill-column (if (integerp arg) arg (current-column))) | |
1715 (message "fill-column set to %d" fill-column)) | |
1716 | |
1717 (defun set-selective-display (arg) | |
1027
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1718 "Set `selective-display' to ARG; clear it if no arg. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1719 When the value of `selective-display' is a number > 0, |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1720 lines whose indentation is >= that value are not displayed. |
f0000f6f7942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
954
diff
changeset
|
1721 The variable `selective-display' has a separate value for each buffer." |
475 | 1722 (interactive "P") |
1723 (if (eq selective-display t) | |
1724 (error "selective-display already in use for marked lines")) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1725 (let ((current-vpos |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1726 (save-restriction |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1727 (narrow-to-region (point-min) (point)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1728 (goto-char (window-start)) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1729 (vertical-motion (window-height))))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1730 (setq selective-display |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1731 (and arg (prefix-numeric-value arg))) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1732 (recenter current-vpos)) |
475 | 1733 (set-window-start (selected-window) (window-start (selected-window))) |
1734 (princ "selective-display set to " t) | |
1735 (prin1 selective-display t) | |
1736 (princ "." t)) | |
1737 | |
1738 (defun overwrite-mode (arg) | |
1739 "Toggle overwrite mode. | |
1740 With arg, turn overwrite mode on iff arg is positive. | |
1741 In overwrite mode, printing characters typed in replace existing text | |
1742 on a one-for-one basis, rather than pushing it to the right." | |
1743 (interactive "P") | |
1744 (setq overwrite-mode | |
1745 (if (null arg) (not overwrite-mode) | |
1746 (> (prefix-numeric-value arg) 0))) | |
1747 (set-buffer-modified-p (buffer-modified-p))) ;No-op, but updates mode line. | |
1748 | |
1749 (defvar blink-matching-paren t | |
1750 "*Non-nil means show matching open-paren when close-paren is inserted.") | |
1751 | |
1752 (defconst blink-matching-paren-distance 4000 | |
1753 "*If non-nil, is maximum distance to search for matching open-paren | |
1754 when close-paren is inserted.") | |
1755 | |
1756 (defun blink-matching-open () | |
1757 "Move cursor momentarily to the beginning of the sexp before point." | |
1758 (interactive) | |
1759 (and (> (point) (1+ (point-min))) | |
1760 (/= (char-syntax (char-after (- (point) 2))) ?\\ ) | |
1761 blink-matching-paren | |
1762 (let* ((oldpos (point)) | |
1763 (blinkpos) | |
1764 (mismatch)) | |
1765 (save-excursion | |
1766 (save-restriction | |
1767 (if blink-matching-paren-distance | |
1768 (narrow-to-region (max (point-min) | |
1769 (- (point) blink-matching-paren-distance)) | |
1770 oldpos)) | |
1771 (condition-case () | |
1772 (setq blinkpos (scan-sexps oldpos -1)) | |
1773 (error nil))) | |
1774 (and blinkpos (/= (char-syntax (char-after blinkpos)) | |
1775 ?\$) | |
1776 (setq mismatch | |
1777 (/= (char-after (1- oldpos)) | |
1778 (logand (lsh (aref (syntax-table) | |
1779 (char-after blinkpos)) | |
1780 -8) | |
1781 255)))) | |
1782 (if mismatch (setq blinkpos nil)) | |
1783 (if blinkpos | |
1784 (progn | |
1785 (goto-char blinkpos) | |
1786 (if (pos-visible-in-window-p) | |
1787 (sit-for 1) | |
1788 (goto-char blinkpos) | |
1789 (message | |
1790 "Matches %s" | |
1791 (if (save-excursion | |
1792 (skip-chars-backward " \t") | |
1793 (not (bolp))) | |
1794 (buffer-substring (progn (beginning-of-line) (point)) | |
1795 (1+ blinkpos)) | |
1796 (buffer-substring blinkpos | |
1797 (progn | |
1798 (forward-char 1) | |
1799 (skip-chars-forward "\n \t") | |
1800 (end-of-line) | |
1801 (point))))))) | |
1802 (cond (mismatch | |
1803 (message "Mismatched parentheses")) | |
1804 ((not blink-matching-paren-distance) | |
1805 (message "Unmatched parenthesis")))))))) | |
1806 | |
1807 ;Turned off because it makes dbx bomb out. | |
1808 (setq blink-paren-function 'blink-matching-open) | |
1809 | |
1810 ; this is just something for the luser to see in a keymap -- this is not | |
1811 ; how quitting works normally! | |
1812 (defun keyboard-quit () | |
1813 "Signal a quit condition." | |
1814 (interactive) | |
1815 (signal 'quit nil)) | |
1816 | |
1817 (define-key global-map "\C-g" 'keyboard-quit) | |
1818 | |
1819 (defun set-variable (var val) | |
1820 "Set VARIABLE to VALUE. VALUE is a Lisp object. | |
1821 When using this interactively, supply a Lisp expression for VALUE. | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1822 If you want VALUE to be a string, you must surround it with doublequotes. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1823 |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1824 If VARIABLE has a `variable-interactive' property, that is used as if |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1825 it were the arg to `interactive' (which see) to interactively read the value." |
475 | 1826 (interactive |
1827 (let* ((var (read-variable "Set variable: ")) | |
1828 (minibuffer-help-form | |
1829 '(funcall myhelp)) | |
1830 (myhelp | |
1831 (function | |
1832 (lambda () | |
1833 (with-output-to-temp-buffer "*Help*" | |
1834 (prin1 var) | |
1835 (princ "\nDocumentation:\n") | |
1836 (princ (substring (documentation-property var 'variable-documentation) | |
1837 1)) | |
1838 (if (boundp var) | |
1839 (let ((print-length 20)) | |
1840 (princ "\n\nCurrent value: ") | |
1841 (prin1 (symbol-value var)))) | |
1842 nil))))) | |
1843 (list var | |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1844 (let ((prop (get var 'variable-interactive))) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1845 (if prop |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1846 ;; Use VAR's `variable-interactive' property |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1847 ;; as an interactive spec for prompting. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1848 (call-interactively (list 'lambda '(arg) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1849 (list 'interactive prop) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1850 'arg)) |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
762
diff
changeset
|
1851 (eval-minibuffer (format "Set %s to value: " var))))))) |
475 | 1852 (set var val)) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1853 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1854 ;;; simple.el ends here |