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