Comment.
[emacs.git] / lisp / bookmark.el
blob46e3841f3374a3a73060f15e3820552cf955a342
1 ;;; bookmark.el --- set bookmarks, maybe annotate them, jump to them later
3 ;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Karl Fogel <kfogel@red-bean.com>
7 ;; Maintainer: Karl Fogel <kfogel@red-bean.com>
8 ;; Created: July, 1993
9 ;; Keywords: bookmarks, placeholders, annotations
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; This package is for setting "bookmarks" in files. A bookmark
31 ;; associates a string with a location in a certain file. Thus, you
32 ;; can navigate your way to that location by providing the string.
33 ;; See the "User Variables" section for customizations.
35 ;; Thanks to David Bremner <bremner@cs.sfu.ca> for thinking of and
36 ;; then implementing the bookmark-current-bookmark idea. He even
37 ;; sent *patches*, bless his soul...
39 ;; Thanks to Gregory M. Saunders <saunders@cis.ohio-state.edu> for
40 ;; fixing and improving bookmark-time-to-save-p.
42 ;; Thanks go to Andrew V. Klein <avk@cig.mot.com> for the code that
43 ;; sorts the alist before presenting it to the user (in bookmark-bmenu-list
44 ;; and the menu-bar).
46 ;; And much thanks to David Hughes <djh@harston.cv.com> for many small
47 ;; suggestions and the code to implement them (like
48 ;; bookmark-bmenu-check-position, and some of the Lucid compatibility
49 ;; stuff).
51 ;; Kudos (whatever they are) go to Jim Blandy <jimb@red-bean.com>
52 ;; for his eminently sensible suggestion to separate bookmark-jump
53 ;; into bookmark-jump and bookmark-jump-noselect, which made many
54 ;; other things cleaner as well.
56 ;; Thanks to Roland McGrath for encouragement and help with defining
57 ;; autoloads on the menu-bar.
59 ;; Jonathan Stigelman <stig@hackvan.com> gave patches for default
60 ;; values in bookmark-jump and bookmark-set. Everybody please keep
61 ;; all the keystrokes they save thereby and send them to him at the
62 ;; end of each year :-) (No, seriously, thanks Jonathan!)
64 ;; Buckets of gratitude to John Grabowski <johng@media.mit.edu> for
65 ;; thinking up the annotations feature and implementing it so well.
67 ;; Based on info-bookmark.el, by Karl Fogel and Ken Olstad
68 ;; <olstad@msc.edu>.
70 ;; Thanks to Mikio Nakajima <PBC01764@niftyserve.or.jp> for many bugs
71 ;; reported and fixed.
73 ;; Thank you, Michael Kifer, for contributing the XEmacs support.
75 ;; Enough with the credits already, get on to the good stuff:
77 ;; FAVORITE CHINESE RESTAURANT:
78 ;; Boy, that's a tough one. Probably Hong Min, or maybe Emperor's
79 ;; Choice (both in Chicago's Chinatown). Well, both. How about you?
81 ;;; Code:
83 (require 'pp)
85 ;;; Misc comments:
87 ;; If variable bookmark-use-annotations is non-nil, an annotation is
88 ;; queried for when setting a bookmark.
90 ;; The bookmark list is sorted lexically by default, but you can turn
91 ;; this off by setting bookmark-sort-flag to nil. If it is nil, then
92 ;; the list will be presented in the order it is recorded
93 ;; (chronologically), which is actually fairly useful as well.
95 ;;; User Variables
97 (defgroup bookmark nil
98 "Setting, annotation and jumping to bookmarks."
99 :group 'matching)
102 (defcustom bookmark-use-annotations nil
103 "*If non-nil, saving a bookmark queries for an annotation in a buffer."
104 :type 'boolean
105 :group 'bookmark)
108 (defcustom bookmark-save-flag t
109 "*Controls when Emacs saves bookmarks to a file.
110 --> nil means never save bookmarks, except when `bookmark-save' is
111 explicitly called \(\\[bookmark-save]\).
112 --> t means save bookmarks when Emacs is killed.
113 --> Otherwise, it should be a number that is the frequency with which
114 the bookmark list is saved \(i.e.: the number of times which
115 Emacs' bookmark list may be modified before it is automatically
116 saved.\). If it is a number, Emacs will also automatically save
117 bookmarks when it is killed.
119 Therefore, the way to get it to save every time you make or delete a
120 bookmark is to set this variable to 1 \(or 0, which produces the same
121 behavior.\)
123 To specify the file in which to save them, modify the variable
124 `bookmark-default-file', which is `~/.emacs.bmk' by default."
125 :type '(choice (const nil) integer (other t))
126 :group 'bookmark)
129 (defconst bookmark-old-default-file "~/.emacs-bkmrks"
130 "*The `.emacs.bmk' file used to be called this name.")
133 ;; defvarred to avoid a compilation warning:
134 (defvar bookmark-file nil
135 "Old name for `bookmark-default-file'.")
137 (defcustom bookmark-default-file
138 (if bookmark-file
139 ;; In case user set `bookmark-file' in her .emacs:
140 bookmark-file
141 (convert-standard-filename "~/.emacs.bmk"))
142 "*File in which to save bookmarks by default."
143 :type 'file
144 :group 'bookmark)
147 (defcustom bookmark-version-control 'nospecial
148 "*Whether or not to make numbered backups of the bookmark file.
149 It can have four values: t, nil, `never', and `nospecial'.
150 The first three have the same meaning that they do for the
151 variable `version-control', and the final value `nospecial' means just
152 use the value of `version-control'."
153 :type '(choice (const nil) (const never) (const nospecial)
154 (other t))
155 :group 'bookmark)
158 (defcustom bookmark-completion-ignore-case t
159 "*Non-nil means bookmark functions ignore case in completion."
160 :type 'boolean
161 :group 'bookmark)
164 (defcustom bookmark-sort-flag t
165 "*Non-nil means that bookmarks will be displayed sorted by bookmark name.
166 Otherwise they will be displayed in LIFO order (that is, most
167 recently set ones come first, oldest ones come last)."
168 :type 'boolean
169 :group 'bookmark)
172 (defcustom bookmark-automatically-show-annotations t
173 "*Non-nil means show annotations when jumping to a bookmark."
174 :type 'boolean
175 :group 'bookmark)
178 (defcustom bookmark-bmenu-file-column 30
179 "*Column at which to display filenames in a buffer listing bookmarks.
180 You can toggle whether files are shown with \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-toggle-filenames]."
181 :type 'integer
182 :group 'bookmark)
185 (defcustom bookmark-bmenu-toggle-filenames t
186 "*Non-nil means show filenames when listing bookmarks.
187 This may result in truncated bookmark names. To disable this, put the
188 following in your `.emacs' file:
190 \(setq bookmark-bmenu-toggle-filenames nil\)"
191 :type 'boolean
192 :group 'bookmark)
195 (defcustom bookmark-menu-length 70
196 "*Maximum length of a bookmark name displayed on a popup menu."
197 :type 'integer
198 :group 'bookmark)
201 (defface bookmark-menu-heading
202 '((t (:inherit font-lock-type-face)))
203 "Face used to highlight the heading in bookmark menu buffers."
204 :group 'bookmark
205 :version "22.1")
208 ;;; No user-serviceable parts beyond this point.
210 ;; Added for lucid emacs compatibility, db
211 (or (fboundp 'defalias) (fset 'defalias 'fset))
213 ;; suggested for lucid compatibility by david hughes:
214 (or (fboundp 'frame-height) (defalias 'frame-height 'screen-height))
217 ;;; Keymap stuff:
219 ;; Set up these bindings dumping time *only*;
220 ;; if the user alters them, don't override the user when loading bookmark.el.
222 ;;;###autoload (define-key ctl-x-map "rb" 'bookmark-jump)
223 ;;;###autoload (define-key ctl-x-map "rm" 'bookmark-set)
224 ;;;###autoload (define-key ctl-x-map "rl" 'bookmark-bmenu-list)
226 ;;;###autoload
227 (defvar bookmark-map
228 (let ((map (make-sparse-keymap)))
229 ;; Read the help on all of these functions for details...
230 (define-key map "x" 'bookmark-set)
231 (define-key map "m" 'bookmark-set) ;"m"ark
232 (define-key map "j" 'bookmark-jump)
233 (define-key map "g" 'bookmark-jump) ;"g"o
234 (define-key map "o" 'bookmark-jump-other-window)
235 (define-key map "i" 'bookmark-insert)
236 (define-key map "e" 'edit-bookmarks)
237 (define-key map "f" 'bookmark-insert-location) ;"f"ind
238 (define-key map "r" 'bookmark-rename)
239 (define-key map "d" 'bookmark-delete)
240 (define-key map "l" 'bookmark-load)
241 (define-key map "w" 'bookmark-write)
242 (define-key map "s" 'bookmark-save)
243 map)
244 "Keymap containing bindings to bookmark functions.
245 It is not bound to any key by default: to bind it
246 so that you have a bookmark prefix, just use `global-set-key' and bind a
247 key of your choice to `bookmark-map'. All interactive bookmark
248 functions have a binding in this keymap.")
250 ;;;###autoload (fset 'bookmark-map bookmark-map)
252 ;;; The annotation maps.
253 (defvar bookmark-read-annotation-mode-map
254 (let ((map (make-sparse-keymap)))
255 (set-keymap-parent map text-mode-map)
256 (define-key map "\C-c\C-c" 'bookmark-send-annotation)
257 map)
258 "Keymap for composing an annotation for a bookmark.")
261 ;;; Core variables and data structures:
262 (defvar bookmark-alist ()
263 "Association list of bookmarks and their records.
264 You probably don't want to change the value of this alist yourself;
265 instead, let the various bookmark functions do it for you.
267 The format of the alist is
269 \(BOOKMARK1 BOOKMARK2 ...\)
271 where each BOOKMARK is typically of the form
273 \(NAME
274 \(filename . FILE\)
275 \(front-context-string . FRONT-STR\)
276 \(rear-context-string . REAR-STR\)
277 \(position . POS\)
278 \(annotation . ANNOTATION\)\)
280 So the cdr of each bookmark is an alist too.")
283 (defvar bookmarks-already-loaded nil)
286 ;; more stuff added by db.
288 (defvar bookmark-current-bookmark nil
289 "Name of bookmark most recently used in the current file.
290 It is buffer local, used to make moving a bookmark forward
291 through a file easier.")
293 (make-variable-buffer-local 'bookmark-current-bookmark)
296 (defvar bookmark-alist-modification-count 0
297 "Number of modifications to bookmark list since it was last saved.")
300 (defvar bookmark-search-size 16
301 "Length of the context strings recorded on either side of a bookmark.")
304 (defvar bookmark-current-point 0)
305 (defvar bookmark-yank-point 0)
306 (defvar bookmark-current-buffer nil)
308 (defvar Info-current-node)
309 (defvar Info-suffix-list)
311 ;; Helper functions.
313 ;; Only functions on this page and the next one (file formats) need to
314 ;; know anything about the format of bookmark-alist entries.
315 ;; Everyone else should go through them.
318 (defun bookmark-name-from-full-record (full-record)
319 "Return name of FULL-RECORD \(an alist element instead of a string\)."
320 (car full-record))
323 (defun bookmark-all-names ()
324 "Return a list of all current bookmark names."
325 (bookmark-maybe-load-default-file)
326 (mapcar
327 (lambda (full-record)
328 (bookmark-name-from-full-record full-record))
329 bookmark-alist))
332 (defun bookmark-get-bookmark (bookmark)
333 "Return the full entry for BOOKMARK in `bookmark-alist'.
334 If BOOKMARK is not a string, return nil."
335 (when (stringp bookmark)
336 (assoc-string bookmark bookmark-alist bookmark-completion-ignore-case)))
339 (defun bookmark-get-bookmark-record (bookmark)
340 "Return the guts of the entry for BOOKMARK in `bookmark-alist'.
341 That is, all information but the name."
342 (car (cdr (bookmark-get-bookmark bookmark))))
345 (defun bookmark-set-name (bookmark newname)
346 "Set BOOKMARK's name to NEWNAME."
347 (setcar
348 (if (stringp bookmark) (bookmark-get-bookmark bookmark) bookmark)
349 newname))
352 (defun bookmark-get-annotation (bookmark)
353 "Return the annotation of BOOKMARK, or nil if none."
354 (cdr (assq 'annotation (bookmark-get-bookmark-record bookmark))))
357 (defun bookmark-set-annotation (bookmark ann)
358 "Set the annotation of BOOKMARK to ANN."
359 (let ((cell (assq 'annotation (bookmark-get-bookmark-record bookmark))))
360 (if cell
361 (setcdr cell ann)
362 (nconc (bookmark-get-bookmark-record bookmark)
363 (list (cons 'annotation ann))))))
366 (defun bookmark-get-filename (bookmark)
367 "Return the full filename of BOOKMARK."
368 (cdr (assq 'filename (bookmark-get-bookmark-record bookmark))))
371 (defun bookmark-set-filename (bookmark filename)
372 "Set the full filename of BOOKMARK to FILENAME."
373 (let ((cell (assq 'filename (bookmark-get-bookmark-record bookmark))))
374 (if cell
375 (setcdr cell filename)
376 (nconc (bookmark-get-bookmark-record bookmark)
377 (list (cons 'filename filename))))
378 (setq bookmark-alist-modification-count
379 (1+ bookmark-alist-modification-count))
380 (if (bookmark-time-to-save-p)
381 (bookmark-save))))
384 (defun bookmark-get-position (bookmark)
385 "Return the position \(i.e.: point\) of BOOKMARK."
386 (cdr (assq 'position (bookmark-get-bookmark-record bookmark))))
389 (defun bookmark-set-position (bookmark position)
390 "Set the position \(i.e.: point\) of BOOKMARK to POSITION."
391 (let ((cell (assq 'position (bookmark-get-bookmark-record bookmark))))
392 (if cell
393 (setcdr cell position)
394 (nconc (bookmark-get-bookmark-record bookmark)
395 (list (cons 'position position))))))
398 (defun bookmark-get-front-context-string (bookmark)
399 "Return the front-context-string of BOOKMARK."
400 (cdr (assq 'front-context-string (bookmark-get-bookmark-record bookmark))))
403 (defun bookmark-set-front-context-string (bookmark string)
404 "Set the front-context-string of BOOKMARK to STRING."
405 (let ((cell (assq 'front-context-string
406 (bookmark-get-bookmark-record bookmark))))
407 (if cell
408 (setcdr cell string)
409 (nconc (bookmark-get-bookmark-record bookmark)
410 (list (cons 'front-context-string string))))))
413 (defun bookmark-get-rear-context-string (bookmark)
414 "Return the rear-context-string of BOOKMARK."
415 (cdr (assq 'rear-context-string (bookmark-get-bookmark-record bookmark))))
418 (defun bookmark-set-rear-context-string (bookmark string)
419 "Set the rear-context-string of BOOKMARK to STRING."
420 (let ((cell (assq 'rear-context-string
421 (bookmark-get-bookmark-record bookmark))))
422 (if cell
423 (setcdr cell string)
424 (nconc (bookmark-get-bookmark-record bookmark)
425 (list (cons 'rear-context-string string))))))
428 (defun bookmark-get-handler (bookmark)
429 (cdr (assq 'handler (bookmark-get-bookmark-record bookmark))))
431 (defvar bookmark-history nil
432 "The history list for bookmark functions.")
435 (defun bookmark-completing-read (prompt &optional default)
436 "Prompting with PROMPT, read a bookmark name in completion.
437 PROMPT will get a \": \" stuck on the end no matter what, so you
438 probably don't want to include one yourself.
439 Optional second arg DEFAULT is a string to return if the user enters
440 the empty string."
441 (bookmark-maybe-load-default-file) ; paranoia
442 (if (listp last-nonmenu-event)
443 (bookmark-menu-popup-paned-menu t prompt (bookmark-all-names))
444 (let* ((completion-ignore-case bookmark-completion-ignore-case)
445 (default default)
446 (prompt (if default
447 (concat prompt (format " (%s): " default))
448 (concat prompt ": ")))
449 (str
450 (completing-read prompt
451 bookmark-alist
455 'bookmark-history)))
456 (if (string-equal "" str) default str))))
459 (defmacro bookmark-maybe-historicize-string (string)
460 "Put STRING into the bookmark prompt history, if caller non-interactive.
461 We need this because sometimes bookmark functions are invoked from
462 menus, so `completing-read' never gets a chance to set `bookmark-history'."
463 `(or
464 (interactive-p)
465 (setq bookmark-history (cons ,string bookmark-history))))
467 (defvar bookmark-make-name-function nil
468 "A function that should be called to return the name of the bookmark.
469 When called with an argument, the function should return a file
470 name -- or whatever is required to jump to the location. Modes
471 may set this variable buffer-locally to enable a default name to
472 be proposed when calling `bookmark-set'.")
474 (defvar bookmark-make-record-function 'bookmark-make-record-for-text-file
475 "A function that should be called to create a bookmark record.
476 Modes may set this variable buffer-locally to enable bookmarking of
477 locations that should be treated specially, such as Info nodes,
478 news posts, images, pdf documents, etc.
480 The function will be called with one argument: ANNOTATION.
481 See `bookmark-make-record-for-text-file' for a description.
483 The returned record may contain a special cons (handler . SOME-FUNCTION)
484 which sets the handler function that should be used to open this
485 bookmark instead of `bookmark-default-handler'. The handler should
486 return an alist like the one that function returns, and (of course)
487 should likewise not select the buffer.")
489 (defun bookmark-make (name &optional annotation overwrite)
490 "Make a bookmark named NAME.
491 Optional second arg ANNOTATION gives it an annotation.
492 Optional third arg OVERWRITE means replace any existing bookmarks with
493 this name."
494 (bookmark-maybe-load-default-file)
495 (let ((stripped-name (copy-sequence name)))
496 (or (featurep 'xemacs)
497 ;; XEmacs's `set-text-properties' doesn't work on
498 ;; free-standing strings, apparently.
499 (set-text-properties 0 (length stripped-name) nil stripped-name))
500 (if (and (bookmark-get-bookmark stripped-name) (not overwrite))
501 ;; already existing bookmark under that name and
502 ;; no prefix arg means just overwrite old bookmark
503 (setcdr (bookmark-get-bookmark stripped-name)
504 (list (funcall bookmark-make-record-function annotation)))
506 ;; otherwise just cons it onto the front (either the bookmark
507 ;; doesn't exist already, or there is no prefix arg. In either
508 ;; case, we want the new bookmark consed onto the alist...)
510 (setq bookmark-alist
511 (cons
512 (list stripped-name
513 (funcall bookmark-make-record-function annotation))
514 bookmark-alist)))
516 ;; Added by db
517 (setq bookmark-current-bookmark stripped-name)
518 (setq bookmark-alist-modification-count
519 (1+ bookmark-alist-modification-count))
520 (if (bookmark-time-to-save-p)
521 (bookmark-save))))
524 (defun bookmark-make-record-for-text-file (annotation)
525 "Return the record part of a new bookmark, given ANNOTATION.
526 Must be at the correct position in the buffer in which the bookmark is
527 being set (this might change someday)."
528 (let ((the-record
529 `((filename . ,(bookmark-buffer-file-name))
530 (front-context-string
531 . ,(if (>= (- (point-max) (point)) bookmark-search-size)
532 (buffer-substring-no-properties
533 (point)
534 (+ (point) bookmark-search-size))
535 nil))
536 (rear-context-string
537 . ,(if (>= (- (point) (point-min)) bookmark-search-size)
538 (buffer-substring-no-properties
539 (point)
540 (- (point) bookmark-search-size))
541 nil))
542 (position . ,(point)))))
544 ;; Now fill in the optional parts:
546 ;; Take no chances with text properties
547 (set-text-properties 0 (length annotation) nil annotation)
549 (if annotation
550 (nconc the-record (list (cons 'annotation annotation))))
552 ;; Finally, return the completed record.
553 the-record))
557 ;;; File format stuff
559 ;; The OLD format of the bookmark-alist was:
561 ;; ((bookmark-name (filename
562 ;; string-in-front
563 ;; string-behind
564 ;; point))
565 ;; ...)
567 ;; The NEW format of the bookmark-alist is:
569 ;; ((bookmark-name ((filename . FILENAME)
570 ;; (front-context-string . string-in-front)
571 ;; (rear-context-string . string-behind)
572 ;; (position . POINT)
573 ;; (annotation . annotation)
574 ;; (whatever . VALUE)
575 ;; ...
576 ;; ))
577 ;; ...)
580 ;; I switched to using an internal as well as external alist because I
581 ;; felt that would be a more flexible framework in which to add
582 ;; features. It means that the order in which values appear doesn't
583 ;; matter, and it means that arbitrary values can be added without
584 ;; risk of interfering with existing ones.
586 ;; BOOKMARK-NAME is the string the user gives the bookmark and
587 ;; accesses it by from then on.
589 ;; FILENAME is the location of the file in which the bookmark is set.
591 ;; STRING-IN-FRONT is a string of `bookmark-search-size' chars of
592 ;; context in front of the point at which the bookmark is set.
594 ;; STRING-BEHIND is the same thing, but after the point.
596 ;; The context strings exist so that modifications to a file don't
597 ;; necessarily cause a bookmark's position to be invalidated.
598 ;; bookmark-jump will search for STRING-BEHIND and STRING-IN-FRONT in
599 ;; case the file has changed since the bookmark was set. It will
600 ;; attempt to place the user before the changes, if there were any.
601 ;; ANNOTATION is the annotation for the bookmark; it may not exist
602 ;; (for backward compatibility), be nil (no annotation), or be a
603 ;; string.
606 (defconst bookmark-file-format-version 1
607 "The current version of the format used by bookmark files.
608 You should never need to change this.")
611 (defconst bookmark-end-of-version-stamp-marker
612 "-*- End Of Bookmark File Format Version Stamp -*-\n"
613 "This string marks the end of the version stamp in a bookmark file.")
616 (defun bookmark-alist-from-buffer ()
617 "Return a `bookmark-alist' (in any format) from the current buffer.
618 The buffer must of course contain bookmark format information.
619 Does not care from where in the buffer it is called, and does not
620 affect point."
621 (save-excursion
622 (goto-char (point-min))
623 (if (search-forward bookmark-end-of-version-stamp-marker nil t)
624 (read (current-buffer))
625 ;; Else we're dealing with format version 0
626 (if (search-forward "(" nil t)
627 (progn
628 (forward-char -1)
629 (read (current-buffer)))
630 ;; Else no hope of getting information here.
631 (error "Not bookmark format")))))
634 (defun bookmark-upgrade-version-0-alist (old-list)
635 "Upgrade a version 0 alist OLD-LIST to the current version."
636 (mapcar
637 (lambda (bookmark)
638 (let* ((name (car bookmark))
639 (record (car (cdr bookmark)))
640 (filename (nth 0 record))
641 (front-str (nth 1 record))
642 (rear-str (nth 2 record))
643 (position (nth 3 record))
644 (ann (nth 4 record)))
645 (list
646 name
647 `((filename . ,filename)
648 (front-context-string . ,(or front-str ""))
649 (rear-context-string . ,(or rear-str ""))
650 (position . ,position)
651 (annotation . ,ann)))))
652 old-list))
655 (defun bookmark-upgrade-file-format-from-0 ()
656 "Upgrade a bookmark file of format 0 (the original format) to format 1.
657 This expects to be called from `point-min' in a bookmark file."
658 (message "Upgrading bookmark format from 0 to %d..."
659 bookmark-file-format-version)
660 (let* ((old-list (bookmark-alist-from-buffer))
661 (new-list (bookmark-upgrade-version-0-alist old-list)))
662 (delete-region (point-min) (point-max))
663 (bookmark-insert-file-format-version-stamp)
664 (pp new-list (current-buffer))
665 (save-buffer))
666 (goto-char (point-min))
667 (message "Upgrading bookmark format from 0 to %d...done"
668 bookmark-file-format-version)
672 (defun bookmark-grok-file-format-version ()
673 "Return an integer which is the file-format version of this bookmark file.
674 This expects to be called from `point-min' in a bookmark file."
675 (if (looking-at "^;;;;")
676 (save-excursion
677 (save-match-data
678 (re-search-forward "[0-9]")
679 (forward-char -1)
680 (read (current-buffer))))
681 ;; Else this is format version 0, the original one, which didn't
682 ;; even have version stamps.
686 (defun bookmark-maybe-upgrade-file-format ()
687 "Check the file-format version of this bookmark file.
688 If the version is not up-to-date, upgrade it automatically.
689 This expects to be called from `point-min' in a bookmark file."
690 (let ((version (bookmark-grok-file-format-version)))
691 (cond
692 ((= version bookmark-file-format-version)
693 ) ; home free -- version is current
694 ((= version 0)
695 (bookmark-upgrade-file-format-from-0))
697 (error "Bookmark file format version strangeness")))))
700 (defun bookmark-insert-file-format-version-stamp ()
701 "Insert text indicating current version of bookmark file format."
702 (insert
703 (format ";;;; Emacs Bookmark Format Version %d ;;;;\n"
704 bookmark-file-format-version))
705 (insert ";;; This format is meant to be slightly human-readable;\n"
706 ";;; nevertheless, you probably don't want to edit it.\n"
707 ";;; "
708 bookmark-end-of-version-stamp-marker))
711 ;;; end file-format stuff
714 ;;; Generic helpers.
716 (defun bookmark-maybe-message (fmt &rest args)
717 "Apply `message' to FMT and ARGS, but only if the display is fast enough."
718 (if (>= baud-rate 9600)
719 (apply 'message fmt args)))
722 ;;; Core code:
724 ;;;###autoload
725 (defun bookmark-set (&optional name parg)
726 "Set a bookmark named NAME inside a file.
727 If name is nil, then the user will be prompted.
728 With prefix arg, will not overwrite a bookmark that has the same name
729 as NAME if such a bookmark already exists, but instead will \"push\"
730 the new bookmark onto the bookmark alist. Thus the most recently set
731 bookmark with name NAME would be the one in effect at any given time,
732 but the others are still there, should you decide to delete the most
733 recent one.
735 To yank words from the text of the buffer and use them as part of the
736 bookmark name, type C-w while setting a bookmark. Successive C-w's
737 yank successive words.
739 Typing C-u inserts the name of the last bookmark used in the buffer
740 \(as an aid in using a single bookmark name to track your progress
741 through a large file\). If no bookmark was used, then C-u inserts the
742 name of the file being visited.
744 Use \\[bookmark-delete] to remove bookmarks \(you give it a name,
745 and it removes only the first instance of a bookmark with that name from
746 the list of bookmarks.\)"
747 (interactive (list nil current-prefix-arg))
749 (bookmark-buffer-file-name)
750 (error "Buffer not visiting a file or directory"))
752 (bookmark-maybe-load-default-file)
754 (setq bookmark-current-point (point))
755 (setq bookmark-yank-point (point))
756 (setq bookmark-current-buffer (current-buffer))
758 (let* ((default (or bookmark-current-bookmark
759 (bookmark-buffer-name)))
760 (str
761 (or name
762 (read-from-minibuffer
763 (format "Set bookmark (%s): " default)
765 (let ((now-map (copy-keymap minibuffer-local-map)))
766 (define-key now-map "\C-w" 'bookmark-yank-word)
767 (define-key now-map "\C-u" 'bookmark-insert-current-bookmark)
768 now-map))))
769 (annotation nil))
770 (and (string-equal str "") (setq str default))
771 ;; Ask for an annotation buffer for this bookmark
772 (if bookmark-use-annotations
773 (bookmark-read-annotation parg str)
774 (bookmark-make str annotation parg)
775 (setq bookmark-current-bookmark str)
776 (bookmark-bmenu-surreptitiously-rebuild-list)
777 (goto-char bookmark-current-point))))
780 (defun bookmark-kill-line (&optional newline-too)
781 "Kill from point to end of line.
782 If optional arg NEWLINE-TOO is non-nil, delete the newline too.
783 Does not affect the kill ring."
784 (let ((eol (save-excursion (end-of-line) (point))))
785 (delete-region (point) eol)
786 (if (and newline-too (looking-at "\n"))
787 (delete-char 1))))
790 ;; Defvars to avoid compilation warnings:
791 (defvar bookmark-annotation-paragraph nil)
792 (defvar bookmark-annotation-name nil)
793 (defvar bookmark-annotation-buffer nil)
794 (defvar bookmark-annotation-file nil)
795 (defvar bookmark-annotation-point nil)
798 (defun bookmark-send-annotation ()
799 "Use buffer contents as the annotation for a bookmark.
800 Exclude lines that begin with `#'.
801 Store the annotation text in the bookmark list with
802 the bookmark (and file, and point) specified in buffer local variables."
803 (interactive)
804 (if (not (eq major-mode 'bookmark-read-annotation-mode))
805 (error "Not in bookmark-read-annotation-mode"))
806 (goto-char (point-min))
807 (while (< (point) (point-max))
808 (if (looking-at "^#")
809 (bookmark-kill-line t)
810 (forward-line 1)))
811 (let ((annotation (buffer-string))
812 (parg bookmark-annotation-paragraph)
813 (bookmark bookmark-annotation-name)
814 (pt bookmark-annotation-point)
815 (buf bookmark-annotation-buffer))
816 ;; for bookmark-make-record-function to work, we need to be
817 ;; in the relevant buffer, at the relevant point.
818 ;; Actually, the bookmark-make-record-function spec should
819 ;; probably be changed to avoid this need. Should I handle the
820 ;; error if a buffer is killed between "C-x r m" and a "C-c C-c"
821 ;; in the annotation buffer?
822 (save-excursion
823 (pop-to-buffer buf)
824 (goto-char pt)
825 (bookmark-make bookmark annotation parg)
826 (setq bookmark-current-bookmark bookmark))
827 (bookmark-bmenu-surreptitiously-rebuild-list)
828 (goto-char bookmark-current-point))
829 (kill-buffer (current-buffer)))
832 (defun bookmark-default-annotation-text (bookmark)
833 (concat "# Type the annotation for bookmark '" bookmark "' here.\n"
834 "# All lines which start with a '#' will be deleted.\n"
835 "# Type C-c C-c when done.\n#\n"
836 "# Author: " (user-full-name) " <" (user-login-name) "@"
837 (system-name) ">\n"
838 "# Date: " (current-time-string) "\n"))
841 (defvar bookmark-read-annotation-text-func 'bookmark-default-annotation-text
842 "Function to return default text to use for a bookmark annotation.
843 It takes one argument, the name of the bookmark, as a string.")
845 (defun bookmark-read-annotation-mode (buf point parg bookmark)
846 "Mode for composing annotations for a bookmark.
847 Wants BUF, POINT, PARG, and BOOKMARK.
848 When you have finished composing, type \\[bookmark-send-annotation] to send
849 the annotation.
851 \\{bookmark-read-annotation-mode-map}"
852 (interactive)
853 (kill-all-local-variables)
854 (make-local-variable 'bookmark-annotation-paragraph)
855 (make-local-variable 'bookmark-annotation-name)
856 (make-local-variable 'bookmark-annotation-buffer)
857 (make-local-variable 'bookmark-annotation-file)
858 (make-local-variable 'bookmark-annotation-point)
859 (setq bookmark-annotation-paragraph parg)
860 (setq bookmark-annotation-name bookmark)
861 (setq bookmark-annotation-buffer buf)
862 (setq bookmark-annotation-file (buffer-file-name buf))
863 (setq bookmark-annotation-point point)
864 (use-local-map bookmark-read-annotation-mode-map)
865 (setq major-mode 'bookmark-read-annotation-mode)
866 (insert (funcall bookmark-read-annotation-text-func bookmark))
867 (run-mode-hooks 'text-mode-hook))
870 (defun bookmark-read-annotation (parg bookmark)
871 "Pop up a buffer for entering a bookmark annotation.
872 Text surrounding the bookmark is PARG; the bookmark name is BOOKMARK."
873 (let ((buf (current-buffer))
874 (point (point)))
875 (pop-to-buffer (generate-new-buffer-name "*Bookmark Annotation Compose*"))
876 (bookmark-read-annotation-mode buf point parg bookmark)))
879 (defvar bookmark-edit-annotation-mode-map (copy-keymap text-mode-map)
880 "Keymap for editing an annotation of a bookmark.")
883 (define-key bookmark-edit-annotation-mode-map "\C-c\C-c"
884 'bookmark-send-edited-annotation)
887 (defun bookmark-edit-annotation-mode (bookmark)
888 "Mode for editing the annotation of bookmark BOOKMARK.
889 When you have finished composing, type \\[bookmark-send-annotation].
891 \\{bookmark-edit-annotation-mode-map}"
892 (interactive)
893 (kill-all-local-variables)
894 (make-local-variable 'bookmark-annotation-name)
895 (setq bookmark-annotation-name bookmark)
896 (use-local-map bookmark-edit-annotation-mode-map)
897 (setq major-mode 'bookmark-edit-annotation-mode
898 mode-name "Edit Bookmark Annotation")
899 (insert (funcall bookmark-read-annotation-text-func bookmark))
900 (let ((annotation (bookmark-get-annotation bookmark)))
901 (if (and annotation (not (string-equal annotation "")))
902 (insert annotation)))
903 (run-mode-hooks 'text-mode-hook))
906 (defun bookmark-send-edited-annotation ()
907 "Use buffer contents as annotation for a bookmark.
908 Lines beginning with `#' are ignored."
909 (interactive)
910 (if (not (eq major-mode 'bookmark-edit-annotation-mode))
911 (error "Not in bookmark-edit-annotation-mode"))
912 (goto-char (point-min))
913 (while (< (point) (point-max))
914 (if (looking-at "^#")
915 (bookmark-kill-line t)
916 (forward-line 1)))
917 (let ((annotation (buffer-string))
918 (bookmark bookmark-annotation-name))
919 (bookmark-set-annotation bookmark annotation)
920 (bookmark-bmenu-surreptitiously-rebuild-list)
921 (goto-char bookmark-current-point))
922 (kill-buffer (current-buffer)))
925 (defun bookmark-edit-annotation (bookmark)
926 "Pop up a buffer for editing bookmark BOOKMARK's annotation."
927 (pop-to-buffer (generate-new-buffer-name "*Bookmark Annotation Compose*"))
928 (bookmark-edit-annotation-mode bookmark))
931 (defun bookmark-insert-current-bookmark ()
932 "Insert this buffer's value of `bookmark-current-bookmark'.
933 Default to file name if it's nil."
934 (interactive)
935 (let ((str
936 (save-excursion
937 (set-buffer bookmark-current-buffer)
938 bookmark-current-bookmark)))
939 (if str (insert str) (bookmark-insert-buffer-name))))
942 (defun bookmark-insert-buffer-name ()
943 "Insert the current file name into the bookmark name being set.
944 The directory part of the file name is not used."
945 (interactive)
946 (let ((str
947 (save-excursion
948 (set-buffer bookmark-current-buffer)
949 (bookmark-buffer-name))))
950 (insert str)))
953 (defun bookmark-buffer-name ()
954 "Return the name of the current buffer's file, non-directory.
955 In Info, return the current node."
956 (cond
957 ;; Is the mode defining the bookmark buffer name?
958 (bookmark-make-name-function
959 (funcall bookmark-make-name-function))
960 ;; Or are we a file?
961 (buffer-file-name (file-name-nondirectory buffer-file-name))
962 ;; Or are we a directory?
963 ((and (boundp 'dired-directory) dired-directory)
964 (let* ((dirname (if (stringp dired-directory)
965 dired-directory
966 (car dired-directory)))
967 (idx (1- (length dirname))))
968 ;; Strip the trailing slash.
969 (if (= ?/ (aref dirname idx))
970 (file-name-nondirectory (substring dirname 0 idx))
971 ;; Else return the current-buffer
972 (buffer-name (current-buffer)))))
973 ;; If all else fails, use the buffer's name.
975 (buffer-name (current-buffer)))))
978 (defun bookmark-yank-word ()
979 (interactive)
980 ;; get the next word from the buffer and append it to the name of
981 ;; the bookmark currently being set.
982 (let ((string (save-excursion
983 (set-buffer bookmark-current-buffer)
984 (goto-char bookmark-yank-point)
985 (buffer-substring-no-properties
986 (point)
987 (progn
988 (forward-word 1)
989 (setq bookmark-yank-point (point)))))))
990 (insert string)))
993 (defvar Info-current-file)
995 (defun bookmark-buffer-file-name ()
996 "Return the current buffer's file in a way useful for bookmarks.
997 For example, if this is a Info buffer, return the Info file's name."
998 (cond
999 ;; Return the location the handler should jump to
1000 ;; E.g. the Info file name for the Info handler
1001 (bookmark-make-name-function
1002 (funcall bookmark-make-name-function t))
1003 (buffer-file-name
1004 ;; Abbreviate the path, both so it's shorter and so it's more
1005 ;; portable. E.g., the user's home dir might be a different
1006 ;; path on different machines, but "~/" will still reach it.
1007 (abbreviate-file-name buffer-file-name))
1008 ((and (boundp 'dired-directory) dired-directory)
1009 (if (stringp dired-directory)
1010 dired-directory
1011 (car dired-directory)))))
1014 (defun bookmark-maybe-load-default-file ()
1015 (and (not bookmarks-already-loaded)
1016 (null bookmark-alist)
1017 (prog2
1018 (and
1019 ;; Possibly the old bookmark file, "~/.emacs-bkmrks", needs
1020 ;; to be renamed.
1021 (file-exists-p (expand-file-name bookmark-old-default-file))
1022 (not (file-exists-p (expand-file-name bookmark-default-file)))
1023 (rename-file (expand-file-name bookmark-old-default-file)
1024 (expand-file-name bookmark-default-file)))
1025 ;; return t so the `and' will continue...
1028 (file-readable-p (expand-file-name bookmark-default-file))
1029 (bookmark-load bookmark-default-file t t)
1030 (setq bookmarks-already-loaded t)))
1033 (defun bookmark-maybe-sort-alist ()
1034 ;;Return the bookmark-alist for display. If the bookmark-sort-flag
1035 ;;is non-nil, then return a sorted copy of the alist.
1036 (if bookmark-sort-flag
1037 (sort (copy-alist bookmark-alist)
1038 (function
1039 (lambda (x y) (string-lessp (car x) (car y)))))
1040 bookmark-alist))
1043 (defvar bookmark-after-jump-hook nil
1044 "Hook run after `bookmark-jump' jumps to a bookmark.
1045 Useful for example to unhide text in `outline-mode'.")
1047 ;;;###autoload
1048 (defun bookmark-jump (bookmark)
1049 "Jump to bookmark BOOKMARK (a point in some file).
1050 You may have a problem using this function if the value of variable
1051 `bookmark-alist' is nil. If that happens, you need to load in some
1052 bookmarks. See help on function `bookmark-load' for more about
1053 this.
1055 If the file pointed to by BOOKMARK no longer exists, you will be asked
1056 if you wish to give the bookmark a new location, and `bookmark-jump'
1057 will then jump to the new location, as well as recording it in place
1058 of the old one in the permanent bookmark record."
1059 (interactive
1060 (list (bookmark-completing-read "Jump to bookmark"
1061 bookmark-current-bookmark)))
1062 (unless bookmark
1063 (error "No bookmark specified"))
1064 (bookmark-maybe-historicize-string bookmark)
1065 (let ((alist (bookmark-jump-noselect bookmark)))
1066 (and alist
1067 (switch-to-buffer (cadr (assq 'buffer alist)))
1068 (goto-char (cadr (assq 'position alist)))
1069 (progn (run-hooks 'bookmark-after-jump-hook) t)
1070 (if bookmark-automatically-show-annotations
1071 ;; if there is an annotation for this bookmark,
1072 ;; show it in a buffer.
1073 (bookmark-show-annotation bookmark)))))
1076 ;;;###autoload
1077 (defun bookmark-jump-other-window (bookmark)
1078 "Jump to BOOKMARK (a point in some file) in another window.
1079 See `bookmark-jump'."
1080 (interactive
1081 (let ((bkm (bookmark-completing-read "Jump to bookmark (in another window)"
1082 bookmark-current-bookmark)))
1083 (if (> emacs-major-version 21)
1084 (list bkm) bkm)))
1085 (when bookmark
1086 (bookmark-maybe-historicize-string bookmark)
1087 (let ((alist (bookmark-jump-noselect bookmark)))
1088 (and alist
1089 (switch-to-buffer-other-window (cadr (assq 'buffer alist)))
1090 (goto-char (cadr (assq 'position alist)))
1091 (if bookmark-automatically-show-annotations
1092 ;; if there is an annotation for this bookmark,
1093 ;; show it in a buffer.
1094 (bookmark-show-annotation bookmark))))))
1097 (defun bookmark-file-or-variation-thereof (file)
1098 "Return FILE (a string) if it exists, or return a reasonable
1099 variation of FILE if that exists. Reasonable variations are checked
1100 by appending suffixes defined in `Info-suffix-list'. If cannot find FILE
1101 nor a reasonable variation thereof, then still return FILE if it can
1102 be retrieved from a VC backend, else return nil."
1103 (if (file-exists-p file)
1104 file
1106 (progn (require 'info) ; ensure Info-suffix-list is bound
1107 (catch 'found
1108 (mapc (lambda (elt)
1109 (let ((suffixed-file (concat file (car elt))))
1110 (if (file-exists-p suffixed-file)
1111 (throw 'found suffixed-file))))
1112 Info-suffix-list)
1113 nil))
1114 ;; Last possibility: try VC
1115 (if (vc-backend file) file))))
1117 (defun bookmark-jump-noselect (bookmark)
1118 "Call BOOKMARK's handler or `bookmark-default-handler' if it has none."
1119 (let ((found (funcall (or (bookmark-get-handler bookmark)
1120 'bookmark-default-handler)
1121 bookmark)))
1122 (unless found
1123 ;; Else unable to find the marked file, so ask if user wants to
1124 ;; relocate the bookmark, else remind them to consider deletion.
1125 (let ((file (bookmark-get-filename bookmark)))
1126 (when file ;Don't know how to relocate if there's no `file'.
1127 (setq file (expand-file-name file))
1128 (ding)
1129 (if (y-or-n-p (concat (file-name-nondirectory file)
1130 " nonexistent. Relocate \""
1131 bookmark
1132 "\"? "))
1133 (progn
1134 (bookmark-relocate bookmark)
1135 ;; Try again.
1136 (setq found (funcall (or (bookmark-get-handler bookmark)
1137 'bookmark-default-handler)
1138 bookmark)))
1139 (message
1140 "Bookmark not relocated; consider removing it \(%s\)." bookmark)))))
1141 (when found
1142 ;; Added by db.
1143 (setq bookmark-current-bookmark bookmark)
1144 found)))
1146 (defun bookmark-default-handler (str)
1147 ;; Helper for bookmark-jump. STR is a bookmark name, of the sort
1148 ;; accepted by `bookmark-get-bookmark'.
1150 ;; Return an alist '((buffer BUFFER) (position POSITION) ...)
1151 ;; indicating the bookmarked point within the specied buffer. Any
1152 ;; elements not documented here should be ignored.
1153 (bookmark-maybe-load-default-file)
1154 (let* ((file (expand-file-name (bookmark-get-filename str)))
1155 (forward-str (bookmark-get-front-context-string str))
1156 (behind-str (bookmark-get-rear-context-string str))
1157 (place (bookmark-get-position str)))
1158 ;; FIXME: bookmark-file-or-variation-thereof was needed for Info files,
1159 ;; but now that Info bookmarks are handled elsewhere it seems that we
1160 ;; should be able to get rid of it. --Stef
1161 (if (setq file (bookmark-file-or-variation-thereof file))
1162 (with-current-buffer (find-file-noselect file)
1163 (goto-char place)
1165 ;; Go searching forward first. Then, if forward-str exists and
1166 ;; was found in the file, we can search backward for behind-str.
1167 ;; Rationale is that if text was inserted between the two in the
1168 ;; file, it's better to be put before it so you can read it,
1169 ;; rather than after and remain perhaps unaware of the changes.
1170 (if forward-str
1171 (if (search-forward forward-str (point-max) t)
1172 (goto-char (match-beginning 0))))
1173 (if behind-str
1174 (if (search-backward behind-str (point-min) t)
1175 (goto-char (match-end 0))))
1176 `((buffer ,(current-buffer)) (position ,(point)))))))
1179 ;;;###autoload
1180 (defun bookmark-relocate (bookmark)
1181 "Relocate BOOKMARK to another file (reading file name with minibuffer).
1182 This makes an already existing bookmark point to that file, instead of
1183 the one it used to point at. Useful when a file has been renamed
1184 after a bookmark was set in it."
1185 (interactive (list (bookmark-completing-read "Bookmark to relocate")))
1186 (bookmark-maybe-historicize-string bookmark)
1187 (bookmark-maybe-load-default-file)
1188 (let* ((bmrk-filename (bookmark-get-filename bookmark))
1189 (newloc (expand-file-name
1190 (read-file-name
1191 (format "Relocate %s to: " bookmark)
1192 (file-name-directory bmrk-filename)))))
1193 (bookmark-set-filename bookmark newloc)
1194 (bookmark-bmenu-surreptitiously-rebuild-list)))
1197 ;;;###autoload
1198 (defun bookmark-insert-location (bookmark &optional no-history)
1199 "Insert the name of the file associated with BOOKMARK.
1200 Optional second arg NO-HISTORY means don't record this in the
1201 minibuffer history list `bookmark-history'."
1202 (interactive (list (bookmark-completing-read "Insert bookmark location")))
1203 (or no-history (bookmark-maybe-historicize-string bookmark))
1204 (let ((start (point)))
1205 (prog1
1206 (insert (bookmark-location bookmark)) ; *Return this line*
1207 (if (and (display-color-p) (display-mouse-p))
1208 (add-text-properties
1209 start
1210 (save-excursion (re-search-backward
1211 "[^ \t]")
1212 (1+ (point)))
1213 '(mouse-face highlight
1214 follow-link t
1215 help-echo "mouse-2: go to this bookmark in other window"))))))
1217 ;;;###autoload
1218 (defalias 'bookmark-locate 'bookmark-insert-location)
1220 (defun bookmark-location (bookmark)
1221 "Return the name of the file associated with BOOKMARK."
1222 (bookmark-maybe-load-default-file)
1223 (bookmark-get-filename bookmark))
1226 ;;;###autoload
1227 (defun bookmark-rename (old &optional new)
1228 "Change the name of OLD bookmark to NEW name.
1229 If called from keyboard, prompt for OLD and NEW. If called from
1230 menubar, select OLD from a menu and prompt for NEW.
1232 If called from Lisp, prompt for NEW if only OLD was passed as an
1233 argument. If called with two strings, then no prompting is done. You
1234 must pass at least OLD when calling from Lisp.
1236 While you are entering the new name, consecutive C-w's insert
1237 consecutive words from the text of the buffer into the new bookmark
1238 name."
1239 (interactive (list (bookmark-completing-read "Old bookmark name")))
1240 (bookmark-maybe-historicize-string old)
1241 (bookmark-maybe-load-default-file)
1243 (setq bookmark-current-point (point))
1244 (setq bookmark-yank-point (point))
1245 (setq bookmark-current-buffer (current-buffer))
1246 (let ((newname
1247 (or new ; use second arg, if non-nil
1248 (read-from-minibuffer
1249 "New name: "
1251 (let ((now-map (copy-keymap minibuffer-local-map)))
1252 (define-key now-map "\C-w" 'bookmark-yank-word)
1253 now-map)
1255 'bookmark-history))))
1256 (bookmark-set-name old newname)
1257 (setq bookmark-current-bookmark newname)
1258 (bookmark-bmenu-surreptitiously-rebuild-list)
1259 (setq bookmark-alist-modification-count
1260 (1+ bookmark-alist-modification-count))
1261 (if (bookmark-time-to-save-p)
1262 (bookmark-save))))
1265 ;;;###autoload
1266 (defun bookmark-insert (bookmark)
1267 "Insert the text of the file pointed to by bookmark BOOKMARK.
1268 You may have a problem using this function if the value of variable
1269 `bookmark-alist' is nil. If that happens, you need to load in some
1270 bookmarks. See help on function `bookmark-load' for more about
1271 this."
1272 (interactive (list (bookmark-completing-read "Insert bookmark contents")))
1273 (bookmark-maybe-historicize-string bookmark)
1274 (bookmark-maybe-load-default-file)
1275 (let ((orig-point (point))
1276 (str-to-insert
1277 (save-excursion
1278 (set-buffer (cadr (assq 'buffer (bookmark-jump-noselect bookmark))))
1279 (buffer-string))))
1280 (insert str-to-insert)
1281 (push-mark)
1282 (goto-char orig-point)))
1285 ;;;###autoload
1286 (defun bookmark-delete (bookmark &optional batch)
1287 "Delete BOOKMARK from the bookmark list.
1288 Removes only the first instance of a bookmark with that name. If
1289 there are one or more other bookmarks with the same name, they will
1290 not be deleted. Defaults to the \"current\" bookmark \(that is, the
1291 one most recently used in this file, if any\).
1292 Optional second arg BATCH means don't update the bookmark list buffer,
1293 probably because we were called from there."
1294 (interactive
1295 (list (bookmark-completing-read "Delete bookmark"
1296 bookmark-current-bookmark)))
1297 (bookmark-maybe-historicize-string bookmark)
1298 (bookmark-maybe-load-default-file)
1299 (let ((will-go (bookmark-get-bookmark bookmark)))
1300 (setq bookmark-alist (delq will-go bookmark-alist))
1301 ;; Added by db, nil bookmark-current-bookmark if the last
1302 ;; occurrence has been deleted
1303 (or (bookmark-get-bookmark bookmark-current-bookmark)
1304 (setq bookmark-current-bookmark nil)))
1305 ;; Don't rebuild the list
1306 (if batch
1308 (bookmark-bmenu-surreptitiously-rebuild-list)
1309 (setq bookmark-alist-modification-count
1310 (1+ bookmark-alist-modification-count))
1311 (if (bookmark-time-to-save-p)
1312 (bookmark-save))))
1315 (defun bookmark-time-to-save-p (&optional last-time)
1316 ;; By Gregory M. Saunders <saunders@cis.ohio-state.edu>
1317 ;; finds out whether it's time to save bookmarks to a file, by
1318 ;; examining the value of variable bookmark-save-flag, and maybe
1319 ;; bookmark-alist-modification-count. Returns t if they should be
1320 ;; saved, nil otherwise. if last-time is non-nil, then this is
1321 ;; being called when emacs is killed.
1322 (cond (last-time
1323 (and (> bookmark-alist-modification-count 0)
1324 bookmark-save-flag))
1325 ((numberp bookmark-save-flag)
1326 (>= bookmark-alist-modification-count bookmark-save-flag))
1328 nil)))
1331 ;;;###autoload
1332 (defun bookmark-write ()
1333 "Write bookmarks to a file (reading the file name with the minibuffer).
1334 Don't use this in Lisp programs; use `bookmark-save' instead."
1335 (interactive)
1336 (bookmark-maybe-load-default-file)
1337 (bookmark-save t))
1340 ;;;###autoload
1341 (defun bookmark-save (&optional parg file)
1342 "Save currently defined bookmarks.
1343 Saves by default in the file defined by the variable
1344 `bookmark-default-file'. With a prefix arg, save it in file FILE
1345 \(second argument\).
1347 If you are calling this from Lisp, the two arguments are PARG and
1348 FILE, and if you just want it to write to the default file, then
1349 pass no arguments. Or pass in nil and FILE, and it will save in FILE
1350 instead. If you pass in one argument, and it is non-nil, then the
1351 user will be interactively queried for a file to save in.
1353 When you want to load in the bookmarks from a file, use
1354 \`bookmark-load\', \\[bookmark-load]. That function will prompt you
1355 for a file, defaulting to the file defined by variable
1356 `bookmark-default-file'."
1357 (interactive "P")
1358 (bookmark-maybe-load-default-file)
1359 (cond
1360 ((and (null parg) (null file))
1361 ;;whether interactive or not, write to default file
1362 (bookmark-write-file bookmark-default-file))
1363 ((and (null parg) file)
1364 ;;whether interactive or not, write to given file
1365 (bookmark-write-file file))
1366 ((and parg (not file))
1367 ;;have been called interactively w/ prefix arg
1368 (let ((file (read-file-name "File to save bookmarks in: ")))
1369 (bookmark-write-file file)))
1370 (t ; someone called us with prefix-arg *and* a file, so just write to file
1371 (bookmark-write-file file)))
1372 ;; signal that we have synced the bookmark file by setting this to
1373 ;; 0. If there was an error at any point before, it will not get
1374 ;; set, which is what we want.
1375 (setq bookmark-alist-modification-count 0))
1379 (defun bookmark-write-file (file)
1380 (save-excursion
1381 (save-window-excursion
1382 (bookmark-maybe-message "Saving bookmarks to file %s..." file)
1383 (set-buffer (get-buffer-create " *Bookmarks*"))
1384 (goto-char (point-min))
1385 (delete-region (point-min) (point-max))
1386 (let ((print-length nil)
1387 (print-level nil))
1388 (bookmark-insert-file-format-version-stamp)
1389 (pp bookmark-alist (current-buffer))
1390 (let ((version-control
1391 (cond
1392 ((null bookmark-version-control) nil)
1393 ((eq 'never bookmark-version-control) 'never)
1394 ((eq 'nospecial bookmark-version-control) version-control)
1396 t))))
1397 (condition-case nil
1398 (write-region (point-min) (point-max) file)
1399 (file-error (message "Can't write %s" file)))
1400 (kill-buffer (current-buffer))
1401 (bookmark-maybe-message
1402 "Saving bookmarks to file %s...done" file))))))
1405 (defun bookmark-import-new-list (new-list)
1406 ;; Walk over the new list, adding each individual bookmark
1407 ;; carefully. "Carefully" means checking against the existing
1408 ;; bookmark-alist and renaming the new bookmarks with <N> extensions
1409 ;; as necessary.
1410 (let ((lst new-list)
1411 (names (bookmark-all-names)))
1412 (while lst
1413 (let* ((full-record (car lst)))
1414 (bookmark-maybe-rename full-record names)
1415 (setq bookmark-alist (nconc bookmark-alist (list full-record)))
1416 (setq names (cons (bookmark-name-from-full-record full-record) names))
1417 (setq lst (cdr lst))))))
1420 (defun bookmark-maybe-rename (full-record names)
1421 ;; just a helper for bookmark-import-new-list; it is only for
1422 ;; readability that this is not inlined.
1424 ;; Once this has found a free name, it sets full-record to that
1425 ;; name.
1426 (let ((found-name (bookmark-name-from-full-record full-record)))
1427 (if (member found-name names)
1428 ;; We've got a conflict, so generate a new name
1429 (let ((count 2)
1430 (new-name found-name))
1431 (while (member new-name names)
1432 (setq new-name (concat found-name (format "<%d>" count)))
1433 (setq count (1+ count)))
1434 (bookmark-set-name full-record new-name)))))
1437 ;;;###autoload
1438 (defun bookmark-load (file &optional overwrite no-msg)
1439 "Load bookmarks from FILE (which must be in bookmark format).
1440 Appends loaded bookmarks to the front of the list of bookmarks. If
1441 optional second argument OVERWRITE is non-nil, existing bookmarks are
1442 destroyed. Optional third arg NO-MSG means don't display any messages
1443 while loading.
1445 If you load a file that doesn't contain a proper bookmark alist, you
1446 will corrupt Emacs's bookmark list. Generally, you should only load
1447 in files that were created with the bookmark functions in the first
1448 place. Your own personal bookmark file, `~/.emacs.bmk', is
1449 maintained automatically by Emacs; you shouldn't need to load it
1450 explicitly.
1452 If you load a file containing bookmarks with the same names as
1453 bookmarks already present in your Emacs, the new bookmarks will get
1454 unique numeric suffixes \"<2>\", \"<3>\", ... following the same
1455 method buffers use to resolve name collisions."
1456 (interactive
1457 (list (read-file-name
1458 (format "Load bookmarks from: (%s) "
1459 bookmark-default-file)
1460 ;;Default might not be used often,
1461 ;;but there's no better default, and
1462 ;;I guess it's better than none at all.
1463 "~/" bookmark-default-file 'confirm)))
1464 (setq file (expand-file-name file))
1465 (if (file-readable-p file)
1466 (save-excursion
1467 (save-window-excursion
1468 (if (null no-msg)
1469 (bookmark-maybe-message "Loading bookmarks from %s..." file))
1470 (set-buffer (let ((enable-local-variables nil))
1471 (find-file-noselect file)))
1472 (goto-char (point-min))
1473 (bookmark-maybe-upgrade-file-format)
1474 (let ((blist (bookmark-alist-from-buffer)))
1475 (if (listp blist)
1476 (progn
1477 (if overwrite
1478 (progn
1479 (setq bookmark-alist blist)
1480 (setq bookmark-alist-modification-count 0))
1481 ;; else
1482 (bookmark-import-new-list blist)
1483 (setq bookmark-alist-modification-count
1484 (1+ bookmark-alist-modification-count)))
1485 (if (string-equal
1486 (expand-file-name bookmark-default-file)
1487 file)
1488 (setq bookmarks-already-loaded t))
1489 (bookmark-bmenu-surreptitiously-rebuild-list))
1490 (error "Invalid bookmark list in %s" file)))
1491 (kill-buffer (current-buffer)))
1492 (if (null no-msg)
1493 (bookmark-maybe-message "Loading bookmarks from %s...done" file)))
1494 (error "Cannot read bookmark file %s" file)))
1498 ;;; Code supporting the dired-like bookmark menu. Prefix is
1499 ;;; "bookmark-bmenu" for "buffer-menu":
1502 (defvar bookmark-bmenu-bookmark-column nil)
1505 (defvar bookmark-bmenu-hidden-bookmarks ())
1508 (defvar bookmark-bmenu-mode-map nil)
1511 (if bookmark-bmenu-mode-map
1513 (setq bookmark-bmenu-mode-map (make-keymap))
1514 (suppress-keymap bookmark-bmenu-mode-map t)
1515 (define-key bookmark-bmenu-mode-map "q" 'quit-window)
1516 (define-key bookmark-bmenu-mode-map "v" 'bookmark-bmenu-select)
1517 (define-key bookmark-bmenu-mode-map "w" 'bookmark-bmenu-locate)
1518 (define-key bookmark-bmenu-mode-map "2" 'bookmark-bmenu-2-window)
1519 (define-key bookmark-bmenu-mode-map "1" 'bookmark-bmenu-1-window)
1520 (define-key bookmark-bmenu-mode-map "j" 'bookmark-bmenu-this-window)
1521 (define-key bookmark-bmenu-mode-map "\C-c\C-c" 'bookmark-bmenu-this-window)
1522 (define-key bookmark-bmenu-mode-map "f" 'bookmark-bmenu-this-window)
1523 (define-key bookmark-bmenu-mode-map "\C-m" 'bookmark-bmenu-this-window)
1524 (define-key bookmark-bmenu-mode-map "o" 'bookmark-bmenu-other-window)
1525 (define-key bookmark-bmenu-mode-map "\C-o"
1526 'bookmark-bmenu-switch-other-window)
1527 (define-key bookmark-bmenu-mode-map "s" 'bookmark-bmenu-save)
1528 (define-key bookmark-bmenu-mode-map "k" 'bookmark-bmenu-delete)
1529 (define-key bookmark-bmenu-mode-map "\C-d" 'bookmark-bmenu-delete-backwards)
1530 (define-key bookmark-bmenu-mode-map "x" 'bookmark-bmenu-execute-deletions)
1531 (define-key bookmark-bmenu-mode-map "d" 'bookmark-bmenu-delete)
1532 (define-key bookmark-bmenu-mode-map " " 'next-line)
1533 (define-key bookmark-bmenu-mode-map "n" 'next-line)
1534 (define-key bookmark-bmenu-mode-map "p" 'previous-line)
1535 (define-key bookmark-bmenu-mode-map "\177" 'bookmark-bmenu-backup-unmark)
1536 (define-key bookmark-bmenu-mode-map "?" 'describe-mode)
1537 (define-key bookmark-bmenu-mode-map "u" 'bookmark-bmenu-unmark)
1538 (define-key bookmark-bmenu-mode-map "m" 'bookmark-bmenu-mark)
1539 (define-key bookmark-bmenu-mode-map "l" 'bookmark-bmenu-load)
1540 (define-key bookmark-bmenu-mode-map "r" 'bookmark-bmenu-rename)
1541 (define-key bookmark-bmenu-mode-map "R" 'bookmark-bmenu-relocate)
1542 (define-key bookmark-bmenu-mode-map "t" 'bookmark-bmenu-toggle-filenames)
1543 (define-key bookmark-bmenu-mode-map "a" 'bookmark-bmenu-show-annotation)
1544 (define-key bookmark-bmenu-mode-map "A" 'bookmark-bmenu-show-all-annotations)
1545 (define-key bookmark-bmenu-mode-map "e" 'bookmark-bmenu-edit-annotation)
1546 (define-key bookmark-bmenu-mode-map [mouse-2]
1547 'bookmark-bmenu-other-window-with-mouse))
1551 ;; Bookmark Buffer Menu mode is suitable only for specially formatted
1552 ;; data.
1553 (put 'bookmark-bmenu-mode 'mode-class 'special)
1556 ;; todo: need to display whether or not bookmark exists as a buffer in
1557 ;; flag column.
1559 ;; Format:
1560 ;; FLAGS BOOKMARK [ LOCATION ]
1563 (defun bookmark-bmenu-surreptitiously-rebuild-list ()
1564 "Rebuild the Bookmark List if it exists.
1565 Don't affect the buffer ring order."
1566 (if (get-buffer "*Bookmark List*")
1567 (save-excursion
1568 (save-window-excursion
1569 (bookmark-bmenu-list)))))
1572 ;;;###autoload
1573 (defun bookmark-bmenu-list ()
1574 "Display a list of existing bookmarks.
1575 The list is displayed in a buffer named `*Bookmark List*'.
1576 The leftmost column displays a D if the bookmark is flagged for
1577 deletion, or > if it is flagged for displaying."
1578 (interactive)
1579 (bookmark-maybe-load-default-file)
1580 (if (interactive-p)
1581 (switch-to-buffer (get-buffer-create "*Bookmark List*"))
1582 (set-buffer (get-buffer-create "*Bookmark List*")))
1583 (let ((inhibit-read-only t))
1584 (erase-buffer)
1585 (insert "% Bookmark\n- --------\n")
1586 (add-text-properties (point-min) (point)
1587 '(font-lock-face bookmark-menu-heading))
1588 (mapc
1589 (lambda (full-record)
1590 ;; if a bookmark has an annotation, prepend a "*"
1591 ;; in the list of bookmarks.
1592 (let ((annotation (bookmark-get-annotation
1593 (bookmark-name-from-full-record full-record))))
1594 (if (and annotation (not (string-equal annotation "")))
1595 (insert " *")
1596 (insert " "))
1597 (let ((start (point)))
1598 (insert (bookmark-name-from-full-record full-record))
1599 (if (and (display-color-p) (display-mouse-p))
1600 (add-text-properties
1601 start
1602 (save-excursion (re-search-backward
1603 "[^ \t]")
1604 (1+ (point)))
1605 '(mouse-face highlight
1606 follow-link t
1607 help-echo "mouse-2: go to this bookmark in other window")))
1608 (insert "\n")
1610 (bookmark-maybe-sort-alist)))
1611 (goto-char (point-min))
1612 (forward-line 2)
1613 (bookmark-bmenu-mode)
1614 (if bookmark-bmenu-toggle-filenames
1615 (bookmark-bmenu-toggle-filenames t)))
1617 ;;;###autoload
1618 (defalias 'list-bookmarks 'bookmark-bmenu-list)
1619 ;;;###autoload
1620 (defalias 'edit-bookmarks 'bookmark-bmenu-list)
1624 (defun bookmark-bmenu-mode ()
1625 "Major mode for editing a list of bookmarks.
1626 Each line describes one of the bookmarks in Emacs.
1627 Letters do not insert themselves; instead, they are commands.
1628 Bookmark names preceded by a \"*\" have annotations.
1629 \\<bookmark-bmenu-mode-map>
1630 \\[bookmark-bmenu-mark] -- mark bookmark to be displayed.
1631 \\[bookmark-bmenu-select] -- select bookmark of line point is on.
1632 Also show bookmarks marked using m in other windows.
1633 \\[bookmark-bmenu-toggle-filenames] -- toggle displaying of filenames (they may obscure long bookmark names).
1634 \\[bookmark-bmenu-locate] -- display (in minibuffer) location of this bookmark.
1635 \\[bookmark-bmenu-1-window] -- select this bookmark in full-frame window.
1636 \\[bookmark-bmenu-2-window] -- select this bookmark in one window,
1637 together with bookmark selected before this one in another window.
1638 \\[bookmark-bmenu-this-window] -- select this bookmark in place of the bookmark menu buffer.
1639 \\[bookmark-bmenu-other-window] -- select this bookmark in another window,
1640 so the bookmark menu bookmark remains visible in its window.
1641 \\[bookmark-bmenu-switch-other-window] -- switch the other window to this bookmark.
1642 \\[bookmark-bmenu-rename] -- rename this bookmark \(prompts for new name\).
1643 \\[bookmark-bmenu-relocate] -- relocate this bookmark's file \(prompts for new file\).
1644 \\[bookmark-bmenu-delete] -- mark this bookmark to be deleted, and move down.
1645 \\[bookmark-bmenu-delete-backwards] -- mark this bookmark to be deleted, and move up.
1646 \\[bookmark-bmenu-execute-deletions] -- delete bookmarks marked with `\\[bookmark-bmenu-delete]'.
1647 \\[bookmark-bmenu-save] -- save the current bookmark list in the default file.
1648 With a prefix arg, prompts for a file to save in.
1649 \\[bookmark-bmenu-load] -- load in a file of bookmarks (prompts for file.)
1650 \\[bookmark-bmenu-unmark] -- remove all kinds of marks from current line.
1651 With prefix argument, also move up one line.
1652 \\[bookmark-bmenu-backup-unmark] -- back up a line and remove marks.
1653 \\[bookmark-bmenu-show-annotation] -- show the annotation, if it exists, for the current bookmark
1654 in another buffer.
1655 \\[bookmark-bmenu-show-all-annotations] -- show the annotations of all bookmarks in another buffer.
1656 \\[bookmark-bmenu-edit-annotation] -- edit the annotation for the current bookmark."
1657 (kill-all-local-variables)
1658 (use-local-map bookmark-bmenu-mode-map)
1659 (setq truncate-lines t)
1660 (setq buffer-read-only t)
1661 (setq major-mode 'bookmark-bmenu-mode)
1662 (setq mode-name "Bookmark Menu")
1663 (run-mode-hooks 'bookmark-bmenu-mode-hook))
1666 (defun bookmark-bmenu-toggle-filenames (&optional show)
1667 "Toggle whether filenames are shown in the bookmark list.
1668 Optional argument SHOW means show them unconditionally."
1669 (interactive)
1670 (cond
1671 (show
1672 (setq bookmark-bmenu-toggle-filenames nil)
1673 (bookmark-bmenu-show-filenames)
1674 (setq bookmark-bmenu-toggle-filenames t))
1675 (bookmark-bmenu-toggle-filenames
1676 (bookmark-bmenu-hide-filenames)
1677 (setq bookmark-bmenu-toggle-filenames nil))
1679 (bookmark-bmenu-show-filenames)
1680 (setq bookmark-bmenu-toggle-filenames t))))
1683 (defun bookmark-bmenu-show-filenames (&optional force)
1684 (if (and (not force) bookmark-bmenu-toggle-filenames)
1685 nil ;already shown, so do nothing
1686 (save-excursion
1687 (save-window-excursion
1688 (goto-char (point-min))
1689 (forward-line 2)
1690 (setq bookmark-bmenu-hidden-bookmarks ())
1691 (let ((inhibit-read-only t))
1692 (while (< (point) (point-max))
1693 (let ((bmrk (bookmark-bmenu-bookmark)))
1694 (setq bookmark-bmenu-hidden-bookmarks
1695 (cons bmrk bookmark-bmenu-hidden-bookmarks))
1696 (let ((start (save-excursion (end-of-line) (point))))
1697 (move-to-column bookmark-bmenu-file-column t)
1698 ;; Strip off `mouse-face' from the white spaces region.
1699 (if (and (display-color-p) (display-mouse-p))
1700 (remove-text-properties start (point)
1701 '(mouse-face nil help-echo nil))))
1702 (delete-region (point) (progn (end-of-line) (point)))
1703 (insert " ")
1704 ;; Pass the NO-HISTORY arg:
1705 (bookmark-insert-location bmrk t)
1706 (forward-line 1))))))))
1709 (defun bookmark-bmenu-hide-filenames (&optional force)
1710 (if (and (not force) bookmark-bmenu-toggle-filenames)
1711 ;; nothing to hide if above is nil
1712 (save-excursion
1713 (save-window-excursion
1714 (goto-char (point-min))
1715 (forward-line 2)
1716 (setq bookmark-bmenu-hidden-bookmarks
1717 (nreverse bookmark-bmenu-hidden-bookmarks))
1718 (save-excursion
1719 (goto-char (point-min))
1720 (search-forward "Bookmark")
1721 (backward-word 1)
1722 (setq bookmark-bmenu-bookmark-column (current-column)))
1723 (save-excursion
1724 (let ((inhibit-read-only t))
1725 (while bookmark-bmenu-hidden-bookmarks
1726 (move-to-column bookmark-bmenu-bookmark-column t)
1727 (bookmark-kill-line)
1728 (let ((start (point)))
1729 (insert (car bookmark-bmenu-hidden-bookmarks))
1730 (if (and (display-color-p) (display-mouse-p))
1731 (add-text-properties
1732 start
1733 (save-excursion (re-search-backward
1734 "[^ \t]")
1735 (1+ (point)))
1736 '(mouse-face highlight
1737 follow-link t
1738 help-echo
1739 "mouse-2: go to this bookmark in other window"))))
1740 (setq bookmark-bmenu-hidden-bookmarks
1741 (cdr bookmark-bmenu-hidden-bookmarks))
1742 (forward-line 1))))))))
1745 (defun bookmark-bmenu-check-position ()
1746 ;; Returns non-nil if on a line with a bookmark.
1747 ;; (The actual value returned is bookmark-alist).
1748 ;; Else reposition and try again, else return nil.
1749 (cond ((< (count-lines (point-min) (point)) 2)
1750 (goto-char (point-min))
1751 (forward-line 2)
1752 bookmark-alist)
1753 ((and (bolp) (eobp))
1754 (beginning-of-line 0)
1755 bookmark-alist)
1757 bookmark-alist)))
1760 (defun bookmark-bmenu-bookmark ()
1761 ;; return a string which is bookmark of this line.
1762 (if (bookmark-bmenu-check-position)
1763 (save-excursion
1764 (save-window-excursion
1765 (goto-char (point-min))
1766 (search-forward "Bookmark")
1767 (backward-word 1)
1768 (setq bookmark-bmenu-bookmark-column (current-column)))))
1769 (if bookmark-bmenu-toggle-filenames
1770 (bookmark-bmenu-hide-filenames))
1771 (save-excursion
1772 (save-window-excursion
1773 (beginning-of-line)
1774 (forward-char bookmark-bmenu-bookmark-column)
1775 (prog1
1776 (buffer-substring-no-properties (point)
1777 (progn
1778 (end-of-line)
1779 (point)))
1780 ;; well, this is certainly crystal-clear:
1781 (if bookmark-bmenu-toggle-filenames
1782 (bookmark-bmenu-toggle-filenames t))))))
1785 (defun bookmark-show-annotation (bookmark)
1786 "Display the annotation for bookmark named BOOKMARK in a buffer,
1787 if an annotation exists."
1788 (let ((annotation (bookmark-get-annotation bookmark)))
1789 (if (and annotation (not (string-equal annotation "")))
1790 (save-excursion
1791 (let ((old-buf (current-buffer)))
1792 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
1793 (delete-region (point-min) (point-max))
1794 ;; (insert (concat "Annotation for bookmark '" bookmark "':\n\n"))
1795 (insert annotation)
1796 (goto-char (point-min))
1797 (pop-to-buffer old-buf))))))
1800 (defun bookmark-show-all-annotations ()
1801 "Display the annotations for all bookmarks in a buffer."
1802 (let ((old-buf (current-buffer)))
1803 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
1804 (delete-region (point-min) (point-max))
1805 (mapc
1806 (lambda (full-record)
1807 (let* ((name (bookmark-name-from-full-record full-record))
1808 (ann (bookmark-get-annotation name)))
1809 (insert (concat name ":\n"))
1810 (if (and ann (not (string-equal ann "")))
1811 ;; insert the annotation, indented by 4 spaces.
1812 (progn
1813 (save-excursion (insert ann) (unless (bolp)
1814 (insert "\n")))
1815 (while (< (point) (point-max))
1816 (beginning-of-line) ; paranoia
1817 (insert " ")
1818 (forward-line)
1819 (end-of-line))))))
1820 bookmark-alist)
1821 (goto-char (point-min))
1822 (pop-to-buffer old-buf)))
1825 (defun bookmark-bmenu-mark ()
1826 "Mark bookmark on this line to be displayed by \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-select]."
1827 (interactive)
1828 (beginning-of-line)
1829 (if (bookmark-bmenu-check-position)
1830 (let ((inhibit-read-only t))
1831 (delete-char 1)
1832 (insert ?>)
1833 (forward-line 1)
1834 (bookmark-bmenu-check-position))))
1837 (defun bookmark-bmenu-select ()
1838 "Select this line's bookmark; also display bookmarks marked with `>'.
1839 You can mark bookmarks with the \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-mark] command."
1840 (interactive)
1841 (if (bookmark-bmenu-check-position)
1842 (let ((bmrk (bookmark-bmenu-bookmark))
1843 (menu (current-buffer))
1844 (others ())
1845 tem)
1846 (goto-char (point-min))
1847 (while (re-search-forward "^>" nil t)
1848 (setq tem (bookmark-bmenu-bookmark))
1849 (let ((inhibit-read-only t))
1850 (delete-char -1)
1851 (insert ?\s))
1852 (or (string-equal tem bmrk)
1853 (member tem others)
1854 (setq others (cons tem others))))
1855 (setq others (nreverse others)
1856 tem (/ (1- (frame-height)) (1+ (length others))))
1857 (delete-other-windows)
1858 (bookmark-jump bmrk)
1859 (bury-buffer menu)
1860 (if others
1861 (while others
1862 (split-window nil tem)
1863 (other-window 1)
1864 (bookmark-jump (car others))
1865 (setq others (cdr others)))
1866 (other-window 1)))))
1869 (defun bookmark-bmenu-save (parg)
1870 "Save the current list into a bookmark file.
1871 With a prefix arg, prompts for a file to save them in."
1872 (interactive "P")
1873 (save-excursion
1874 (save-window-excursion
1875 (bookmark-save parg))))
1878 (defun bookmark-bmenu-load ()
1879 "Load the bookmark file and rebuild the bookmark menu-buffer."
1880 (interactive)
1881 (if (bookmark-bmenu-check-position)
1882 (save-excursion
1883 (save-window-excursion
1884 ;; This will call `bookmark-bmenu-list'
1885 (call-interactively 'bookmark-load)))))
1888 (defun bookmark-bmenu-1-window ()
1889 "Select this line's bookmark, alone, in full frame."
1890 (interactive)
1891 (if (bookmark-bmenu-check-position)
1892 (progn
1893 (bookmark-jump (bookmark-bmenu-bookmark))
1894 (bury-buffer (other-buffer))
1895 (delete-other-windows))))
1898 (defun bookmark-bmenu-2-window ()
1899 "Select this line's bookmark, with previous buffer in second window."
1900 (interactive)
1901 (if (bookmark-bmenu-check-position)
1902 (let ((bmrk (bookmark-bmenu-bookmark))
1903 (menu (current-buffer))
1904 (pop-up-windows t))
1905 (delete-other-windows)
1906 (switch-to-buffer (other-buffer))
1907 (let* ((alist (bookmark-jump-noselect bmrk))
1908 (buff (cadr (assq 'buffer alist)))
1909 (pos (cadr (assq 'position alist))))
1910 (pop-to-buffer buff)
1911 (goto-char pos))
1912 (bury-buffer menu))))
1915 (defun bookmark-bmenu-this-window ()
1916 "Select this line's bookmark in this window."
1917 (interactive)
1918 (if (bookmark-bmenu-check-position)
1919 (bookmark-jump (bookmark-bmenu-bookmark))))
1922 (defun bookmark-bmenu-other-window ()
1923 "Select this line's bookmark in other window, leaving bookmark menu visible."
1924 (interactive)
1925 (let ((bookmark (bookmark-bmenu-bookmark)))
1926 (if (bookmark-bmenu-check-position)
1927 (let* ((alist (bookmark-jump-noselect bookmark))
1928 (buff (cadr (assq 'buffer alist)))
1929 (pos (cadr (assq 'position alist))))
1930 (switch-to-buffer-other-window buff)
1931 (goto-char pos)
1932 (set-window-point (get-buffer-window buff) pos)
1933 (bookmark-show-annotation bookmark)))))
1936 (defun bookmark-bmenu-switch-other-window ()
1937 "Make the other window select this line's bookmark.
1938 The current window remains selected."
1939 (interactive)
1940 (let ((bookmark (bookmark-bmenu-bookmark))
1941 (pop-up-windows t)
1942 same-window-buffer-names
1943 same-window-regexps)
1944 (if (bookmark-bmenu-check-position)
1945 (let* ((alist (bookmark-jump-noselect bookmark))
1946 (buff (cadr (assq 'buffer alist)))
1947 (pos (cadr (assq 'position alist))))
1948 (display-buffer buff)
1949 (let ((o-buffer (current-buffer)))
1950 ;; save-excursion won't do
1951 (set-buffer buff)
1952 (goto-char pos)
1953 (set-window-point (get-buffer-window buff) pos)
1954 (set-buffer o-buffer))
1955 (bookmark-show-annotation bookmark)))))
1957 (defun bookmark-bmenu-other-window-with-mouse (event)
1958 "Select bookmark at the mouse pointer in other window, leaving bookmark menu visible."
1959 (interactive "e")
1960 (save-excursion
1961 (set-buffer (window-buffer (posn-window (event-end event))))
1962 (save-excursion
1963 (goto-char (posn-point (event-end event)))
1964 (bookmark-bmenu-other-window))))
1967 (defun bookmark-bmenu-show-annotation ()
1968 "Show the annotation for the current bookmark in another window."
1969 (interactive)
1970 (let ((bookmark (bookmark-bmenu-bookmark)))
1971 (if (bookmark-bmenu-check-position)
1972 (bookmark-show-annotation bookmark))))
1975 (defun bookmark-bmenu-show-all-annotations ()
1976 "Show the annotation for all bookmarks in another window."
1977 (interactive)
1978 (bookmark-show-all-annotations))
1981 (defun bookmark-bmenu-edit-annotation ()
1982 "Edit the annotation for the current bookmark in another window."
1983 (interactive)
1984 (let ((bookmark (bookmark-bmenu-bookmark)))
1985 (if (bookmark-bmenu-check-position)
1986 (bookmark-edit-annotation bookmark))))
1989 (defun bookmark-bmenu-unmark (&optional backup)
1990 "Cancel all requested operations on bookmark on this line and move down.
1991 Optional BACKUP means move up."
1992 (interactive "P")
1993 (beginning-of-line)
1994 (if (bookmark-bmenu-check-position)
1995 (progn
1996 (let ((inhibit-read-only t))
1997 (delete-char 1)
1998 ;; any flags to reset according to circumstances? How about a
1999 ;; flag indicating whether this bookmark is being visited?
2000 ;; well, we don't have this now, so maybe later.
2001 (insert " "))
2002 (forward-line (if backup -1 1))
2003 (bookmark-bmenu-check-position))))
2006 (defun bookmark-bmenu-backup-unmark ()
2007 "Move up and cancel all requested operations on bookmark on line above."
2008 (interactive)
2009 (forward-line -1)
2010 (if (bookmark-bmenu-check-position)
2011 (progn
2012 (bookmark-bmenu-unmark)
2013 (forward-line -1)
2014 (bookmark-bmenu-check-position))))
2017 (defun bookmark-bmenu-delete ()
2018 "Mark bookmark on this line to be deleted.
2019 To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
2020 (interactive)
2021 (beginning-of-line)
2022 (if (bookmark-bmenu-check-position)
2023 (let ((inhibit-read-only t))
2024 (delete-char 1)
2025 (insert ?D)
2026 (forward-line 1)
2027 (bookmark-bmenu-check-position))))
2030 (defun bookmark-bmenu-delete-backwards ()
2031 "Mark bookmark on this line to be deleted, then move up one line.
2032 To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
2033 (interactive)
2034 (bookmark-bmenu-delete)
2035 (forward-line -2)
2036 (if (bookmark-bmenu-check-position)
2037 (forward-line 1))
2038 (bookmark-bmenu-check-position))
2041 (defun bookmark-bmenu-execute-deletions ()
2042 "Delete bookmarks marked with \\<Buffer-menu-mode-map>\\[Buffer-menu-delete] commands."
2043 (interactive)
2044 (message "Deleting bookmarks...")
2045 (let ((hide-em bookmark-bmenu-toggle-filenames)
2046 (o-point (point))
2047 (o-str (save-excursion
2048 (beginning-of-line)
2049 (if (looking-at "^D")
2051 (buffer-substring
2052 (point)
2053 (progn (end-of-line) (point))))))
2054 (o-col (current-column)))
2055 (if hide-em (bookmark-bmenu-hide-filenames))
2056 (setq bookmark-bmenu-toggle-filenames nil)
2057 (goto-char (point-min))
2058 (forward-line 1)
2059 (while (re-search-forward "^D" (point-max) t)
2060 (bookmark-delete (bookmark-bmenu-bookmark) t)) ; pass BATCH arg
2061 (bookmark-bmenu-list)
2062 (setq bookmark-bmenu-toggle-filenames hide-em)
2063 (if bookmark-bmenu-toggle-filenames
2064 (bookmark-bmenu-toggle-filenames t))
2065 (if o-str
2066 (progn
2067 (goto-char (point-min))
2068 (search-forward o-str)
2069 (beginning-of-line)
2070 (forward-char o-col))
2071 (goto-char o-point))
2072 (beginning-of-line)
2073 (setq bookmark-alist-modification-count
2074 (1+ bookmark-alist-modification-count))
2075 (if (bookmark-time-to-save-p)
2076 (bookmark-save))
2077 (message "Deleting bookmarks...done")
2081 (defun bookmark-bmenu-rename ()
2082 "Rename bookmark on current line. Prompts for a new name."
2083 (interactive)
2084 (if (bookmark-bmenu-check-position)
2085 (let ((bmrk (bookmark-bmenu-bookmark))
2086 (thispoint (point)))
2087 (bookmark-rename bmrk)
2088 (bookmark-bmenu-list)
2089 (goto-char thispoint))))
2092 (defun bookmark-bmenu-locate ()
2093 "Display location of this bookmark. Displays in the minibuffer."
2094 (interactive)
2095 (if (bookmark-bmenu-check-position)
2096 (let ((bmrk (bookmark-bmenu-bookmark)))
2097 (message "%s" (bookmark-location bmrk)))))
2099 (defun bookmark-bmenu-relocate ()
2100 "Change the file path of the bookmark on the current line,
2101 prompting with completion for the new path."
2102 (interactive)
2103 (if (bookmark-bmenu-check-position)
2104 (let ((bmrk (bookmark-bmenu-bookmark))
2105 (thispoint (point)))
2106 (bookmark-relocate bmrk)
2107 (goto-char thispoint))))
2110 ;;; Menu bar stuff. Prefix is "bookmark-menu".
2112 (defun bookmark-menu-popup-paned-menu (event name entries)
2113 "Pop up multi-paned menu at EVENT, return string chosen from ENTRIES.
2114 That is, ENTRIES is a list of strings which appear as the choices
2115 in the menu.
2116 The number of panes depends on the number of entries.
2117 The visible entries are truncated to `bookmark-menu-length', but the
2118 strings returned are not."
2119 (let ((f-height (/ (frame-height) 2))
2120 (pane-list nil)
2121 (iter 0))
2122 (while entries
2123 (let (lst
2124 (count 0))
2125 (while (and (< count f-height) entries)
2126 (let ((str (car entries)))
2127 (push (cons
2128 (if (> (length str) bookmark-menu-length)
2129 (substring str 0 bookmark-menu-length)
2130 str)
2131 str)
2132 lst)
2133 (setq entries (cdr entries))
2134 (setq count (1+ count))))
2135 (setq iter (1+ iter))
2136 (push (cons
2137 (format "-*- %s (%d) -*-" name iter)
2138 (nreverse lst))
2139 pane-list)))
2141 ;; Popup the menu and return the string.
2142 (x-popup-menu event (cons (concat "-*- " name " -*-")
2143 (nreverse pane-list)))))
2146 ;; Thanks to Roland McGrath for fixing menubar.el so that the
2147 ;; following works, and for explaining what to do to make it work.
2149 ;; We MUST autoload EACH form used to set up this variable's value, so
2150 ;; that the whole job is done in loaddefs.el.
2152 ;; Emacs menubar stuff.
2154 ;;;###autoload
2155 (defvar menu-bar-bookmark-map
2156 (let ((map (make-sparse-keymap "Bookmark functions")))
2157 (define-key map [load] '("Load a Bookmark File..." . bookmark-load))
2158 (define-key map [write] '("Save Bookmarks As..." . bookmark-write))
2159 (define-key map [save] '("Save Bookmarks" . bookmark-save))
2160 (define-key map [edit] '("Edit Bookmark List" . bookmark-bmenu-list))
2161 (define-key map [delete] '("Delete Bookmark..." . bookmark-delete))
2162 (define-key map [rename] '("Rename Bookmark..." . bookmark-rename))
2163 (define-key map [locate] '("Insert Location..." . bookmark-locate))
2164 (define-key map [insert] '("Insert Contents..." . bookmark-insert))
2165 (define-key map [set] '("Set Bookmark..." . bookmark-set))
2166 (define-key map [jump] '("Jump to Bookmark..." . bookmark-jump))
2167 map))
2169 ;;;###autoload
2170 (defalias 'menu-bar-bookmark-map menu-bar-bookmark-map)
2172 ;; make bookmarks appear toward the right side of the menu.
2173 (if (boundp 'menu-bar-final-items)
2174 (if menu-bar-final-items
2175 (setq menu-bar-final-items
2176 (cons 'bookmark menu-bar-final-items)))
2177 (setq menu-bar-final-items '(bookmark)))
2179 ;;;; end bookmark menu stuff ;;;;
2182 ;;; Load Hook
2183 (defvar bookmark-load-hook nil
2184 "Hook run at the end of loading bookmark.")
2186 ;;; Exit Hook, called from kill-emacs-hook
2187 (defvar bookmark-exit-hook nil
2188 "Hook run when Emacs exits.")
2190 (define-obsolete-variable-alias 'bookmark-exit-hooks 'bookmark-exit-hook "22.1")
2192 (defun bookmark-exit-hook-internal ()
2193 "Save bookmark state, if necessary, at Emacs exit time.
2194 This also runs `bookmark-exit-hook'."
2195 (run-hooks 'bookmark-exit-hook)
2196 (and bookmark-alist
2197 (bookmark-time-to-save-p t)
2198 (bookmark-save)))
2200 (add-hook 'kill-emacs-hook 'bookmark-exit-hook-internal)
2203 (run-hooks 'bookmark-load-hook)
2205 (provide 'bookmark)
2207 ;; arch-tag: 139f519a-dd0c-4b8d-8b5d-f9fcf53ca8f6
2208 ;;; bookmark.el ends here