(skip_chars): Fix test for end of string, looking for `-'.
[bpt/emacs.git] / lisp / register.el
... / ...
CommitLineData
1;;; register.el --- register commands for Emacs.
2
3;; Copyright (C) 1985, 1993, 1994 Free Software Foundation, Inc.
4
5;; Maintainer: FSF
6;; Keywords: internal
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
24
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
32;;; Code:
33
34(defvar register-alist nil
35 "Alist of elements (NAME . CONTENTS), one for each Emacs register.
36NAME is a character (a number). CONTENTS is a string, number, marker or list.
37A list of strings represents a rectangle.
38A list of the form (file . NAME) represents the file named NAME.
39A list of the form (file-query NAME POSITION) represents position POSITION
40 in the file named NAME, but query before visiting it.
41A list of the form (WINDOW-CONFIGURATION POSITION)
42 represents a saved window configuration plus a saved value of point.
43A list of the form (FRAME-CONFIGURATION POSITION)
44 represents a saved frame configuration plus a saved value of point.")
45
46(defun get-register (reg)
47 "Return contents of Emacs register named REG, or nil if none."
48 (cdr (assq reg register-alist)))
49
50(defun set-register (register value)
51 "Set contents of Emacs register named REGISTER to VALUE. Returns VALUE.
52See the documentation of the variable `register-alist' for possible VALUE."
53 (let ((aelt (assq register register-alist)))
54 (if aelt
55 (setcdr aelt value)
56 (setq aelt (cons register value))
57 (setq register-alist (cons aelt register-alist)))
58 value))
59
60(defun point-to-register (register &optional arg)
61 "Store current location of point in register REGISTER.
62With prefix argument, store current frame configuration.
63Use \\[jump-to-register] to go to that location or restore that configuration.
64Argument is a character, naming the register."
65 (interactive "cPoint to register: \nP")
66 (set-register register
67 (if arg (list (current-frame-configuration) (point-marker))
68 (point-marker))))
69
70(defun window-configuration-to-register (register &optional arg)
71 "Store the window configuration of the selected frame in register REGISTER.
72Use \\[jump-to-register] to restore the configuration.
73Argument is a character, naming the register."
74 (interactive "cWindow configuration to register: \nP")
75 ;; current-window-configuration does not include the value
76 ;; of point in the current buffer, so record that separately.
77 (set-register register (list (current-window-configuration) (point-marker))))
78
79(defun frame-configuration-to-register (register &optional arg)
80 "Store the window configuration of all frames in register REGISTER.
81Use \\[jump-to-register] to restore the configuration.
82Argument is a character, naming the register."
83 (interactive "cFrame configuration to register: \nP")
84 ;; current-frame-configuration does not include the value
85 ;; of point in the current buffer, so record that separately.
86 (set-register register (list (current-frame-configuration) (point-marker))))
87
88(defalias 'register-to-point 'jump-to-register)
89(defun jump-to-register (register &optional delete)
90 "Move point to location stored in a register.
91If the register contains a file name, find that file.
92 \(To put a file name in a register, you must use `set-register'.)
93If the register contains a window configuration (one frame) or a frame
94configuration (all frames), restore that frame or all frames accordingly.
95First argument is a character, naming the register.
96Optional second arg non-nil (interactively, prefix argument) says to
97delete any existing frames that the frame configuration doesn't mention.
98\(Otherwise, these frames are iconified.)"
99 (interactive "cJump to register: \nP")
100 (let ((val (get-register register)))
101 (cond
102 ((and (consp val) (frame-configuration-p (car val)))
103 (set-frame-configuration (car val) (not delete))
104 (goto-char (cadr val)))
105 ((and (consp val) (window-configuration-p (car val)))
106 (set-window-configuration (car val))
107 (goto-char (cadr val)))
108 ((markerp val)
109 (or (marker-buffer val)
110 (error "That register's buffer no longer exists"))
111 (switch-to-buffer (marker-buffer val))
112 (goto-char val))
113 ((and (consp val) (eq (car val) 'file))
114 (find-file (cdr val)))
115 ((and (consp val) (eq (car val) 'file-query))
116 (or (find-buffer-visiting (nth 1 val))
117 (y-or-n-p (format "Visit file %s again? " (nth 1 val)))
118 (error "Register access aborted"))
119 (find-file (nth 1 val))
120 (goto-char (nth 2 val)))
121 (t
122 (error "Register doesn't contain a buffer position or configuration")))))
123
124;; Turn markers into file-query references when a buffer is killed.
125(defun register-swap-out ()
126 (and buffer-file-name
127 (let ((tail register-alist))
128 (while tail
129 (and (markerp (cdr (car tail)))
130 (eq (marker-buffer (cdr (car tail))) (current-buffer))
131 (setcdr (car tail)
132 (list 'file-query
133 buffer-file-name
134 (marker-position (cdr (car tail))))))
135 (setq tail (cdr tail))))))
136
137(add-hook 'kill-buffer-hook 'register-swap-out)
138
139(defun number-to-register (arg char)
140 "Store a number in a register.
141Two args, NUMBER and REGISTER (a character, naming the register).
142If NUMBER is nil, a decimal number is read from the buffer starting
143at point, and point moves to the end of that number.
144Interactively, NUMBER is the prefix arg (none means nil)."
145 (interactive "P\ncNumber to register: ")
146 (set-register char
147 (if arg
148 (prefix-numeric-value arg)
149 (if (looking-at "\\s-*-?[0-9]+")
150 (progn
151 (goto-char (match-end 0))
152 (string-to-int (match-string 0)))
153 0))))
154
155(defun increment-register (arg char)
156 "Add NUMBER to the contents of register REGISTER.
157Interactively, NUMBER is the prefix arg (none means nil)."
158 (interactive "p\ncIncrement register: ")
159 (or (numberp (get-register char))
160 (error "Register does not contain a number"))
161 (set-register char (+ arg (get-register char))))
162
163(defun view-register (register)
164 "Display what is contained in register named REGISTER.
165The Lisp value REGISTER is a character."
166 (interactive "cView register: ")
167 (let ((val (get-register register)))
168 (if (null val)
169 (message "Register %s is empty" (single-key-description register))
170 (with-output-to-temp-buffer "*Output*"
171 (princ "Register ")
172 (princ (single-key-description register))
173 (princ " contains ")
174 (cond
175 ((numberp val)
176 (princ val))
177
178 ((markerp val)
179 (let ((buf (marker-buffer val)))
180 (if (null buf)
181 (princ "a marker in no buffer")
182 (princ "a buffer position:\nbuffer ")
183 (princ (buffer-name buf))
184 (princ ", position ")
185 (princ (marker-position val)))))
186
187 ((and (consp val) (window-configuration-p (car val)))
188 (princ "a window configuration."))
189
190 ((and (consp val) (frame-configuration-p (car val)))
191 (princ "a frame configuration."))
192
193 ((and (consp val) (eq (car val) 'file))
194 (princ "the file ")
195 (prin1 (cdr val))
196 (princ "."))
197
198 ((and (consp val) (eq (car val) 'file-query))
199 (princ "a file-query reference:\nfile ")
200 (prin1 (car (cdr val)))
201 (princ ",\nposition ")
202 (princ (car (cdr (cdr val))))
203 (princ "."))
204
205 ((consp val)
206 (princ "the rectangle:\n")
207 (while val
208 (princ (car val))
209 (terpri)
210 (setq val (cdr val))))
211
212 ((stringp val)
213 (princ "the text:\n")
214 (princ val))
215
216 (t
217 (princ "Garbage:\n")
218 (prin1 val)))))))
219
220(defun insert-register (register &optional arg)
221 "Insert contents of register REGISTER. (REGISTER is a character.)
222Normally puts point before and mark after the inserted text.
223If optional second arg is non-nil, puts mark before and point after.
224Interactively, second arg is non-nil if prefix arg is supplied."
225 (interactive "*cInsert register: \nP")
226 (push-mark)
227 (let ((val (get-register register)))
228 (cond
229 ((consp val)
230 (insert-rectangle val))
231 ((stringp val)
232 (insert val))
233 ((numberp val)
234 (princ val (current-buffer)))
235 ((and (markerp val) (marker-position val))
236 (princ (marker-position val) (current-buffer)))
237 (t
238 (error "Register does not contain text"))))
239 (if (not arg) (exchange-point-and-mark)))
240
241(defun copy-to-register (register start end &optional delete-flag)
242 "Copy region into register REGISTER. With prefix arg, delete as well.
243Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
244START and END are buffer positions indicating what to copy."
245 (interactive "cCopy to register: \nr\nP")
246 (set-register register (buffer-substring start end))
247 (if delete-flag (delete-region start end)))
248
249(defun append-to-register (register start end &optional delete-flag)
250 "Append region to text in register REGISTER.
251With prefix arg, delete as well.
252Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
253START and END are buffer positions indicating what to append."
254 (interactive "cAppend to register: \nr\nP")
255 (or (stringp (get-register register))
256 (error "Register does not contain text"))
257 (set-register register (concat (get-register register)
258 (buffer-substring start end)))
259 (if delete-flag (delete-region start end)))
260
261(defun prepend-to-register (register start end &optional delete-flag)
262 "Prepend region to text in register REGISTER.
263With prefix arg, delete as well.
264Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
265START and END are buffer positions indicating what to prepend."
266 (interactive "cPrepend to register: \nr\nP")
267 (or (stringp (get-register register))
268 (error "Register does not contain text"))
269 (set-register register (concat (buffer-substring start end)
270 (get-register register)))
271 (if delete-flag (delete-region start end)))
272
273(defun copy-rectangle-to-register (register start end &optional delete-flag)
274 "Copy rectangular region into register REGISTER.
275With prefix arg, delete as well.
276Called from program, takes four args: REGISTER, START, END and DELETE-FLAG.
277START and END are buffer positions giving two corners of rectangle."
278 (interactive "cCopy rectangle to register: \nr\nP")
279 (set-register register
280 (if delete-flag
281 (delete-extract-rectangle start end)
282 (extract-rectangle start end))))
283
284;;; register.el ends here