annotate lisp/saveplace.el @ 8320:2c77abdc0111

Add to global key map for cut, paste & copy keys.
author Richard M. Stallman <rms@gnu.org>
date Sun, 24 Jul 1994 19:19:17 +0000
parents 6347a8d838c8
children 5554c5e451ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 ;;; saveplace.el --- automatically save place in files.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
6662
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 ;; Author: Karl Fogel <kfogel@cs.oberlin.edu>
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Maintainer: FSF
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 ;; Created: July, 1993
6700
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
8 ;; Version: 1.2
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; Keywords: bookmarks, placeholders
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; This file is part of GNU Emacs.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; the Free Software Foundation; either version 2, or (at your option)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; any later version.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; GNU General Public License for more details.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 ;; along with GNU Emacs; see the file COPYING. If not, write to
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 ;; Automatically save place in files, so that visiting them later
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;; (even during a different Emacs session) automatically moves point
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;; to the saved position, when the file is first found. Uses the
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;; value of buffer-local variable save-place to determine whether to
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 ;; save position or not.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;;
6662
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
33 ;; Thanks to Stefan Schoef, who sent a patch with the
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
34 ;; `save-place-version-control' stuff in it.
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 ;; this is what I was using during testing:
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;; (define-key ctl-x-map "p" 'toggle-save-place)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 (defvar save-place-alist nil
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 "Alist of saved places to go back to when revisiting files.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 Each element looks like (FILENAME . POSITION);
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 visiting file FILENAME goes automatically to position POSITION
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 rather than the beginning of the buffer.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 This alist is saved between Emacs sessions.")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 (defvar save-place nil
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 "*Non-nil means automatically save place in each file.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 This means when you visit a file, point goes to the last place
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 where it was when you previously visited the same file.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 This variable is automatically buffer-local.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 If you wish your place in any file to always be automatically saved,
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 simply put this in your `~/.emacs' file:
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 \(setq-default save-place t\)")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 (make-variable-buffer-local 'save-place)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 (defvar save-place-file "~/.emacs-places"
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 "*Name of the file that records `save-place-alist' value.")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61
6662
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
62 (defvar save-place-version-control 'nospecial
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
63 "*Controls whether to make numbered backups of master save-place file.
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
64 It can have four values: t, nil, `never', and `nospecial'. The first
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
65 three have the same meaning that they do for the variable
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
66 `version-control', and the final value `nospecial' means just use the
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
67 value of `version-control'.")
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
68
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 (defvar save-place-loaded nil
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 "Non-nil means that the `save-place-file' has been loaded.")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 (defun toggle-save-place (&optional parg)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 "Toggle whether to save your place in this file between sessions.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 If this mode is enabled, point is recorded when you kill the buffer
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 or exit Emacs. Visiting this file again will go to that position,
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76 even in a later Emacs session.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 If called with a prefix arg, the mode is enabled if and only if
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 the argument is positive.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 To save places automatically in all files, put this in your `.emacs' file:
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 \(setq-default save-place t\)"
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 (interactive "P")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 (if (not buffer-file-name)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 (message
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 (format "Buffer \"%s\" not visiting a file." (buffer-name)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 (if (and save-place (or (not parg) (<= parg 0)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 (progn
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 (message "No place will be saved in this file.")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 (setq save-place nil))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 (message "Place will be saved.")
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 (setq save-place t))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 (defun save-place-to-alist ()
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 ;; put filename and point in a cons box and then cons that onto the
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 ;; front of the save-place-alist, if save-place is non-nil.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 ;; Otherwise, just delete that file from the alist.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 ;; first check to make sure alist has been loaded in from the master
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 ;; file. If not, do so, then feel free to modify the alist. It
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 ;; will be saved again when Emacs is killed.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 (or save-place-loaded (load-save-place-alist-from-file))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 (if buffer-file-name
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 (progn
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 (let ((cell (assoc buffer-file-name save-place-alist)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 (if cell
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 (setq save-place-alist (delq cell save-place-alist))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 (if save-place
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 (setq save-place-alist
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 (cons (cons buffer-file-name (point))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 save-place-alist))))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 (defun save-place-alist-to-file ()
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 (let ((file (expand-file-name save-place-file)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 (save-excursion
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 (message (format "Saving places to %s..." file))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 (set-buffer (get-buffer-create " *Saved Places*"))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 (delete-region (point-min) (point-max))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 (if (file-readable-p file)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 (insert-file-contents file))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 (delete-region (point-min) (point-max))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 (goto-char (point-min))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 (print save-place-alist (current-buffer))
6662
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
124 (let ((version-control
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
125 (cond
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
126 ((null save-place-version-control) nil)
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
127 ((eq 'never save-place-version-control) 'never)
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
128 ((eq 'nospecial save-place-version-control) version-control)
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
129 (t
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
130 t))))
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
131 (write-file file)
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
132 (kill-buffer (current-buffer))
bc7bc2a395c6 (save-place-version-control): New var, for determining
Richard M. Stallman <rms@gnu.org>
parents: 4596
diff changeset
133 (message (format "Saving places to %s... done." file))))))
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 (defun load-save-place-alist-from-file ()
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 (if (not save-place-loaded)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 (progn
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 (setq save-place-loaded t)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 (let ((file (expand-file-name save-place-file)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 ;; make sure that the alist does not get overwritten, and then
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 ;; load it if it exists:
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 (if (file-readable-p file)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 (save-excursion
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 (message (format "Loading places from %s..."
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 save-place-file))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 ;; don't want to use find-file because we have been
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 ;; adding hooks to it.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 (set-buffer (get-buffer-create " *Saved Places*"))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 (delete-region (point-min) (point-max))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 (insert-file-contents file)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 (goto-char (point-min))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 (setq save-place-alist
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 (car (read-from-string
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 (buffer-substring (point-min) (point-max)))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 (kill-buffer (current-buffer))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 (message (format "Loading places from %s... done." file))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 t)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 t)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 nil))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 (defun save-places-to-alist ()
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 ;; go through buffer-list, saving places to alist if save-place is
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 ;; non-nil, deleting them from alist if it is nil.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 (let ((buf-list (buffer-list)))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 (while buf-list
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 ;; put this into a save-excursion in case someone is counting on
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 ;; another function in kill-emacs-hook to act on the last buffer
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 ;; they were in:
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 (save-excursion
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 (set-buffer (car buf-list))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 ;; save-place checks buffer-file-name too, but we can avoid
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 ;; overhead of function call by checking here too.
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 (and buffer-file-name (save-place-to-alist))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 (setq buf-list (cdr buf-list))))))
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175
6700
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
176 (defun save-place-find-file-hook ()
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
177 (or save-place-loaded (load-save-place-alist-from-file))
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
178 (let ((cell (assoc buffer-file-name save-place-alist)))
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
179 (if cell
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
180 (progn
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
181 (goto-char (cdr cell))
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
182 ;; and make sure it will be saved again for later
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
183 (setq save-place t)))))
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
184
6877
6347a8d838c8 (save-place-kill-emacs-hook): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 6700
diff changeset
185 (defun save-place-kill-emacs-hook ()
6700
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
186 (save-places-to-alist)
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
187 (save-place-alist-to-file))
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
188
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
189 (add-hook 'find-file-hooks 'save-place-find-file-hook t)
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
190
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
191 (add-hook 'kill-emacs-hook 'save-place-kill-emacs-hook)
4596
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 (add-hook 'kill-buffer-hook 'save-place-to-alist)
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 (provide 'saveplace) ; why not...
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196
e357d85a087f entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 ;;; saveplace.el ends here
6700
db2292ce4894 (save-place-find-file-hook, save-place-kill-emacs-hook): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6662
diff changeset
198