2020-08-08 01:20:01 +02:00
|
|
|
;;; saveplace.el --- automatically save place in files -*- lexical-binding:t -*-
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2024-01-02 09:47:10 +08:00
|
|
|
;; Copyright (C) 1993-1994, 2001-2024 Free Software Foundation, Inc.
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2001-06-28 16:31:51 +00:00
|
|
|
;; Author: Karl Fogel <kfogel@red-bean.com>
|
2019-05-25 13:43:06 -07:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1993-08-13 01:08:54 +00:00
|
|
|
;; Created: July, 1993
|
|
|
|
;; Keywords: bookmarks, placeholders
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1993-08-13 01:08:54 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1993-08-13 01:08:54 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
1996-05-08 20:37:19 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
;; Automatically save place in files, so that visiting them later
|
|
|
|
;; (even during a different Emacs session) automatically moves point
|
|
|
|
;; to the saved position, when the file is first found. Uses the
|
2018-09-15 12:49:49 -04:00
|
|
|
;; value of buffer-local variable save-place-mode to determine whether to
|
1993-08-13 01:08:54 +00:00
|
|
|
;; save position or not.
|
|
|
|
;;
|
1994-04-04 01:05:07 +00:00
|
|
|
;; Thanks to Stefan Schoef, who sent a patch with the
|
|
|
|
;; `save-place-version-control' stuff in it.
|
1993-08-13 01:08:54 +00:00
|
|
|
|
1996-05-08 20:37:19 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2023-04-04 09:13:32 +08:00
|
|
|
(require 'cl-lib)
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
;; this is what I was using during testing:
|
2008-03-23 22:03:11 +00:00
|
|
|
;; (define-key ctl-x-map "p" 'toggle-save-place-globally)
|
1993-08-13 01:08:54 +00:00
|
|
|
|
1997-04-15 20:33:18 +00:00
|
|
|
(defgroup save-place nil
|
|
|
|
"Automatically save place in files."
|
|
|
|
:group 'data)
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
(defvar save-place-alist nil
|
|
|
|
"Alist of saved places to go back to when revisiting files.
|
|
|
|
Each element looks like (FILENAME . POSITION);
|
|
|
|
visiting file FILENAME goes automatically to position POSITION
|
|
|
|
rather than the beginning of the buffer.
|
2023-08-05 12:13:47 +03:00
|
|
|
A list element can also have the form
|
|
|
|
|
|
|
|
(DIRECTORY (dired-filename . FILENAME))
|
|
|
|
|
|
|
|
where DIRECTORY is the name of a directory ending in a slash,
|
|
|
|
and FILENAME is the name of a file in that directory. This
|
|
|
|
format is used for saving places in Dired buffers, see the
|
|
|
|
function `save-place-dired-hook'; the FILENAME is the file
|
|
|
|
where point was located in the Dired listing of DIRECTORY
|
|
|
|
when the place in that buffer was recorded.
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
This alist is saved between Emacs sessions.")
|
|
|
|
|
2013-03-11 22:08:21 -04:00
|
|
|
(defcustom save-place-file (locate-user-emacs-file "places" ".emacs-places")
|
2008-12-03 05:48:14 +00:00
|
|
|
"Name of the file that records `save-place-alist' value."
|
2014-01-26 18:02:28 -08:00
|
|
|
:version "24.4" ; added locate-user-emacs-file
|
2015-04-27 19:12:11 -04:00
|
|
|
:type 'file)
|
1993-08-13 01:08:54 +00:00
|
|
|
|
1997-09-25 00:53:39 +00:00
|
|
|
(defcustom save-place-version-control nil
|
2021-09-14 08:43:18 +02:00
|
|
|
"Controls whether to make numbered backups of master `save-place' file.
|
1994-04-04 01:05:07 +00:00
|
|
|
It can have four values: t, nil, `never', and `nospecial'. The first
|
|
|
|
three have the same meaning that they do for the variable
|
|
|
|
`version-control', and the final value `nospecial' means just use the
|
1997-04-15 20:33:18 +00:00
|
|
|
value of `version-control'."
|
|
|
|
:type '(radio (const :tag "Unconditionally" t)
|
|
|
|
(const :tag "For VC Files" nil)
|
|
|
|
(const never)
|
2015-04-27 19:12:11 -04:00
|
|
|
(const :tag "Use value of `version-control'" nospecial)))
|
1994-04-04 01:05:07 +00:00
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
(defvar save-place-loaded nil
|
|
|
|
"Non-nil means that the `save-place-file' has been loaded.")
|
|
|
|
|
2011-08-26 20:52:47 -04:00
|
|
|
(defcustom save-place-limit 400
|
1997-04-15 20:33:18 +00:00
|
|
|
"Maximum number of entries to retain in the list; nil means no limit."
|
2011-08-26 20:52:47 -04:00
|
|
|
:version "24.1" ; nil -> 400
|
1997-04-15 20:33:18 +00:00
|
|
|
:type '(choice (integer :tag "Entries" :value 1)
|
2015-04-27 19:12:11 -04:00
|
|
|
(const :tag "No Limit" nil)))
|
1995-11-30 00:51:26 +00:00
|
|
|
|
2004-02-21 14:07:11 +00:00
|
|
|
(defcustom save-place-forget-unreadable-files t
|
|
|
|
"Non-nil means forget place in unreadable files.
|
|
|
|
|
|
|
|
The filenames in `save-place-alist' that do not match
|
|
|
|
`save-place-skip-check-regexp' are filtered through
|
2014-02-21 01:35:08 +01:00
|
|
|
`file-readable-p'. If nil, their alist entries are removed.
|
2004-02-21 14:07:11 +00:00
|
|
|
|
|
|
|
You may do this anytime by calling the complementary function,
|
|
|
|
`save-place-forget-unreadable-files'. When this option is turned on,
|
|
|
|
this happens automatically before saving `save-place-alist' to
|
|
|
|
`save-place-file'."
|
2015-04-27 19:12:11 -04:00
|
|
|
:type 'boolean)
|
2004-02-21 14:07:11 +00:00
|
|
|
|
2023-04-04 09:13:32 +08:00
|
|
|
(defun save-place-load-alist-from-file ()
|
|
|
|
(if (not save-place-loaded)
|
|
|
|
(progn
|
|
|
|
(setq save-place-loaded t)
|
|
|
|
(let ((file (expand-file-name save-place-file)))
|
|
|
|
;; make sure that the alist does not get overwritten, and then
|
|
|
|
;; load it if it exists:
|
|
|
|
(if (file-readable-p file)
|
|
|
|
;; don't want to use find-file because we have been
|
|
|
|
;; adding hooks to it.
|
|
|
|
(with-current-buffer (get-buffer-create " *Saved Places*")
|
|
|
|
(delete-region (point-min) (point-max))
|
|
|
|
;; Make sure our 'coding:' cookie in the save-place
|
|
|
|
;; file will take effect, in case the caller binds
|
|
|
|
;; coding-system-for-read.
|
|
|
|
(let (coding-system-for-read)
|
|
|
|
(insert-file-contents file))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(setq save-place-alist
|
|
|
|
(with-demoted-errors "Error reading save-place-file: %S"
|
|
|
|
(car (read-from-string
|
|
|
|
(buffer-substring (point-min) (point-max))))))
|
|
|
|
|
|
|
|
;; If there is a limit, and we're over it, then we'll
|
|
|
|
;; have to truncate the end of the list:
|
|
|
|
(if save-place-limit
|
|
|
|
(if (<= save-place-limit 0)
|
|
|
|
;; Zero gets special cased. I'm not thrilled
|
|
|
|
;; with this, but the loop for >= 1 is tight.
|
|
|
|
(setq save-place-alist nil)
|
|
|
|
;; Else the limit is >= 1, so enforce it by
|
|
|
|
;; counting and then `setcdr'ing.
|
|
|
|
(let ((s save-place-alist)
|
|
|
|
(count 1))
|
|
|
|
(while s
|
|
|
|
(if (>= count save-place-limit)
|
|
|
|
(setcdr s nil)
|
|
|
|
(setq count (1+ count)))
|
|
|
|
(setq s (cdr s))))))
|
|
|
|
|
|
|
|
(kill-buffer (current-buffer))))
|
|
|
|
nil))))
|
|
|
|
|
2021-07-15 18:03:36 +02:00
|
|
|
(defcustom save-place-abbreviate-file-names nil
|
2021-09-05 09:27:00 +02:00
|
|
|
"If non-nil, abbreviate file names before saving them.
|
|
|
|
This can simplify sharing the `save-place-file' file across
|
2023-04-04 09:13:32 +08:00
|
|
|
different hosts.
|
|
|
|
|
|
|
|
Changing this option requires rewriting `save-place-alist' with
|
|
|
|
corresponding file name format, therefore setting this option
|
|
|
|
just using `setq' may cause out-of-sync problems. You should use
|
|
|
|
either `setopt' or M-x customize-variable to set this option."
|
2021-07-15 18:03:36 +02:00
|
|
|
:type 'boolean
|
2023-04-04 09:13:32 +08:00
|
|
|
:set (lambda (sym val)
|
|
|
|
(set-default sym val)
|
|
|
|
(or save-place-loaded (save-place-load-alist-from-file))
|
2023-11-10 11:15:30 +01:00
|
|
|
(let ((fun (if val #'abbreviate-file-name #'expand-file-name))
|
|
|
|
;; Don't expand file names for non-existing remote connections.
|
|
|
|
(non-essential t))
|
2023-04-04 09:13:32 +08:00
|
|
|
(setq save-place-alist
|
|
|
|
(cl-delete-duplicates
|
|
|
|
(cl-loop for (k . v) in save-place-alist
|
|
|
|
collect
|
|
|
|
(cons (funcall fun k)
|
|
|
|
(if (listp v)
|
|
|
|
(cl-loop for (k1 . v1) in v
|
|
|
|
collect
|
|
|
|
(cons k1 (funcall fun v1)))
|
|
|
|
v)))
|
|
|
|
:key #'car
|
|
|
|
:from-end t
|
|
|
|
:test #'equal)))
|
|
|
|
val)
|
2021-07-15 18:03:36 +02:00
|
|
|
:version "28.1")
|
|
|
|
|
2004-02-21 14:07:11 +00:00
|
|
|
(defcustom save-place-save-skipped t
|
|
|
|
"If non-nil, remember files matching `save-place-skip-check-regexp'.
|
|
|
|
|
|
|
|
When filtering `save-place-alist' for unreadable files, some will not
|
|
|
|
be checked, based on said regexp, and instead saved or forgotten based
|
|
|
|
on this flag."
|
2015-04-27 19:12:11 -04:00
|
|
|
:type 'boolean)
|
2004-02-21 14:07:11 +00:00
|
|
|
|
|
|
|
(defcustom save-place-skip-check-regexp
|
|
|
|
;; thanks to ange-ftp-name-format
|
|
|
|
"\\`/\\(?:cdrom\\|floppy\\|mnt\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)"
|
|
|
|
"Regexp whose file names shall not be checked for readability.
|
|
|
|
|
|
|
|
When forgetting unreadable files, file names matching this regular
|
|
|
|
expression shall not be checked for readability, but instead be
|
|
|
|
subject to `save-place-save-skipped'.
|
|
|
|
|
|
|
|
Files for which such a check may be inconvenient include those on
|
|
|
|
removable and network volumes."
|
2015-04-27 19:12:11 -04:00
|
|
|
:type 'regexp)
|
2004-02-21 14:07:11 +00:00
|
|
|
|
2012-02-17 21:19:30 +01:00
|
|
|
(defcustom save-place-ignore-files-regexp
|
|
|
|
"\\(?:COMMIT_EDITMSG\\|hg-editor-[[:alnum:]]+\\.txt\\|svn-commit\\.tmp\\|bzr_log\\.[[:alnum:]]+\\)$"
|
2023-09-14 16:18:03 +03:00
|
|
|
"Regexp matching files whose positions should not be recorded.
|
|
|
|
Useful to exclude temporary files, such as commit message files that are
|
|
|
|
automatically created by VCSes. If set to nil, this feature is
|
|
|
|
disabled, i.e., no files are excluded."
|
2012-02-18 11:04:28 -08:00
|
|
|
:version "24.1"
|
2023-09-14 16:18:03 +03:00
|
|
|
:type '(choice (const :tag "Don't exclude any files" nil)
|
2023-09-14 08:24:43 -03:00
|
|
|
regexp))
|
2012-02-17 21:19:30 +01:00
|
|
|
|
2014-12-28 02:52:50 +02:00
|
|
|
(declare-function dired-current-directory "dired" (&optional localp))
|
|
|
|
|
2016-02-25 13:44:43 -05:00
|
|
|
(defun save-place--setup-hooks (add)
|
|
|
|
(cond
|
|
|
|
(add
|
|
|
|
(add-hook 'find-file-hook #'save-place-find-file-hook t)
|
|
|
|
(add-hook 'dired-initial-position-hook #'save-place-dired-hook)
|
|
|
|
(unless noninteractive
|
|
|
|
(add-hook 'kill-emacs-hook #'save-place-kill-emacs-hook))
|
|
|
|
(add-hook 'kill-buffer-hook #'save-place-to-alist))
|
|
|
|
(t
|
|
|
|
;; We should remove the hooks, but only if save-place-mode
|
|
|
|
;; is nil everywhere. Is it worth the trouble, tho?
|
|
|
|
;; (unless (or (default-value 'save-place-mode)
|
|
|
|
;; (cl-some <save-place-local-mode-p> (buffer-list)))
|
|
|
|
;; (remove-hook 'find-file-hook #'save-place-find-file-hook)
|
|
|
|
;; (remove-hook 'dired-initial-position-hook #'save-place-dired-hook)
|
|
|
|
;; (remove-hook 'kill-emacs-hook #'save-place-kill-emacs-hook)
|
|
|
|
;; (remove-hook 'kill-buffer-hook #'save-place-to-alist))
|
|
|
|
)))
|
|
|
|
|
2015-04-27 19:12:11 -04:00
|
|
|
(define-obsolete-variable-alias 'save-place 'save-place-mode "25.1")
|
|
|
|
;;;###autoload
|
|
|
|
(define-minor-mode save-place-mode
|
|
|
|
"Non-nil means automatically save place in each file.
|
|
|
|
This means when you visit a file, point goes to the last place
|
|
|
|
where it was when you previously visited the same file."
|
|
|
|
:global t
|
|
|
|
:group 'save-place
|
2016-02-25 13:44:43 -05:00
|
|
|
(save-place--setup-hooks save-place-mode))
|
2015-04-27 19:12:11 -04:00
|
|
|
|
2016-02-25 13:44:43 -05:00
|
|
|
(make-variable-buffer-local 'save-place-mode)
|
2015-04-27 19:12:11 -04:00
|
|
|
|
2016-02-25 13:44:43 -05:00
|
|
|
(define-obsolete-function-alias 'toggle-save-place
|
|
|
|
#'save-place-local-mode "25.1")
|
2016-02-24 22:56:32 +02:00
|
|
|
;;;###autoload
|
2016-02-25 13:44:43 -05:00
|
|
|
(define-minor-mode save-place-local-mode
|
1993-08-13 01:08:54 +00:00
|
|
|
"Toggle whether to save your place in this file between sessions.
|
|
|
|
If this mode is enabled, point is recorded when you kill the buffer
|
|
|
|
or exit Emacs. Visiting this file again will go to that position,
|
|
|
|
even in a later Emacs session.
|
|
|
|
|
2012-09-17 13:41:04 +08:00
|
|
|
To save places automatically in all files, put this in your init
|
|
|
|
file:
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2016-02-24 21:54:21 +02:00
|
|
|
\(save-place-mode 1)"
|
2016-02-25 13:44:43 -05:00
|
|
|
:variable save-place-mode
|
2014-01-20 10:52:44 +02:00
|
|
|
(if (not (or buffer-file-name (and (derived-mode-p 'dired-mode)
|
2015-12-22 02:14:47 +02:00
|
|
|
(boundp 'dired-subdir-alist)
|
|
|
|
dired-subdir-alist
|
2014-12-27 02:38:34 +02:00
|
|
|
(dired-current-directory))))
|
2013-12-20 22:20:39 +02:00
|
|
|
(message "Buffer `%s' not visiting a file or directory" (buffer-name))
|
2016-02-25 13:44:43 -05:00
|
|
|
(save-place--setup-hooks save-place-mode)))
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2013-12-20 22:20:39 +02:00
|
|
|
(declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
(defun save-place-to-alist ()
|
2020-08-08 01:20:01 +02:00
|
|
|
"Add current buffer filename and position to `save-place-alist'.
|
|
|
|
Put filename and point in a cons box and then cons that onto the
|
|
|
|
front of the `save-place-alist', if `save-place-mode' is non-nil.
|
2021-07-15 18:03:36 +02:00
|
|
|
Otherwise, just delete that file from the alist.
|
|
|
|
|
|
|
|
If `save-place-abbreviate-file-names' is non-nil, abbreviate the
|
|
|
|
file names."
|
2020-08-08 01:20:01 +02:00
|
|
|
;; First check to make sure alist has been loaded in from the master
|
1993-08-13 01:08:54 +00:00
|
|
|
;; file. If not, do so, then feel free to modify the alist. It
|
|
|
|
;; will be saved again when Emacs is killed.
|
2022-08-05 12:28:59 +02:00
|
|
|
(or save-place-loaded (save-place-load-alist-from-file))
|
2014-12-27 02:38:34 +02:00
|
|
|
(let* ((directory (and (derived-mode-p 'dired-mode)
|
2015-12-22 02:14:47 +02:00
|
|
|
(boundp 'dired-subdir-alist)
|
|
|
|
dired-subdir-alist
|
2014-12-27 02:38:34 +02:00
|
|
|
(dired-current-directory)))
|
|
|
|
(item (or buffer-file-name
|
|
|
|
(and directory
|
|
|
|
(expand-file-name (if (consp directory)
|
|
|
|
(car directory)
|
|
|
|
directory))))))
|
2013-06-14 11:32:01 +02:00
|
|
|
(when (and item
|
|
|
|
(or (not save-place-ignore-files-regexp)
|
|
|
|
(not (string-match save-place-ignore-files-regexp
|
|
|
|
item))))
|
2021-07-15 18:03:36 +02:00
|
|
|
(when save-place-abbreviate-file-names
|
|
|
|
(setq item (abbreviate-file-name item)))
|
2013-06-14 11:32:01 +02:00
|
|
|
(let ((cell (assoc item save-place-alist))
|
2013-12-20 22:20:39 +02:00
|
|
|
(position (cond ((eq major-mode 'hexl-mode)
|
|
|
|
(with-no-warnings
|
|
|
|
(1+ (hexl-current-address))))
|
2014-12-27 02:38:34 +02:00
|
|
|
((and (derived-mode-p 'dired-mode) directory)
|
2013-12-20 22:20:39 +02:00
|
|
|
(let ((filename (dired-get-filename nil t)))
|
|
|
|
(if filename
|
2023-04-04 09:13:32 +08:00
|
|
|
(list
|
|
|
|
(cons 'dired-filename
|
|
|
|
(if save-place-abbreviate-file-names
|
|
|
|
(abbreviate-file-name filename)
|
|
|
|
filename)))
|
2013-12-20 22:20:39 +02:00
|
|
|
(point))))
|
|
|
|
(t (point)))))
|
2013-06-14 11:32:01 +02:00
|
|
|
(if cell
|
|
|
|
(setq save-place-alist (delq cell save-place-alist)))
|
|
|
|
(if (and save-place
|
2013-12-20 22:20:39 +02:00
|
|
|
(not (and (integerp position)
|
|
|
|
(= position 1)))) ;; Optimize out the degenerate case.
|
2013-06-14 11:32:01 +02:00
|
|
|
(setq save-place-alist
|
|
|
|
(cons (cons item position)
|
|
|
|
save-place-alist)))))))
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2004-02-21 14:07:11 +00:00
|
|
|
(defun save-place-forget-unreadable-files ()
|
|
|
|
"Remove unreadable files from `save-place-alist'.
|
|
|
|
For each entry in the alist, if `file-readable-p' returns nil for the
|
2014-02-21 01:35:08 +01:00
|
|
|
filename, remove the entry. Save the new alist (as the first pair
|
|
|
|
may have changed) back to `save-place-alist'."
|
2004-02-21 14:07:11 +00:00
|
|
|
(interactive)
|
|
|
|
;; the following was adapted from an in-place filtering function,
|
|
|
|
;; `filter-mod', used in the original.
|
|
|
|
(unless (null save-place-alist) ;says it better than `when'
|
|
|
|
;; first, check all except first
|
|
|
|
(let ((fmprev save-place-alist) (fmcur (cdr save-place-alist)))
|
|
|
|
(while fmcur ;not null
|
|
|
|
;; a value is only saved when it becomes FMPREV.
|
|
|
|
(if (if (string-match save-place-skip-check-regexp (caar fmcur))
|
|
|
|
save-place-save-skipped
|
|
|
|
(file-readable-p (caar fmcur)))
|
|
|
|
(setq fmprev fmcur)
|
|
|
|
(setcdr fmprev (cdr fmcur)))
|
|
|
|
(setq fmcur (cdr fmcur))))
|
|
|
|
;; test first pair, keep it if OK, otherwise 2nd element, which
|
|
|
|
;; may be '()
|
|
|
|
(unless (if (string-match save-place-skip-check-regexp
|
|
|
|
(caar save-place-alist))
|
|
|
|
save-place-save-skipped
|
|
|
|
(file-readable-p (caar save-place-alist)))
|
|
|
|
(setq save-place-alist (cdr save-place-alist)))))
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
(defun save-place-alist-to-file ()
|
2007-12-02 21:24:38 +00:00
|
|
|
(let ((file (expand-file-name save-place-file))
|
|
|
|
(coding-system-for-write 'utf-8))
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
(with-current-buffer (get-buffer-create " *Saved Places*")
|
1993-08-13 01:08:54 +00:00
|
|
|
(delete-region (point-min) (point-max))
|
2004-02-21 14:07:11 +00:00
|
|
|
(when save-place-forget-unreadable-files
|
|
|
|
(save-place-forget-unreadable-files))
|
2020-05-01 14:44:56 +01:00
|
|
|
(insert (format ";;; -*- coding: %s; mode: lisp-data -*-\n"
|
|
|
|
coding-system-for-write))
|
2004-06-08 00:36:04 +00:00
|
|
|
(let ((print-length nil)
|
|
|
|
(print-level nil))
|
2013-03-13 13:54:05 -05:00
|
|
|
(pp save-place-alist (current-buffer)))
|
1994-04-04 01:05:07 +00:00
|
|
|
(let ((version-control
|
|
|
|
(cond
|
|
|
|
((null save-place-version-control) nil)
|
|
|
|
((eq 'never save-place-version-control) 'never)
|
|
|
|
((eq 'nospecial save-place-version-control) version-control)
|
|
|
|
(t
|
|
|
|
t))))
|
2005-04-10 23:32:00 +00:00
|
|
|
(condition-case nil
|
2005-05-29 08:36:26 +00:00
|
|
|
;; Don't use write-file; we don't want this buffer to visit it.
|
2007-12-02 21:24:38 +00:00
|
|
|
(write-region (point-min) (point-max) file)
|
2007-12-03 21:37:30 +00:00
|
|
|
(file-error (message "Saving places: can't write %s" file)))
|
|
|
|
(kill-buffer (current-buffer))))))
|
1993-08-13 01:08:54 +00:00
|
|
|
|
|
|
|
(defun save-places-to-alist ()
|
2018-09-15 12:49:49 -04:00
|
|
|
;; go through buffer-list, saving places to alist if save-place-mode
|
|
|
|
;; is non-nil, deleting them from alist if it is nil.
|
1993-08-13 01:08:54 +00:00
|
|
|
(let ((buf-list (buffer-list)))
|
|
|
|
(while buf-list
|
|
|
|
;; put this into a save-excursion in case someone is counting on
|
|
|
|
;; another function in kill-emacs-hook to act on the last buffer
|
|
|
|
;; they were in:
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
(with-current-buffer (car buf-list)
|
1993-08-13 01:08:54 +00:00
|
|
|
;; save-place checks buffer-file-name too, but we can avoid
|
|
|
|
;; overhead of function call by checking here too.
|
2021-11-11 05:04:31 +01:00
|
|
|
(when (and (or buffer-file-name
|
|
|
|
(and (derived-mode-p 'dired-mode)
|
|
|
|
(boundp 'dired-subdir-alist)
|
|
|
|
dired-subdir-alist
|
|
|
|
(dired-current-directory)))
|
|
|
|
;; Don't save place in literally-visited file
|
|
|
|
;; because this will commonly differ from the place
|
|
|
|
;; when visiting literally (and
|
|
|
|
;; `find-file-literally' always places point at the
|
|
|
|
;; start of the buffer).
|
|
|
|
(not find-file-literally))
|
|
|
|
(save-place-to-alist))
|
1993-08-13 01:08:54 +00:00
|
|
|
(setq buf-list (cdr buf-list))))))
|
1994-04-06 05:04:40 +00:00
|
|
|
|
2022-06-30 13:47:59 +02:00
|
|
|
(defvar save-place-after-find-file-hook nil
|
|
|
|
"Hook run at the end of `save-place-find-file-hook'.")
|
|
|
|
|
1994-04-06 05:04:40 +00:00
|
|
|
(defun save-place-find-file-hook ()
|
2022-06-30 13:47:59 +02:00
|
|
|
"Function added to `find-file-hook' by `save-place-mode'.
|
|
|
|
It runs the hook `save-place-after-find-file-hook'."
|
2022-08-05 12:28:59 +02:00
|
|
|
(or save-place-loaded (save-place-load-alist-from-file))
|
2023-04-04 09:13:32 +08:00
|
|
|
(let ((cell (and (stringp buffer-file-name)
|
|
|
|
(assoc (if save-place-abbreviate-file-names
|
|
|
|
(abbreviate-file-name buffer-file-name)
|
|
|
|
buffer-file-name)
|
|
|
|
save-place-alist))))
|
1994-04-06 05:04:40 +00:00
|
|
|
(if cell
|
1996-05-08 20:37:19 +00:00
|
|
|
(progn
|
2011-04-06 21:38:46 +02:00
|
|
|
(or revert-buffer-in-progress-p
|
2013-12-20 22:20:39 +02:00
|
|
|
(and (integerp (cdr cell))
|
|
|
|
(goto-char (cdr cell))))
|
1994-04-06 05:04:40 +00:00
|
|
|
;; and make sure it will be saved again for later
|
2022-06-30 13:47:59 +02:00
|
|
|
(setq save-place-mode t))))
|
|
|
|
(run-hooks 'save-place-after-find-file-hook))
|
1994-04-06 05:04:40 +00:00
|
|
|
|
2013-12-20 22:20:39 +02:00
|
|
|
(declare-function dired-goto-file "dired" (file))
|
|
|
|
|
2013-06-14 11:32:01 +02:00
|
|
|
(defun save-place-dired-hook ()
|
2023-08-05 12:13:47 +03:00
|
|
|
"Position point in a Dired buffer according to its saved place.
|
|
|
|
This is run via `dired-initial-position-hook', which see."
|
2022-08-05 12:28:59 +02:00
|
|
|
(or save-place-loaded (save-place-load-alist-from-file))
|
2023-04-04 09:13:32 +08:00
|
|
|
(when-let ((directory (and (derived-mode-p 'dired-mode)
|
|
|
|
(boundp 'dired-subdir-alist)
|
|
|
|
dired-subdir-alist
|
|
|
|
(dired-current-directory)))
|
|
|
|
(item (expand-file-name (if (consp directory)
|
|
|
|
(car directory)
|
|
|
|
directory)))
|
|
|
|
(cell (assoc (if save-place-abbreviate-file-names
|
|
|
|
(abbreviate-file-name item) item)
|
|
|
|
save-place-alist)))
|
|
|
|
(or revert-buffer-in-progress-p
|
|
|
|
(cond
|
|
|
|
((integerp (cdr cell))
|
|
|
|
(goto-char (cdr cell)))
|
|
|
|
((listp (cdr cell))
|
|
|
|
(when-let ((elt (assq 'dired-filename (cdr cell))))
|
|
|
|
(dired-goto-file (expand-file-name (cdr elt)))))))
|
|
|
|
;; and make sure it will be saved again for later
|
|
|
|
(setq save-place-mode t)))
|
2013-06-14 11:32:01 +02:00
|
|
|
|
1994-04-14 12:04:19 +00:00
|
|
|
(defun save-place-kill-emacs-hook ()
|
1996-03-06 06:28:39 +00:00
|
|
|
;; First update the alist. This loads the old save-place-file if nec.
|
|
|
|
(save-places-to-alist)
|
|
|
|
;; Now save the alist in the file, if we have ever loaded the file
|
|
|
|
;; (including just now).
|
1996-03-05 04:22:25 +00:00
|
|
|
(if save-place-loaded
|
1996-03-06 06:28:39 +00:00
|
|
|
(save-place-alist-to-file)))
|
1994-04-06 05:04:40 +00:00
|
|
|
|
2022-08-05 12:28:59 +02:00
|
|
|
(define-obsolete-function-alias 'load-save-place-alist-from-file
|
|
|
|
#'save-place-load-alist-from-file "29.1")
|
|
|
|
|
2015-04-27 19:12:11 -04:00
|
|
|
(provide 'saveplace)
|
1993-08-13 01:08:54 +00:00
|
|
|
;;; saveplace.el ends here
|