Fix c-invalidate-state-cache on narrowed buffers.
[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
7bcbca40
GM
204;; It has had the optional arg for ages, but never used it.
205(set-advertised-calling-convention 'window-configuration-to-register
206 '(register) "24.4")
207
06b60517 208(defun frame-configuration-to-register (register &optional _arg)
83b5d757
RS
209 "Store the window configuration of all frames in register REGISTER.
210Use \\[jump-to-register] to restore the configuration.
4472a196
GM
211Argument is a character, naming the register.
212
213Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
214 (interactive (list (register-read-with-preview
215 "Frame configuration to register: ")
216 current-prefix-arg))
b4a91f43
KH
217 ;; current-frame-configuration does not include the value
218 ;; of point in the current buffer, so record that separately.
070c2506 219 (set-register register (list (current-frame-configuration) (point-marker))))
83b5d757 220
7bcbca40
GM
221;; It has had the optional arg for ages, but never used it.
222(set-advertised-calling-convention 'frame-configuration-to-register
223 '(register) "24.4")
224
31e1d920 225(defalias 'register-to-point 'jump-to-register)
1b8cac5d 226(defun jump-to-register (register &optional delete)
efeae993 227 "Move point to location stored in a register.
22073dda 228If the register contains a file name, find that file.
1a86cc81 229\(To put a file name in a register, you must use `set-register'.)
2805a651
JB
230If the register contains a window configuration (one frame) or a frameset
231\(all frames), restore that frame or all frames accordingly.
e7683fff 232First argument is a character, naming the register.
1542ad37 233Optional second arg non-nil (interactively, prefix argument) says to
2805a651 234delete any existing frames that the frameset doesn't mention.
4472a196
GM
235\(Otherwise, these frames are iconified.)
236
237Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
238 (interactive (list (register-read-with-preview "Jump to register: ")
239 current-prefix-arg))
1b8cac5d 240 (let ((val (get-register register)))
376a7584 241 (cond
6302e0d3 242 ((registerv-p val)
f58e0fd5 243 (cl-assert (registerv-jump-func val) nil
6302e0d3
LL
244 "Don't know how to jump to register %s"
245 (single-key-description register))
246 (funcall (registerv-jump-func val) (registerv-data val)))
b4a91f43
KH
247 ((and (consp val) (frame-configuration-p (car val)))
248 (set-frame-configuration (car val) (not delete))
249 (goto-char (cadr val)))
250 ((and (consp val) (window-configuration-p (car val)))
251 (set-window-configuration (car val))
252 (goto-char (cadr val)))
376a7584 253 ((markerp val)
8c4ca60c
KH
254 (or (marker-buffer val)
255 (error "That register's buffer no longer exists"))
376a7584
JB
256 (switch-to-buffer (marker-buffer val))
257 (goto-char val))
22073dda
RS
258 ((and (consp val) (eq (car val) 'file))
259 (find-file (cdr val)))
28cbd14d
RS
260 ((and (consp val) (eq (car val) 'file-query))
261 (or (find-buffer-visiting (nth 1 val))
262 (y-or-n-p (format "Visit file %s again? " (nth 1 val)))
263 (error "Register access aborted"))
264 (find-file (nth 1 val))
265 (goto-char (nth 2 val)))
376a7584
JB
266 (t
267 (error "Register doesn't contain a buffer position or configuration")))))
efeae993 268
28cbd14d 269(defun register-swap-out ()
ddbb3cc7 270 "Turn markers into file-query references when a buffer is killed."
28cbd14d 271 (and buffer-file-name
ddbb3cc7
SM
272 (dolist (elem register-alist)
273 (and (markerp (cdr elem))
274 (eq (marker-buffer (cdr elem)) (current-buffer))
275 (setcdr elem
276 (list 'file-query
277 buffer-file-name
278 (marker-position (cdr elem))))))))
28cbd14d 279
0e07a458 280(defun number-to-register (number register)
070c2506
KH
281 "Store a number in a register.
282Two args, NUMBER and REGISTER (a character, naming the register).
4d2caa07
KH
283If NUMBER is nil, a decimal number is read from the buffer starting
284at point, and point moves to the end of that number.
4472a196
GM
285Interactively, NUMBER is the prefix arg (none means nil).
286
287Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
288 (interactive (list current-prefix-arg
289 (register-read-with-preview "Number to register: ")))
4f23d31c 290 (set-register register
0e07a458
KH
291 (if number
292 (prefix-numeric-value number)
4d2caa07
KH
293 (if (looking-at "\\s-*-?[0-9]+")
294 (progn
295 (goto-char (match-end 0))
fe22eed0 296 (string-to-number (match-string 0)))
070c2506
KH
297 0))))
298
0979429b
J
299(defun increment-register (prefix register)
300 "Augment contents of REGISTER.
301Interactively, PREFIX is in raw form.
302
303If REGISTER contains a number, add `prefix-numeric-value' of
304PREFIX to it.
305
306If REGISTER is empty or if it contains text, call
6a6b8e40
GM
307`append-to-register' with `delete-flag' set to PREFIX.
308
309Interactively, reads the register using `register-read-with-preview'."
310 (interactive (list current-prefix-arg
311 (register-read-with-preview "Increment register: ")))
0979429b
J
312 (let ((register-val (get-register register)))
313 (cond
314 ((numberp register-val)
315 (let ((number (prefix-numeric-value prefix)))
316 (set-register register (+ number register-val))))
317 ((or (not register-val) (stringp register-val))
318 (append-to-register register (region-beginning) (region-end) prefix))
319 (t (error "Register does not contain a number or text")))))
efeae993 320
1b8cac5d 321(defun view-register (register)
efeae993 322 "Display what is contained in register named REGISTER.
4472a196
GM
323The Lisp value REGISTER is a character.
324
325Interactively, reads the register using `register-read-with-preview'."
85698d63 326 (interactive (list (register-read-with-preview "View register: ")))
1b8cac5d 327 (let ((val (get-register register)))
efeae993 328 (if (null val)
1b8cac5d 329 (message "Register %s is empty" (single-key-description register))
efeae993 330 (with-output-to-temp-buffer "*Output*"
92840a31
RS
331 (describe-register-1 register t)))))
332
333(defun list-registers ()
334 "Display a list of nonempty registers saying briefly what they contain."
335 (interactive)
336 (let ((list (copy-sequence register-alist)))
337 (setq list (sort list (lambda (a b) (< (car a) (car b)))))
338 (with-output-to-temp-buffer "*Output*"
339 (dolist (elt list)
340 (when (get-register (car elt))
341 (describe-register-1 (car elt))
342 (terpri))))))
343
344(defun describe-register-1 (register &optional verbose)
345 (princ "Register ")
346 (princ (single-key-description register))
347 (princ " contains ")
6ed21409
RS
348 (let ((val (get-register register)))
349 (cond
6302e0d3
LL
350 ((registerv-p val)
351 (if (registerv-print-func val)
352 (funcall (registerv-print-func val) (registerv-data val))
353 (princ "[UNPRINTABLE CONTENTS].")))
354
6ed21409
RS
355 ((numberp val)
356 (princ val))
357
358 ((markerp val)
359 (let ((buf (marker-buffer val)))
360 (if (null buf)
361 (princ "a marker in no buffer")
362 (princ "a buffer position:\n buffer ")
363 (princ (buffer-name buf))
364 (princ ", position ")
365 (princ (marker-position val)))))
366
367 ((and (consp val) (window-configuration-p (car val)))
368 (princ "a window configuration."))
369
370 ((and (consp val) (frame-configuration-p (car val)))
371 (princ "a frame configuration."))
372
373 ((and (consp val) (eq (car val) 'file))
374 (princ "the file ")
375 (prin1 (cdr val))
376 (princ "."))
377
378 ((and (consp val) (eq (car val) 'file-query))
379 (princ "a file-query reference:\n file ")
380 (prin1 (car (cdr val)))
381 (princ ",\n position ")
382 (princ (car (cdr (cdr val))))
383 (princ "."))
384
385 ((consp val)
386 (if verbose
387 (progn
388 (princ "the rectangle:\n")
389 (while val
390 (princ " ")
391 (princ (car val))
392 (terpri)
393 (setq val (cdr val))))
394 (princ "a rectangle starting with ")
395 (princ (car val))))
396
397 ((stringp val)
00a2b823 398 (setq val (copy-sequence val))
9c7cc04b
RS
399 (if (eq yank-excluded-properties t)
400 (set-text-properties 0 (length val) nil val)
401 (remove-list-of-text-properties 0 (length val)
402 yank-excluded-properties val))
6ed21409
RS
403 (if verbose
404 (progn
405 (princ "the text:\n")
406 (princ val))
f1180544 407 (cond
13d6f302
RS
408 ;; Extract first N characters starting with first non-whitespace.
409 ((string-match (format "[^ \t\n].\\{,%d\\}"
410 ;; Deduct 6 for the spaces inserted below.
411 (min 20 (max 0 (- (window-width) 6))))
412 val)
413 (princ "text starting with\n ")
414 (princ (match-string 0 val)))
415 ((string-match "^[ \t\n]+$" val)
416 (princ "whitespace"))
417 (t
418 (princ "the empty string")))))
6ed21409
RS
419 (t
420 (princ "Garbage:\n")
421 (if verbose (prin1 val))))))
efeae993 422
1b8cac5d
RS
423(defun insert-register (register &optional arg)
424 "Insert contents of register REGISTER. (REGISTER is a character.)
efeae993
RS
425Normally puts point before and mark after the inserted text.
426If optional second arg is non-nil, puts mark before and point after.
4472a196
GM
427Interactively, second arg is non-nil if prefix arg is supplied.
428
429Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
430 (interactive (progn
431 (barf-if-buffer-read-only)
5ea75d23
BG
432 (list (register-read-with-preview "Insert register: ")
433 current-prefix-arg)))
efeae993 434 (push-mark)
1b8cac5d 435 (let ((val (get-register register)))
cbd4993c 436 (cond
6302e0d3 437 ((registerv-p val)
f58e0fd5 438 (cl-assert (registerv-insert-func val) nil
6302e0d3
LL
439 "Don't know how to insert register %s"
440 (single-key-description register))
441 (funcall (registerv-insert-func val) (registerv-data val)))
2d43b8c9
LL
442 ((consp val)
443 (insert-rectangle val))
cbd4993c 444 ((stringp val)
e7c765c3 445 (insert-for-yank val))
070c2506 446 ((numberp val)
cbd4993c
KH
447 (princ val (current-buffer)))
448 ((and (markerp val) (marker-position val))
449 (princ (marker-position val) (current-buffer)))
450 (t
451 (error "Register does not contain text"))))
efeae993
RS
452 (if (not arg) (exchange-point-and-mark)))
453
00a2b823 454(defun copy-to-register (register start end &optional delete-flag region)
1a86cc81
JB
455 "Copy region into register REGISTER.
456With prefix arg, delete as well.
1b8cac5d 457Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
00a2b823
SM
458START and END are buffer positions indicating what to copy.
459The optional argument REGION if non-nil, indicates that we're not just copying
4472a196
GM
460some text between START and END, but we're copying the region.
461
462Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
463 (interactive (list (register-read-with-preview "Copy to register: ")
464 (region-beginning)
465 (region-end)
00a2b823
SM
466 current-prefix-arg
467 t))
468 (set-register register (if region
469 (funcall region-extract-function delete-flag)
470 (prog1 (filter-buffer-substring start end)
471 (if delete-flag (delete-region start end)))))
2549c068 472 (setq deactivate-mark t)
00a2b823 473 (cond (delete-flag)
2549c068
CY
474 ((called-interactively-p 'interactive)
475 (indicate-copied-region))))
efeae993 476
1b8cac5d
RS
477(defun append-to-register (register start end &optional delete-flag)
478 "Append region to text in register REGISTER.
479With prefix arg, delete as well.
480Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
481START and END are buffer positions indicating what to append.
482
483Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
484 (interactive (list (register-read-with-preview "Append to register: ")
485 (region-beginning)
486 (region-end)
487 current-prefix-arg))
c81f72ce 488 (let ((reg (get-register register))
0979429b 489 (text (filter-buffer-substring start end))
bfabf70a 490 (separator (and register-separator (get-register register-separator))))
c81f72ce
TTN
491 (set-register
492 register (cond ((not reg) text)
0979429b 493 ((stringp reg) (concat reg separator text))
c81f72ce 494 (t (error "Register does not contain text")))))
5694896d 495 (setq deactivate-mark t)
2549c068
CY
496 (cond (delete-flag
497 (delete-region start end))
498 ((called-interactively-p 'interactive)
499 (indicate-copied-region))))
efeae993 500
1b8cac5d
RS
501(defun prepend-to-register (register start end &optional delete-flag)
502 "Prepend region to text in register REGISTER.
503With prefix arg, delete as well.
504Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
505START and END are buffer positions indicating what to prepend.
506
507Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
508 (interactive (list (register-read-with-preview "Prepend to register: ")
509 (region-beginning)
510 (region-end)
511 current-prefix-arg))
c81f72ce 512 (let ((reg (get-register register))
0979429b 513 (text (filter-buffer-substring start end))
bfabf70a 514 (separator (and register-separator (get-register register-separator))))
c81f72ce
TTN
515 (set-register
516 register (cond ((not reg) text)
0979429b 517 ((stringp reg) (concat text separator reg))
c81f72ce 518 (t (error "Register does not contain text")))))
5694896d 519 (setq deactivate-mark t)
2549c068
CY
520 (cond (delete-flag
521 (delete-region start end))
522 ((called-interactively-p 'interactive)
523 (indicate-copied-region))))
efeae993 524
1b8cac5d
RS
525(defun copy-rectangle-to-register (register start end &optional delete-flag)
526 "Copy rectangular region into register REGISTER.
1a86cc81
JB
527With prefix arg, delete as well.
528To insert this register in the buffer, use \\[insert-register].
5ef5d6ce
RS
529
530Called from a program, takes four args: REGISTER, START, END and DELETE-FLAG.
4472a196
GM
531START and END are buffer positions giving two corners of rectangle.
532
533Interactively, reads the register using `register-read-with-preview'."
85698d63
LL
534 (interactive (list (register-read-with-preview
535 "Copy rectangle to register: ")
536 (region-beginning)
537 (region-end)
538 current-prefix-arg))
2549c068
CY
539 (let ((rectangle (if delete-flag
540 (delete-extract-rectangle start end)
541 (extract-rectangle start end))))
542 (set-register register rectangle)
543 (when (and (null delete-flag)
544 (called-interactively-p 'interactive))
545 (setq deactivate-mark t)
546 (indicate-copied-region (length (car rectangle))))))
547
0f214cdf 548(provide 'register)
c88ab9ce 549;;; register.el ends here