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