Some fixes to follow coding conventions in files maintained by FSF.
[bpt/emacs.git] / lisp / saveplace.el
CommitLineData
55535639 1;;; saveplace.el --- automatically save place in files
722074ef 2
e7dc77f6 3;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
722074ef 4
19a448e3 5;; Author: Karl Fogel <kfogel@red-bean.com>
722074ef
RS
6;; Maintainer: FSF
7;; Created: July, 1993
722074ef
RS
8;; Keywords: bookmarks, placeholders
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
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
b578f267
EN
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
26
6f96f4c9
RS
27;;; Commentary:
28
722074ef
RS
29;; Automatically save place in files, so that visiting them later
30;; (even during a different Emacs session) automatically moves point
31;; to the saved position, when the file is first found. Uses the
32;; value of buffer-local variable save-place to determine whether to
33;; save position or not.
34;;
e7dc77f6
RS
35;; Thanks to Stefan Schoef, who sent a patch with the
36;; `save-place-version-control' stuff in it.
722074ef 37
6f96f4c9
RS
38;;; Code:
39
722074ef
RS
40;; this is what I was using during testing:
41;; (define-key ctl-x-map "p" 'toggle-save-place)
42
20606f3d
RS
43(defgroup save-place nil
44 "Automatically save place in files."
45 :group 'data)
46
47
722074ef
RS
48(defvar save-place-alist nil
49 "Alist of saved places to go back to when revisiting files.
50Each element looks like (FILENAME . POSITION);
51visiting file FILENAME goes automatically to position POSITION
52rather than the beginning of the buffer.
53This alist is saved between Emacs sessions.")
54
20606f3d 55(defcustom save-place nil
722074ef
RS
56 "*Non-nil means automatically save place in each file.
57This means when you visit a file, point goes to the last place
58where it was when you previously visited the same file.
59This variable is automatically buffer-local.
60
61If you wish your place in any file to always be automatically saved,
62simply put this in your `~/.emacs' file:
63
20606f3d
RS
64\(setq-default save-place t\)"
65 :type 'boolean
66 :group 'save-place)
722074ef
RS
67
68(make-variable-buffer-local 'save-place)
69
20606f3d
RS
70(defcustom save-place-file (convert-standard-filename "~/.emacs-places")
71 "*Name of the file that records `save-place-alist' value."
72 :type 'file
73 :group 'save-place)
722074ef 74
a4ce5ede 75(defcustom save-place-version-control nil
e7dc77f6
RS
76 "*Controls whether to make numbered backups of master save-place file.
77It can have four values: t, nil, `never', and `nospecial'. The first
78three have the same meaning that they do for the variable
79`version-control', and the final value `nospecial' means just use the
20606f3d
RS
80value of `version-control'."
81 :type '(radio (const :tag "Unconditionally" t)
82 (const :tag "For VC Files" nil)
83 (const never)
a4ce5ede 84 (const :tag "Use value of `version-control'" nospecial))
20606f3d 85 :group 'save-place)
e7dc77f6 86
722074ef
RS
87(defvar save-place-loaded nil
88 "Non-nil means that the `save-place-file' has been loaded.")
89
20606f3d
RS
90(defcustom save-place-limit nil
91 "Maximum number of entries to retain in the list; nil means no limit."
92 :type '(choice (integer :tag "Entries" :value 1)
93 (const :tag "No Limit" nil))
94 :group 'save-place)
6cf02570 95
722074ef
RS
96(defun toggle-save-place (&optional parg)
97 "Toggle whether to save your place in this file between sessions.
98If this mode is enabled, point is recorded when you kill the buffer
99or exit Emacs. Visiting this file again will go to that position,
100even in a later Emacs session.
101
102If called with a prefix arg, the mode is enabled if and only if
103the argument is positive.
104
105To save places automatically in all files, put this in your `.emacs' file:
106
107\(setq-default save-place t\)"
108 (interactive "P")
109 (if (not buffer-file-name)
44a75d48 110 (message "Buffer `%s' not visiting a file" (buffer-name))
722074ef
RS
111 (if (and save-place (or (not parg) (<= parg 0)))
112 (progn
44a75d48 113 (message "No place will be saved in this file")
722074ef 114 (setq save-place nil))
44a75d48 115 (message "Place will be saved")
722074ef
RS
116 (setq save-place t))))
117
118(defun save-place-to-alist ()
119 ;; put filename and point in a cons box and then cons that onto the
120 ;; front of the save-place-alist, if save-place is non-nil.
121 ;; Otherwise, just delete that file from the alist.
122 ;; first check to make sure alist has been loaded in from the master
123 ;; file. If not, do so, then feel free to modify the alist. It
124 ;; will be saved again when Emacs is killed.
125 (or save-place-loaded (load-save-place-alist-from-file))
126 (if buffer-file-name
127 (progn
a59f6ba3
KH
128 (let ((cell (assoc buffer-file-name save-place-alist))
129 (position (if (not (eq major-mode 'hexl-mode))
130 (point)
131 (1+ (hexl-current-address)))))
722074ef 132 (if cell
a59f6ba3
KH
133 (setq save-place-alist (delq cell save-place-alist)))
134 (if (and save-place
135 (not (= position 1))) ;; Optimize out the degenerate case.
136 (setq save-place-alist
137 (cons (cons buffer-file-name position)
138 save-place-alist)))))))
722074ef
RS
139
140(defun save-place-alist-to-file ()
141 (let ((file (expand-file-name save-place-file)))
142 (save-excursion
b483a3c1 143 (message "Saving places to %s..." file)
722074ef
RS
144 (set-buffer (get-buffer-create " *Saved Places*"))
145 (delete-region (point-min) (point-max))
722074ef 146 (print save-place-alist (current-buffer))
e7dc77f6
RS
147 (let ((version-control
148 (cond
149 ((null save-place-version-control) nil)
150 ((eq 'never save-place-version-control) 'never)
151 ((eq 'nospecial save-place-version-control) version-control)
152 (t
153 t))))
154 (write-file file)
155 (kill-buffer (current-buffer))
b483a3c1 156 (message "Saving places to %s...done" file)))))
722074ef
RS
157
158(defun load-save-place-alist-from-file ()
159 (if (not save-place-loaded)
160 (progn
161 (setq save-place-loaded t)
162 (let ((file (expand-file-name save-place-file)))
163 ;; make sure that the alist does not get overwritten, and then
164 ;; load it if it exists:
165 (if (file-readable-p file)
166 (save-excursion
b483a3c1 167 (message "Loading places from %s..." save-place-file)
722074ef
RS
168 ;; don't want to use find-file because we have been
169 ;; adding hooks to it.
170 (set-buffer (get-buffer-create " *Saved Places*"))
171 (delete-region (point-min) (point-max))
172 (insert-file-contents file)
173 (goto-char (point-min))
174 (setq save-place-alist
175 (car (read-from-string
176 (buffer-substring (point-min) (point-max)))))
6cf02570
RS
177
178 ;; If there is a limit, and we're over it, then we'll
179 ;; have to truncate the end of the list:
180 (if save-place-limit
181 (if (<= save-place-limit 0)
182 ;; Zero gets special cased. I'm not thrilled
183 ;; with this, but the loop for >= 1 is tight.
184 (setq save-place-alist nil)
185 ;; Else the limit is >= 1, so enforce it by
186 ;; counting and then `setcdr'ing.
187 (let ((s save-place-alist)
188 (count 1))
189 (while s
190 (if (>= count save-place-limit)
191 (setcdr s nil)
192 (setq count (1+ count)))
193 (setq s (cdr s))))))
194
722074ef 195 (kill-buffer (current-buffer))
91eac6da 196 (message "Loading places from %s...done" file)))
722074ef
RS
197 nil))))
198
199(defun save-places-to-alist ()
200 ;; go through buffer-list, saving places to alist if save-place is
201 ;; non-nil, deleting them from alist if it is nil.
202 (let ((buf-list (buffer-list)))
203 (while buf-list
204 ;; put this into a save-excursion in case someone is counting on
205 ;; another function in kill-emacs-hook to act on the last buffer
206 ;; they were in:
207 (save-excursion
208 (set-buffer (car buf-list))
209 ;; save-place checks buffer-file-name too, but we can avoid
210 ;; overhead of function call by checking here too.
211 (and buffer-file-name (save-place-to-alist))
212 (setq buf-list (cdr buf-list))))))
b6ace927
RS
213
214(defun save-place-find-file-hook ()
215 (or save-place-loaded (load-save-place-alist-from-file))
216 (let ((cell (assoc buffer-file-name save-place-alist)))
217 (if cell
6f96f4c9
RS
218 (progn
219 (or after-find-file-from-revert-buffer
220 (goto-char (cdr cell)))
b6ace927
RS
221 ;; and make sure it will be saved again for later
222 (setq save-place t)))))
223
4d2c9a10 224(defun save-place-kill-emacs-hook ()
18b1fecd
RS
225 ;; First update the alist. This loads the old save-place-file if nec.
226 (save-places-to-alist)
227 ;; Now save the alist in the file, if we have ever loaded the file
228 ;; (including just now).
52b9a931 229 (if save-place-loaded
18b1fecd 230 (save-place-alist-to-file)))
b6ace927
RS
231
232(add-hook 'find-file-hooks 'save-place-find-file-hook t)
233
234(add-hook 'kill-emacs-hook 'save-place-kill-emacs-hook)
722074ef
RS
235
236(add-hook 'kill-buffer-hook 'save-place-to-alist)
237
238(provide 'saveplace) ; why not...
239
240;;; saveplace.el ends here