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