Revert earlier desktop-auto-save doc changes
[bpt/emacs.git] / lisp / register.el
CommitLineData
85698d63 1;;; register.el --- register commands for Emacs -*- lexical-binding: t; -*-
c88ab9ce 2
ba318903
PE
3;; Copyright (C) 1985, 1993-1994, 2001-2014 Free Software Foundation,
4;; Inc.
9750e079 5
4821e2af 6;; Maintainer: FSF
d7b4d18f 7;; Keywords: internal
bd78fa1d 8;; Package: emacs
4821e2af 9
efeae993
RS
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
efeae993 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
efeae993
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
efeae993 24
d9ecc911
ER
25;;; Commentary:
26
27;; This package of functions emulates and somewhat extends the venerable
28;; TECO's `register' feature, which permits you to save various useful
29;; pieces of buffer state to named variables. The entry points are
30;; documented in the Emacs user's manual.
31
f58e0fd5 32(eval-when-compile (require 'cl-lib))
6302e0d3 33
4821e2af 34;;; Code:
efeae993 35
f58e0fd5 36(cl-defstruct
6302e0d3
LL
37 (registerv (:constructor nil)
38 (:constructor registerv--make (&optional data print-func
39 jump-func insert-func))
40 (:copier nil)
41 (:type vector)
42 :named)
43 (data nil :read-only t)
44 (print-func nil :read-only t)
45 (jump-func nil :read-only t)
46 (insert-func nil :read-only t))
47
f58e0fd5 48(cl-defun registerv-make (data &key print-func jump-func insert-func)
6302e0d3
LL
49 "Create a register value object.
50
51DATA can be any value.
52PRINT-FUNC if provided controls how `list-registers' and
53`view-register' print the register. It should be a function
9173deec 54receiving one argument DATA and print text that completes
6302e0d3
LL
55this sentence:
56 Register X contains [TEXT PRINTED BY PRINT-FUNC]
57JUMP-FUNC if provided, controls how `jump-to-register' jumps to the register.
58INSERT-FUNC if provided, controls how `insert-register' insert the register.
59They both receive DATA as argument."
60 (registerv--make data print-func jump-func insert-func))
61
efeae993
RS
62(defvar register-alist nil
63 "Alist of elements (NAME . CONTENTS), one for each Emacs register.
6302e0d3
LL
64NAME is a character (a number). CONTENTS is a string, number, marker, list
65or a struct returned by `registerv-make'.
22073dda 66A list of strings represents a rectangle.
5858bcc4
CY
67A list of the form (file . FILE-NAME) represents the file named FILE-NAME.
68A list of the form (file-query FILE-NAME POSITION) represents
69 position POSITION in the file named FILE-NAME, but query before
70 visiting it.
070c2506
KH
71A list of the form (WINDOW-CONFIGURATION POSITION)
72 represents a saved window configuration plus a saved value of point.
73A list of the form (FRAME-CONFIGURATION POSITION)
77187e6f 74 represents a saved frame configuration plus a saved value of point.")
efeae993 75
0979429b
J
76(defgroup register nil
77 "Register commands."
78 :group 'convenience
bfabf70a 79 :version "24.3")
0979429b 80
bfabf70a
AS
81(defcustom register-separator nil
82 "Register containing the text to put between collected texts, or nil if none.
0979429b
J
83
84When collecting text with
85`append-to-register' (resp. `prepend-to-register') contents of
86this register is added to the beginning (resp. end) of the marked
87text."
88 :group 'register
89 :type '(choice (const :tag "None" nil)
90 (character :tag "Use register" :value ?+)))
91
85698d63 92(defcustom register-preview-delay 1
da942af1
GM
93 "If non-nil, time to wait in seconds before popping up a preview window.
94If nil, do not show register previews, unless `help-char' (or a member of
95`help-event-list') is pressed."
bb098075 96 :version "24.4"
da942af1 97 :type '(choice number (const :tag "No preview unless requested" nil))
85698d63
LL
98 :group 'register)
99
1a86cc81
JB
100(defun get-register (register)
101 "Return contents of Emacs register named REGISTER, or nil if none."
102 (cdr (assq register register-alist)))
efeae993 103
1b8cac5d
RS
104(defun set-register (register value)
105 "Set contents of Emacs register named REGISTER to VALUE. Returns VALUE.
1a86cc81 106See the documentation of the variable `register-alist' for possible VALUEs."
1b8cac5d 107 (let ((aelt (assq register register-alist)))
efeae993
RS
108 (if aelt
109 (setcdr aelt value)
ddbb3cc7 110 (push (cons register value) register-alist))
efeae993
RS
111 value))
112
85698d63
LL
113(defun register-describe-oneline (c)
114 "One-line description of register C."
115 (let ((d (replace-regexp-in-string
116 "\n[ \t]*" " "
117 (with-output-to-string (describe-register-1 c)))))
118 (if (string-match "Register.+? contains \\(?:an? \\|the \\)?" d)
119 (substring d (match-end 0))
120 d)))
121
7c324762
GM
122(defun register-preview-default (r)
123 "Default function for the variable `register-preview-function'."
124 (format "%s %s\n"
125 (concat (single-key-description (car r)) ":")
126 (register-describe-oneline (car r))))
127
128(defvar register-preview-function #'register-preview-default
129 "Function to format a register for previewing.
130Takes one argument, a cons (NAME . CONTENTS) as found in `register-alist'.
131Returns a string.")
85698d63
LL
132
133(defun register-preview (buffer &optional show-empty)
134 "Pop up a window to show register preview in BUFFER.
7c324762
GM
135If SHOW-EMPTY is non-nil show the window even if no registers.
136Format of each entry is controlled by the variable `register-preview-function'."
85698d63 137 (when (or show-empty (consp register-alist))
cf2b7efc
MR
138 (with-temp-buffer-window
139 buffer
140 (cons 'display-buffer-below-selected
141 '((window-height . fit-window-to-buffer)))
142 nil
143 (with-current-buffer standard-output
144 (setq cursor-in-non-selected-windows nil)
7c324762 145 (insert (mapconcat register-preview-function register-alist ""))))))
85698d63
LL
146
147(defun register-read-with-preview (prompt)
4472a196
GM
148 "Read and return a register name, possibly showing existing registers.
149Prompt with the string PROMPT. If `register-alist' and
150`register-preview-delay' are both non-nil, display a window
151listing existing registers after `register-preview-delay' seconds.
152If `help-char' (or a member of `help-event-list') is pressed,
153display such a window regardless."
85698d63
LL
154 (let* ((buffer "*Register Preview*")
155 (timer (when (numberp register-preview-delay)
156 (run-with-timer register-preview-delay nil
157 (lambda ()
158 (unless (get-buffer-window buffer)
159 (register-preview buffer))))))
160 (help-chars (cl-loop for c in (cons help-char help-event-list)
161 when (not (get-register c))
162 collect c)))
163 (unwind-protect
164 (progn
165 (while (memq (read-event (propertize prompt 'face 'minibuffer-prompt))
166 help-chars)
167 (unless (get-buffer-window buffer)
168 (register-preview buffer 'show-empty)))
7c324762
GM
169 (if (characterp last-input-event) last-input-event
170 (error "Non-character input-event")))
85698d63
LL
171 (and (timerp timer) (cancel-timer timer))
172 (let ((w (get-buffer-window buffer)))
173 (and (window-live-p w) (delete-window w)))
174 (and (get-buffer buffer) (kill-buffer buffer)))))
175
1b8cac5d 176(defun point-to-register (register &optional arg)
b42e6156 177 "Store current location of point in register REGISTER.
0cc89026 178With prefix argument, store current frame configuration.
b42e6156 179Use \\[jump-to-register] to go to that location or restore that configuration.
4472a196
GM
180Argument is a character, naming the register.
181
182Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
183 (interactive (list (register-read-with-preview "Point to register: ")
184 current-prefix-arg))
ddbb3cc7
SM
185 ;; Turn the marker into a file-ref if the buffer is killed.
186 (add-hook 'kill-buffer-hook 'register-swap-out nil t)
1b8cac5d 187 (set-register register
070c2506
KH
188 (if arg (list (current-frame-configuration) (point-marker))
189 (point-marker))))
efeae993 190
06b60517 191(defun window-configuration-to-register (register &optional _arg)
83b5d757
RS
192 "Store the window configuration of the selected frame in register REGISTER.
193Use \\[jump-to-register] to restore the configuration.
4472a196
GM
194Argument is a character, naming the register.
195
196Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
197 (interactive (list (register-read-with-preview
198 "Window configuration to register: ")
199 current-prefix-arg))
b4a91f43
KH
200 ;; current-window-configuration does not include the value
201 ;; of point in the current buffer, so record that separately.
070c2506 202 (set-register register (list (current-window-configuration) (point-marker))))
83b5d757 203
06b60517 204(defun frame-configuration-to-register (register &optional _arg)
83b5d757
RS
205 "Store the window configuration of all frames in register REGISTER.
206Use \\[jump-to-register] to restore the configuration.
4472a196
GM
207Argument is a character, naming the register.
208
209Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
210 (interactive (list (register-read-with-preview
211 "Frame configuration to register: ")
212 current-prefix-arg))
b4a91f43
KH
213 ;; current-frame-configuration does not include the value
214 ;; of point in the current buffer, so record that separately.
070c2506 215 (set-register register (list (current-frame-configuration) (point-marker))))
83b5d757 216
31e1d920 217(defalias 'register-to-point 'jump-to-register)
1b8cac5d 218(defun jump-to-register (register &optional delete)
efeae993 219 "Move point to location stored in a register.
22073dda 220If the register contains a file name, find that file.
1a86cc81 221\(To put a file name in a register, you must use `set-register'.)
2805a651
JB
222If the register contains a window configuration (one frame) or a frameset
223\(all frames), restore that frame or all frames accordingly.
e7683fff 224First argument is a character, naming the register.
1542ad37 225Optional second arg non-nil (interactively, prefix argument) says to
2805a651 226delete any existing frames that the frameset doesn't mention.
4472a196
GM
227\(Otherwise, these frames are iconified.)
228
229Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
230 (interactive (list (register-read-with-preview "Jump to register: ")
231 current-prefix-arg))
1b8cac5d 232 (let ((val (get-register register)))
376a7584 233 (cond
6302e0d3 234 ((registerv-p val)
f58e0fd5 235 (cl-assert (registerv-jump-func val) nil
6302e0d3
LL
236 "Don't know how to jump to register %s"
237 (single-key-description register))
238 (funcall (registerv-jump-func val) (registerv-data val)))
b4a91f43
KH
239 ((and (consp val) (frame-configuration-p (car val)))
240 (set-frame-configuration (car val) (not delete))
241 (goto-char (cadr val)))
242 ((and (consp val) (window-configuration-p (car val)))
243 (set-window-configuration (car val))
244 (goto-char (cadr val)))
376a7584 245 ((markerp val)
8c4ca60c
KH
246 (or (marker-buffer val)
247 (error "That register's buffer no longer exists"))
376a7584
JB
248 (switch-to-buffer (marker-buffer val))
249 (goto-char val))
22073dda
RS
250 ((and (consp val) (eq (car val) 'file))
251 (find-file (cdr val)))
28cbd14d
RS
252 ((and (consp val) (eq (car val) 'file-query))
253 (or (find-buffer-visiting (nth 1 val))
254 (y-or-n-p (format "Visit file %s again? " (nth 1 val)))
255 (error "Register access aborted"))
256 (find-file (nth 1 val))
257 (goto-char (nth 2 val)))
376a7584
JB
258 (t
259 (error "Register doesn't contain a buffer position or configuration")))))
efeae993 260
28cbd14d 261(defun register-swap-out ()
ddbb3cc7 262 "Turn markers into file-query references when a buffer is killed."
28cbd14d 263 (and buffer-file-name
ddbb3cc7
SM
264 (dolist (elem register-alist)
265 (and (markerp (cdr elem))
266 (eq (marker-buffer (cdr elem)) (current-buffer))
267 (setcdr elem
268 (list 'file-query
269 buffer-file-name
270 (marker-position (cdr elem))))))))
28cbd14d 271
0e07a458 272(defun number-to-register (number register)
070c2506
KH
273 "Store a number in a register.
274Two args, NUMBER and REGISTER (a character, naming the register).
4d2caa07
KH
275If NUMBER is nil, a decimal number is read from the buffer starting
276at point, and point moves to the end of that number.
4472a196
GM
277Interactively, NUMBER is the prefix arg (none means nil).
278
279Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
280 (interactive (list current-prefix-arg
281 (register-read-with-preview "Number to register: ")))
4f23d31c 282 (set-register register
0e07a458
KH
283 (if number
284 (prefix-numeric-value number)
4d2caa07
KH
285 (if (looking-at "\\s-*-?[0-9]+")
286 (progn
287 (goto-char (match-end 0))
fe22eed0 288 (string-to-number (match-string 0)))
070c2506
KH
289 0))))
290
0979429b
J
291(defun increment-register (prefix register)
292 "Augment contents of REGISTER.
293Interactively, PREFIX is in raw form.
294
295If REGISTER contains a number, add `prefix-numeric-value' of
296PREFIX to it.
297
298If REGISTER is empty or if it contains text, call
6a6b8e40
GM
299`append-to-register' with `delete-flag' set to PREFIX.
300
301Interactively, reads the register using `register-read-with-preview'."
302 (interactive (list current-prefix-arg
303 (register-read-with-preview "Increment register: ")))
0979429b
J
304 (let ((register-val (get-register register)))
305 (cond
306 ((numberp register-val)
307 (let ((number (prefix-numeric-value prefix)))
308 (set-register register (+ number register-val))))
309 ((or (not register-val) (stringp register-val))
310 (append-to-register register (region-beginning) (region-end) prefix))
311 (t (error "Register does not contain a number or text")))))
efeae993 312
1b8cac5d 313(defun view-register (register)
efeae993 314 "Display what is contained in register named REGISTER.
4472a196
GM
315The Lisp value REGISTER is a character.
316
317Interactively, reads the register using `register-read-with-preview'."
85698d63 318 (interactive (list (register-read-with-preview "View register: ")))
1b8cac5d 319 (let ((val (get-register register)))
efeae993 320 (if (null val)
1b8cac5d 321 (message "Register %s is empty" (single-key-description register))
efeae993 322 (with-output-to-temp-buffer "*Output*"
92840a31
RS
323 (describe-register-1 register t)))))
324
325(defun list-registers ()
326 "Display a list of nonempty registers saying briefly what they contain."
327 (interactive)
328 (let ((list (copy-sequence register-alist)))
329 (setq list (sort list (lambda (a b) (< (car a) (car b)))))
330 (with-output-to-temp-buffer "*Output*"
331 (dolist (elt list)
332 (when (get-register (car elt))
333 (describe-register-1 (car elt))
334 (terpri))))))
335
336(defun describe-register-1 (register &optional verbose)
337 (princ "Register ")
338 (princ (single-key-description register))
339 (princ " contains ")
6ed21409
RS
340 (let ((val (get-register register)))
341 (cond
6302e0d3
LL
342 ((registerv-p val)
343 (if (registerv-print-func val)
344 (funcall (registerv-print-func val) (registerv-data val))
345 (princ "[UNPRINTABLE CONTENTS].")))
346
6ed21409
RS
347 ((numberp val)
348 (princ val))
349
350 ((markerp val)
351 (let ((buf (marker-buffer val)))
352 (if (null buf)
353 (princ "a marker in no buffer")
354 (princ "a buffer position:\n buffer ")
355 (princ (buffer-name buf))
356 (princ ", position ")
357 (princ (marker-position val)))))
358
359 ((and (consp val) (window-configuration-p (car val)))
360 (princ "a window configuration."))
361
362 ((and (consp val) (frame-configuration-p (car val)))
363 (princ "a frame configuration."))
364
365 ((and (consp val) (eq (car val) 'file))
366 (princ "the file ")
367 (prin1 (cdr val))
368 (princ "."))
369
370 ((and (consp val) (eq (car val) 'file-query))
371 (princ "a file-query reference:\n file ")
372 (prin1 (car (cdr val)))
373 (princ ",\n position ")
374 (princ (car (cdr (cdr val))))
375 (princ "."))
376
377 ((consp val)
378 (if verbose
379 (progn
380 (princ "the rectangle:\n")
381 (while val
382 (princ " ")
383 (princ (car val))
384 (terpri)
385 (setq val (cdr val))))
386 (princ "a rectangle starting with ")
387 (princ (car val))))
388
389 ((stringp val)
00a2b823 390 (setq val (copy-sequence val))
9c7cc04b
RS
391 (if (eq yank-excluded-properties t)
392 (set-text-properties 0 (length val) nil val)
393 (remove-list-of-text-properties 0 (length val)
394 yank-excluded-properties val))
6ed21409
RS
395 (if verbose
396 (progn
397 (princ "the text:\n")
398 (princ val))
f1180544 399 (cond
13d6f302
RS
400 ;; Extract first N characters starting with first non-whitespace.
401 ((string-match (format "[^ \t\n].\\{,%d\\}"
402 ;; Deduct 6 for the spaces inserted below.
403 (min 20 (max 0 (- (window-width) 6))))
404 val)
405 (princ "text starting with\n ")
406 (princ (match-string 0 val)))
407 ((string-match "^[ \t\n]+$" val)
408 (princ "whitespace"))
409 (t
410 (princ "the empty string")))))
6ed21409
RS
411 (t
412 (princ "Garbage:\n")
413 (if verbose (prin1 val))))))
efeae993 414
1b8cac5d
RS
415(defun insert-register (register &optional arg)
416 "Insert contents of register REGISTER. (REGISTER is a character.)
efeae993
RS
417Normally puts point before and mark after the inserted text.
418If optional second arg is non-nil, puts mark before and point after.
4472a196
GM
419Interactively, second arg is non-nil if prefix arg is supplied.
420
421Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
422 (interactive (progn
423 (barf-if-buffer-read-only)
5ea75d23
BG
424 (list (register-read-with-preview "Insert register: ")
425 current-prefix-arg)))
efeae993 426 (push-mark)
1b8cac5d 427 (let ((val (get-register register)))
cbd4993c 428 (cond
6302e0d3 429 ((registerv-p val)
f58e0fd5 430 (cl-assert (registerv-insert-func val) nil
6302e0d3
LL
431 "Don't know how to insert register %s"
432 (single-key-description register))
433 (funcall (registerv-insert-func val) (registerv-data val)))
2d43b8c9
LL
434 ((consp val)
435 (insert-rectangle val))
cbd4993c 436 ((stringp val)
e7c765c3 437 (insert-for-yank val))
070c2506 438 ((numberp val)
cbd4993c
KH
439 (princ val (current-buffer)))
440 ((and (markerp val) (marker-position val))
441 (princ (marker-position val) (current-buffer)))
442 (t
443 (error "Register does not contain text"))))
efeae993
RS
444 (if (not arg) (exchange-point-and-mark)))
445
00a2b823 446(defun copy-to-register (register start end &optional delete-flag region)
1a86cc81
JB
447 "Copy region into register REGISTER.
448With prefix arg, delete as well.
1b8cac5d 449Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
00a2b823
SM
450START and END are buffer positions indicating what to copy.
451The optional argument REGION if non-nil, indicates that we're not just copying
4472a196
GM
452some text between START and END, but we're copying the region.
453
454Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
455 (interactive (list (register-read-with-preview "Copy to register: ")
456 (region-beginning)
457 (region-end)
00a2b823
SM
458 current-prefix-arg
459 t))
460 (set-register register (if region
461 (funcall region-extract-function delete-flag)
462 (prog1 (filter-buffer-substring start end)
463 (if delete-flag (delete-region start end)))))
2549c068 464 (setq deactivate-mark t)
00a2b823 465 (cond (delete-flag)
2549c068
CY
466 ((called-interactively-p 'interactive)
467 (indicate-copied-region))))
efeae993 468
1b8cac5d
RS
469(defun append-to-register (register start end &optional delete-flag)
470 "Append region to text in register REGISTER.
471With prefix arg, delete as well.
472Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
473START and END are buffer positions indicating what to append.
474
475Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
476 (interactive (list (register-read-with-preview "Append to register: ")
477 (region-beginning)
478 (region-end)
479 current-prefix-arg))
c81f72ce 480 (let ((reg (get-register register))
0979429b 481 (text (filter-buffer-substring start end))
bfabf70a 482 (separator (and register-separator (get-register register-separator))))
c81f72ce
TTN
483 (set-register
484 register (cond ((not reg) text)
0979429b 485 ((stringp reg) (concat reg separator text))
c81f72ce 486 (t (error "Register does not contain text")))))
5694896d 487 (setq deactivate-mark t)
2549c068
CY
488 (cond (delete-flag
489 (delete-region start end))
490 ((called-interactively-p 'interactive)
491 (indicate-copied-region))))
efeae993 492
1b8cac5d
RS
493(defun prepend-to-register (register start end &optional delete-flag)
494 "Prepend region to text in register REGISTER.
495With prefix arg, delete as well.
496Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
497START and END are buffer positions indicating what to prepend.
498
499Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
500 (interactive (list (register-read-with-preview "Prepend to register: ")
501 (region-beginning)
502 (region-end)
503 current-prefix-arg))
c81f72ce 504 (let ((reg (get-register register))
0979429b 505 (text (filter-buffer-substring start end))
bfabf70a 506 (separator (and register-separator (get-register register-separator))))
c81f72ce
TTN
507 (set-register
508 register (cond ((not reg) text)
0979429b 509 ((stringp reg) (concat text separator reg))
c81f72ce 510 (t (error "Register does not contain text")))))
5694896d 511 (setq deactivate-mark t)
2549c068
CY
512 (cond (delete-flag
513 (delete-region start end))
514 ((called-interactively-p 'interactive)
515 (indicate-copied-region))))
efeae993 516
1b8cac5d
RS
517(defun copy-rectangle-to-register (register start end &optional delete-flag)
518 "Copy rectangular region into register REGISTER.
1a86cc81
JB
519With prefix arg, delete as well.
520To insert this register in the buffer, use \\[insert-register].
5ef5d6ce
RS
521
522Called from a program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
523START and END are buffer positions giving two corners of rectangle.
524
525Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
526 (interactive (list (register-read-with-preview
527 "Copy rectangle to register: ")
528 (region-beginning)
529 (region-end)
530 current-prefix-arg))
2549c068
CY
531 (let ((rectangle (if delete-flag
532 (delete-extract-rectangle start end)
533 (extract-rectangle start end))))
534 (set-register register rectangle)
535 (when (and (null delete-flag)
536 (called-interactively-p 'interactive))
537 (setq deactivate-mark t)
538 (indicate-copied-region (length (car rectangle))))))
539
0f214cdf 540(provide 'register)
c88ab9ce 541;;; register.el ends here