2001-07-15 16:15:35 +00:00
|
|
|
;;; saveplace.el --- automatically save place in files
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 1993-1994, 2001-2014 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>
|
2014-02-10 01:34:22 +00: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
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://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
|
|
|
|
;; value of buffer-local variable save-place to determine whether to
|
|
|
|
;; 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:
|
|
|
|
|
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.
|
|
|
|
This alist is saved between Emacs sessions.")
|
|
|
|
|
1997-04-15 20:33:18 +00:00
|
|
|
(defcustom save-place nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"Non-nil means automatically save place in each file.
|
1993-08-13 01:08:54 +00:00
|
|
|
This means when you visit a file, point goes to the last place
|
|
|
|
where it was when you previously visited the same file.
|
|
|
|
|
2012-09-17 05:41:04 +00:00
|
|
|
If you wish your place in any file to always be automatically
|
|
|
|
saved, set this to t using the Customize facility, or put the
|
|
|
|
following code in your init file:
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2004-11-16 17:11:00 +00:00
|
|
|
\(setq-default save-place t)
|
2012-09-17 05:41:04 +00:00
|
|
|
\(require 'saveplace)"
|
1997-04-15 20:33:18 +00:00
|
|
|
:type 'boolean
|
2001-10-21 23:03:27 +00:00
|
|
|
:require 'saveplace
|
1997-04-15 20:33:18 +00:00
|
|
|
:group 'save-place)
|
1993-08-13 01:08:54 +00:00
|
|
|
|
|
|
|
(make-variable-buffer-local 'save-place)
|
|
|
|
|
2013-03-12 02:08:21 +00: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-27 02:02:28 +00:00
|
|
|
:version "24.4" ; added locate-user-emacs-file
|
1997-04-15 20:33:18 +00:00
|
|
|
:type 'file
|
|
|
|
:group 'save-place)
|
1993-08-13 01:08:54 +00:00
|
|
|
|
1997-09-25 00:53:39 +00:00
|
|
|
(defcustom save-place-version-control nil
|
2008-12-03 05:48:14 +00: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)
|
1997-09-25 00:53:39 +00:00
|
|
|
(const :tag "Use value of `version-control'" nospecial))
|
1997-04-15 20:33:18 +00:00
|
|
|
:group 'save-place)
|
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-27 00:52:47 +00: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-27 00:52:47 +00:00
|
|
|
:version "24.1" ; nil -> 400
|
1997-04-15 20:33:18 +00:00
|
|
|
:type '(choice (integer :tag "Entries" :value 1)
|
|
|
|
(const :tag "No Limit" nil))
|
|
|
|
:group 'save-place)
|
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 00:35:08 +00: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'."
|
|
|
|
:type 'boolean :group 'save-place)
|
|
|
|
|
|
|
|
(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."
|
|
|
|
:type 'boolean :group 'save-place)
|
|
|
|
|
|
|
|
(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."
|
|
|
|
:type 'regexp :group 'save-place)
|
|
|
|
|
2012-02-17 20:19:30 +00:00
|
|
|
(defcustom save-place-ignore-files-regexp
|
|
|
|
"\\(?:COMMIT_EDITMSG\\|hg-editor-[[:alnum:]]+\\.txt\\|svn-commit\\.tmp\\|bzr_log\\.[[:alnum:]]+\\)$"
|
2012-03-04 16:56:21 +00:00
|
|
|
"Regexp matching files for which no position should be recorded.
|
2012-02-17 20:19:30 +00:00
|
|
|
Useful for temporary file such as commit message files that are
|
2012-03-04 16:56:21 +00:00
|
|
|
automatically created by the VCS. If set to nil, this feature is
|
|
|
|
disabled, i.e., the position is recorded for all files."
|
2012-02-18 19:04:28 +00:00
|
|
|
:version "24.1"
|
2012-02-17 20:19:30 +00:00
|
|
|
:type 'regexp :group 'save-place)
|
|
|
|
|
1993-08-13 01:08:54 +00:00
|
|
|
(defun toggle-save-place (&optional parg)
|
|
|
|
"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.
|
|
|
|
|
|
|
|
If called with a prefix arg, the mode is enabled if and only if
|
|
|
|
the argument is positive.
|
|
|
|
|
2012-09-17 05:41:04 +00:00
|
|
|
To save places automatically in all files, put this in your init
|
|
|
|
file:
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2014-02-21 00:35:08 +00:00
|
|
|
\(setq-default save-place t)"
|
1993-08-13 01:08:54 +00:00
|
|
|
(interactive "P")
|
2014-01-20 08:52:44 +00:00
|
|
|
(if (not (or buffer-file-name (and (derived-mode-p 'dired-mode)
|
|
|
|
dired-directory)))
|
2013-12-20 20:20:39 +00:00
|
|
|
(message "Buffer `%s' not visiting a file or directory" (buffer-name))
|
2014-02-28 06:44:49 +00:00
|
|
|
(setq save-place (if parg
|
|
|
|
(> (prefix-numeric-value parg) 0)
|
|
|
|
(not save-place)))
|
|
|
|
(message (if save-place
|
|
|
|
"Place will be saved"
|
|
|
|
"No place will be saved in this file"))))
|
1993-08-13 01:08:54 +00:00
|
|
|
|
2013-12-20 20:20:39 +00: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 ()
|
|
|
|
;; put filename and point in a cons box and then cons that onto the
|
|
|
|
;; front of the save-place-alist, if save-place is non-nil.
|
|
|
|
;; Otherwise, just delete that file from the alist.
|
|
|
|
;; first check to make sure alist has been loaded in from the master
|
|
|
|
;; file. If not, do so, then feel free to modify the alist. It
|
|
|
|
;; will be saved again when Emacs is killed.
|
|
|
|
(or save-place-loaded (load-save-place-alist-from-file))
|
2013-06-14 09:32:01 +00:00
|
|
|
(let ((item (or buffer-file-name
|
2014-01-20 08:52:44 +00:00
|
|
|
(and (derived-mode-p 'dired-mode)
|
|
|
|
dired-directory
|
|
|
|
(expand-file-name (if (consp dired-directory)
|
|
|
|
(car dired-directory)
|
|
|
|
dired-directory))))))
|
2013-06-14 09:32:01 +00:00
|
|
|
(when (and item
|
|
|
|
(or (not save-place-ignore-files-regexp)
|
|
|
|
(not (string-match save-place-ignore-files-regexp
|
|
|
|
item))))
|
|
|
|
(let ((cell (assoc item save-place-alist))
|
2013-12-20 20:20:39 +00:00
|
|
|
(position (cond ((eq major-mode 'hexl-mode)
|
|
|
|
(with-no-warnings
|
|
|
|
(1+ (hexl-current-address))))
|
2014-01-20 08:52:44 +00:00
|
|
|
((and (derived-mode-p 'dired-mode)
|
|
|
|
dired-directory)
|
2013-12-20 20:20:39 +00:00
|
|
|
(let ((filename (dired-get-filename nil t)))
|
|
|
|
(if filename
|
|
|
|
`((dired-filename . ,filename))
|
|
|
|
(point))))
|
|
|
|
(t (point)))))
|
2013-06-14 09:32:01 +00:00
|
|
|
(if cell
|
|
|
|
(setq save-place-alist (delq cell save-place-alist)))
|
|
|
|
(if (and save-place
|
2013-12-20 20:20:39 +00:00
|
|
|
(not (and (integerp position)
|
|
|
|
(= position 1)))) ;; Optimize out the degenerate case.
|
2013-06-14 09:32:01 +00: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 00:35:08 +00: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))
|
2007-12-02 21:24:38 +00:00
|
|
|
(insert (format ";;; -*- coding: %s -*-\n"
|
|
|
|
(symbol-name coding-system-for-write)))
|
2004-06-08 00:36:04 +00:00
|
|
|
(let ((print-length nil)
|
|
|
|
(print-level nil))
|
2013-03-13 18:54:05 +00: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 load-save-place-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)
|
* 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
|
|
|
;; don't want to use find-file because we have been
|
|
|
|
;; adding hooks to it.
|
|
|
|
(with-current-buffer (get-buffer-create " *Saved Places*")
|
1993-08-13 01:08:54 +00:00
|
|
|
(delete-region (point-min) (point-max))
|
|
|
|
(insert-file-contents file)
|
|
|
|
(goto-char (point-min))
|
2003-02-04 12:29:42 +00:00
|
|
|
(setq save-place-alist
|
2013-09-12 05:32:57 +00:00
|
|
|
(with-demoted-errors "Error reading save-place-file: %S"
|
2013-09-08 23:15:17 +00:00
|
|
|
(car (read-from-string
|
2013-09-12 05:32:57 +00:00
|
|
|
(buffer-substring (point-min) (point-max))))))
|
1995-11-30 00:51:26 +00:00
|
|
|
|
|
|
|
;; 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))))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
2007-12-03 21:37:30 +00:00
|
|
|
(kill-buffer (current-buffer))))
|
1993-08-13 01:08:54 +00:00
|
|
|
nil))))
|
|
|
|
|
|
|
|
(defun save-places-to-alist ()
|
|
|
|
;; go through buffer-list, saving places to alist if save-place is
|
|
|
|
;; non-nil, deleting them from alist if it is nil.
|
|
|
|
(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.
|
2014-01-20 08:52:44 +00:00
|
|
|
(and (or buffer-file-name (and (derived-mode-p 'dired-mode)
|
|
|
|
dired-directory))
|
2013-12-20 20:20:39 +00:00
|
|
|
(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
|
|
|
|
|
|
|
(defun save-place-find-file-hook ()
|
|
|
|
(or save-place-loaded (load-save-place-alist-from-file))
|
|
|
|
(let ((cell (assoc buffer-file-name save-place-alist)))
|
|
|
|
(if cell
|
1996-05-08 20:37:19 +00:00
|
|
|
(progn
|
2011-04-06 19:38:46 +00:00
|
|
|
(or revert-buffer-in-progress-p
|
2013-12-20 20:20:39 +00: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
|
|
|
|
(setq save-place t)))))
|
|
|
|
|
2013-12-20 20:20:39 +00:00
|
|
|
(declare-function dired-goto-file "dired" (file))
|
|
|
|
|
2013-06-14 09:32:01 +00:00
|
|
|
(defun save-place-dired-hook ()
|
2014-02-21 00:35:08 +00:00
|
|
|
"Position the point in a Dired buffer."
|
2013-06-14 09:32:01 +00:00
|
|
|
(or save-place-loaded (load-save-place-alist-from-file))
|
2014-01-20 08:52:44 +00:00
|
|
|
(let ((cell (assoc (and (derived-mode-p 'dired-mode)
|
|
|
|
dired-directory
|
|
|
|
(expand-file-name (if (consp dired-directory)
|
|
|
|
(car dired-directory)
|
|
|
|
dired-directory)))
|
2013-12-20 20:20:39 +00:00
|
|
|
save-place-alist)))
|
2013-06-14 09:32:01 +00:00
|
|
|
(if cell
|
|
|
|
(progn
|
|
|
|
(or revert-buffer-in-progress-p
|
2013-12-20 20:20:39 +00:00
|
|
|
(if (integerp (cdr cell))
|
|
|
|
(goto-char (cdr cell))
|
|
|
|
(and (assq 'dired-filename (cdr cell))
|
|
|
|
(dired-goto-file (cdr (assq 'dired-filename (cdr cell)))))))
|
2013-06-14 09:32:01 +00:00
|
|
|
;; and make sure it will be saved again for later
|
|
|
|
(setq save-place t)))))
|
|
|
|
|
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
|
|
|
|
2002-08-15 00:48:20 +00:00
|
|
|
(add-hook 'find-file-hook 'save-place-find-file-hook t)
|
1994-04-06 05:04:40 +00:00
|
|
|
|
2013-12-20 20:20:39 +00:00
|
|
|
(add-hook 'dired-initial-position-hook 'save-place-dired-hook)
|
|
|
|
|
2011-03-06 00:30:16 +00:00
|
|
|
(unless noninteractive
|
|
|
|
(add-hook 'kill-emacs-hook 'save-place-kill-emacs-hook))
|
1993-08-13 01:08:54 +00:00
|
|
|
|
|
|
|
(add-hook 'kill-buffer-hook 'save-place-to-alist)
|
|
|
|
|
|
|
|
(provide 'saveplace) ; why not...
|
|
|
|
|
|
|
|
;;; saveplace.el ends here
|