Allow `declare' to set the interactive-only property
[bpt/emacs.git] / lisp / bookmark.el
CommitLineData
e8af40ee 1;;; bookmark.el --- set bookmarks, maybe annotate them, jump to them later
b3bf02fa 2
ba318903 3;; Copyright (C) 1993-1997, 2001-2014 Free Software Foundation, Inc.
b3bf02fa 4
60d0378e
KF
5;; Author: Karl Fogel <kfogel@red-bean.com>
6;; Maintainer: Karl Fogel <kfogel@red-bean.com>
b3bf02fa 7;; Created: July, 1993
e3437989 8;; Keywords: bookmarks, placeholders, annotations
b3bf02fa
RS
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
b3bf02fa 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
b3bf02fa
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
b578f267
EN
24
25;;; Commentary:
26
27;; This package is for setting "bookmarks" in files. A bookmark
28;; associates a string with a location in a certain file. Thus, you
29;; can navigate your way to that location by providing the string.
30;; See the "User Variables" section for customizations.
b3bf02fa 31
e3437989 32\f
e8af40ee 33;;; Code:
b3bf02fa 34
b578f267 35(require 'pp)
f58e0fd5 36(eval-when-compile (require 'cl-lib))
b578f267 37
e3437989 38;;; Misc comments:
b3bf02fa 39;;
e3437989 40;; If variable bookmark-use-annotations is non-nil, an annotation is
dbe99ae9 41;; queried for when setting a bookmark.
11eb4275 42;;
d22d6453
RS
43;; The bookmark list is sorted lexically by default, but you can turn
44;; this off by setting bookmark-sort-flag to nil. If it is nil, then
45;; the list will be presented in the order it is recorded
46;; (chronologically), which is actually fairly useful as well.
b3bf02fa 47
4eadcdf8
RS
48;;; User Variables
49
bbf5eb28 50(defgroup bookmark nil
9848f0ca 51 "Setting, annotation and jumping to bookmarks."
bbf5eb28
RS
52 :group 'matching)
53
54
55(defcustom bookmark-use-annotations nil
fc22668d 56 "If non-nil, saving a bookmark queries for an annotation in a buffer."
bbf5eb28
RS
57 :type 'boolean
58 :group 'bookmark)
4eadcdf8
RS
59
60
bbf5eb28 61(defcustom bookmark-save-flag t
fc22668d 62 "Controls when Emacs saves bookmarks to a file.
9848f0ca 63--> nil means never save bookmarks, except when `bookmark-save' is
0472835f 64 explicitly called (\\[bookmark-save]).
4eadcdf8 65--> t means save bookmarks when Emacs is killed.
3b526bae 66--> Otherwise, it should be a number that is the frequency with which
0472835f 67 the bookmark list is saved (i.e.: the number of times which
44e97401 68 Emacs's bookmark list may be modified before it is automatically
0472835f 69 saved.). If it is a number, Emacs will also automatically save
4eadcdf8
RS
70 bookmarks when it is killed.
71
72Therefore, the way to get it to save every time you make or delete a
0472835f
JB
73bookmark is to set this variable to 1 (or 0, which produces the same
74behavior.)
4eadcdf8
RS
75
76To specify the file in which to save them, modify the variable
9848f0ca 77`bookmark-default-file', which is `~/.emacs.bmk' by default."
31fa1bd1 78 :type '(choice (const nil) integer (other t))
bbf5eb28 79 :group 'bookmark)
4eadcdf8
RS
80
81
82(defconst bookmark-old-default-file "~/.emacs-bkmrks"
9201cc28 83 "The `.emacs.bmk' file used to be called this name.")
4eadcdf8
RS
84
85
e4769531 86;; defvared to avoid a compilation warning:
4eadcdf8
RS
87(defvar bookmark-file nil
88 "Old name for `bookmark-default-file'.")
89
bbf5eb28 90(defcustom bookmark-default-file
4eadcdf8
RS
91 (if bookmark-file
92 ;; In case user set `bookmark-file' in her .emacs:
93 bookmark-file
398a825b 94 (locate-user-emacs-file "bookmarks" ".emacs.bmk"))
fc22668d 95 "File in which to save bookmarks by default."
bbf5eb28
RS
96 :type 'file
97 :group 'bookmark)
4eadcdf8
RS
98
99
bbf5eb28 100(defcustom bookmark-version-control 'nospecial
fc22668d 101 "Whether or not to make numbered backups of the bookmark file.
16ce6ccd 102It can have four values: t, nil, `never', or `nospecial'.
4eadcdf8 103The first three have the same meaning that they do for the
16ce6ccd
KF
104variable `version-control'; the value `nospecial' (the default) means
105just use the value of `version-control'."
106 :type '(choice (const :tag "If existing" nil)
107 (const :tag "Never" never)
0a9cc82a
KF
108 (const :tag "Use value of option `version-control'" nospecial)
109 (other :tag "Always" t))
bbf5eb28 110 :group 'bookmark)
4eadcdf8
RS
111
112
bbf5eb28 113(defcustom bookmark-completion-ignore-case t
fc22668d 114 "Non-nil means bookmark functions ignore case in completion."
bbf5eb28
RS
115 :type 'boolean
116 :group 'bookmark)
4eadcdf8
RS
117
118
bbf5eb28 119(defcustom bookmark-sort-flag t
fc22668d 120 "Non-nil means that bookmarks will be displayed sorted by bookmark name.
9848f0ca 121Otherwise they will be displayed in LIFO order (that is, most
bbf5eb28
RS
122recently set ones come first, oldest ones come last)."
123 :type 'boolean
124 :group 'bookmark)
4eadcdf8
RS
125
126
bbf5eb28 127(defcustom bookmark-automatically-show-annotations t
fc22668d 128 "Non-nil means show annotations when jumping to a bookmark."
bbf5eb28
RS
129 :type 'boolean
130 :group 'bookmark)
4eadcdf8 131
7a78e19f 132(defcustom bookmark-bmenu-use-header-line t
bb098075
GM
133 "Non-nil means to use an immovable header line.
134This is as opposed to inline text at the top of the buffer."
135 :version "24.4"
7a78e19f
KF
136 :type 'boolean
137 :group 'bookmark)
4eadcdf8 138
7a78e19f
KF
139(defconst bookmark-bmenu-inline-header-height 2
140 "Number of lines used for the *Bookmark List* header
141\(only significant when `bookmark-bmenu-use-header-line' is nil\).")
aef053eb 142
54136282
KF
143(defconst bookmark-bmenu-marks-width 2
144 "Number of columns (chars) used for the *Bookmark List* marks column,
145including the annotations column.")
aef053eb 146
bbf5eb28 147(defcustom bookmark-bmenu-file-column 30
fc22668d 148 "Column at which to display filenames in a buffer listing bookmarks.
bbf5eb28
RS
149You can toggle whether files are shown with \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-toggle-filenames]."
150 :type 'integer
151 :group 'bookmark)
4eadcdf8
RS
152
153
bbf5eb28 154(defcustom bookmark-bmenu-toggle-filenames t
fc22668d 155 "Non-nil means show filenames when listing bookmarks.
865fe16f 156A non-nil value may result in truncated bookmark names."
bbf5eb28
RS
157 :type 'boolean
158 :group 'bookmark)
4eadcdf8 159
c095b770
KF
160(defface bookmark-menu-bookmark
161 '((t (:weight bold)))
162 "Face used to highlight bookmark names in bookmark menu buffers."
163 :group 'bookmark)
4eadcdf8 164
bbf5eb28 165(defcustom bookmark-menu-length 70
fc22668d 166 "Maximum length of a bookmark name displayed on a popup menu."
bbf5eb28 167 :type 'integer
85d457c6 168 :group 'bookmark)
4eadcdf8 169
26d9285f 170;; FIXME: Is it really worth a customization option?
1e7d4475 171(defcustom bookmark-search-delay 0.2
26d9285f 172 "Time before `bookmark-bmenu-search' updates the display."
1e7d4475 173 :group 'bookmark
a931698a 174 :type 'number)
1e7d4475 175
37789292
RF
176(defface bookmark-menu-heading
177 '((t (:inherit font-lock-type-face)))
178 "Face used to highlight the heading in bookmark menu buffers."
179 :group 'bookmark
180 :version "22.1")
181
182
4eadcdf8 183;;; No user-serviceable parts beyond this point.
b3bf02fa
RS
184
185;; Added for lucid emacs compatibility, db
186(or (fboundp 'defalias) (fset 'defalias 'fset))
187
d22d6453 188;; suggested for lucid compatibility by david hughes:
4eadcdf8 189(or (fboundp 'frame-height) (defalias 'frame-height 'screen-height))
d22d6453 190
e3437989
RS
191\f
192;;; Keymap stuff:
b3bf02fa 193
77bc05c7
RS
194;; Set up these bindings dumping time *only*;
195;; if the user alters them, don't override the user when loading bookmark.el.
196
e1321788
JL
197;;;###autoload (define-key ctl-x-r-map "b" 'bookmark-jump)
198;;;###autoload (define-key ctl-x-r-map "m" 'bookmark-set)
199;;;###autoload (define-key ctl-x-r-map "l" 'bookmark-bmenu-list)
36ae4ff7 200
d22d6453 201;;;###autoload
79363d93
SM
202(defvar bookmark-map
203 (let ((map (make-sparse-keymap)))
204 ;; Read the help on all of these functions for details...
205 (define-key map "x" 'bookmark-set)
206 (define-key map "m" 'bookmark-set) ;"m"ark
207 (define-key map "j" 'bookmark-jump)
208 (define-key map "g" 'bookmark-jump) ;"g"o
209 (define-key map "o" 'bookmark-jump-other-window)
210 (define-key map "i" 'bookmark-insert)
211 (define-key map "e" 'edit-bookmarks)
212 (define-key map "f" 'bookmark-insert-location) ;"f"ind
213 (define-key map "r" 'bookmark-rename)
214 (define-key map "d" 'bookmark-delete)
215 (define-key map "l" 'bookmark-load)
216 (define-key map "w" 'bookmark-write)
217 (define-key map "s" 'bookmark-save)
218 map)
9aef3b21
RS
219 "Keymap containing bindings to bookmark functions.
220It is not bound to any key by default: to bind it
221so that you have a bookmark prefix, just use `global-set-key' and bind a
222key of your choice to `bookmark-map'. All interactive bookmark
b3bf02fa
RS
223functions have a binding in this keymap.")
224
79363d93 225;;;###autoload (fset 'bookmark-map bookmark-map)
e3437989 226
e3437989
RS
227\f
228;;; Core variables and data structures:
7e2d009d 229(defvar bookmark-alist ()
e3437989 230 "Association list of bookmarks and their records.
7c85c02b
KF
231Bookmark functions update the value automatically.
232You probably do NOT want to change the value yourself.
4eadcdf8 233
7c85c02b 234The value is an alist with entries of the form
4eadcdf8 235
7c85c02b 236 (BOOKMARK-NAME . PARAM-ALIST)
4eadcdf8 237
7c85c02b 238or the deprecated form (BOOKMARK-NAME PARAM-ALIST).
4eadcdf8 239
7c85c02b 240 BOOKMARK-NAME is the name you gave to the bookmark when creating it.
4eadcdf8 241
7c85c02b
KF
242 PARAM-ALIST is an alist of bookmark information. The order of the
243 entries in PARAM-ALIST is not important. The possible entries are
244 described below. An entry with a key but null value means the entry
245 is not used.
43f8b275 246
7c85c02b 247 (filename . FILENAME)
43f8b275 248 (position . POS)
7c85c02b
KF
249 (front-context-string . STR-AFTER-POS)
250 (rear-context-string . STR-BEFORE-POS)
251 (handler . HANDLER)
252 (annotation . ANNOTATION)
253
254 FILENAME names the bookmarked file.
255 POS is the bookmarked buffer position (position in the file).
256 STR-AFTER-POS is buffer text that immediately follows POS.
257 STR-BEFORE-POS is buffer text that immediately precedes POS.
258 ANNOTATION is a string that describes the bookmark.
259 See options `bookmark-use-annotations' and
260 `bookmark-automatically-show-annotations'.
261 HANDLER is a function that provides the bookmark-jump behavior for a
262 specific kind of bookmark. This is the case for Info bookmarks,
263 for instance. HANDLER must accept a bookmark as argument.")
e3437989 264
67b70de9 265(defvar bookmarks-already-loaded nil
0472835f 266 "Non-nil if and only if bookmarks have been loaded from `bookmark-default-file'.")
d22d6453 267
e3437989 268
b3bf02fa 269;; more stuff added by db.
d22d6453 270
dbe99ae9 271(defvar bookmark-current-bookmark nil
9aef3b21
RS
272 "Name of bookmark most recently used in the current file.
273It is buffer local, used to make moving a bookmark forward
8027e2ad 274through a file easier.")
b3bf02fa
RS
275
276(make-variable-buffer-local 'bookmark-current-bookmark)
277
e3437989 278
b3bf02fa 279(defvar bookmark-alist-modification-count 0
9aef3b21 280 "Number of modifications to bookmark list since it was last saved.")
b3bf02fa 281
e3437989 282
e3437989 283(defvar bookmark-search-size 16
9aef3b21 284 "Length of the context strings recorded on either side of a bookmark.")
b3bf02fa 285
e3437989 286
67b70de9
KF
287(defvar bookmark-current-buffer nil
288 "The buffer in which a bookmark is currently being set or renamed.
289Functions that insert strings into the minibuffer use this to know
ce0fcefa
JL
290the source buffer for that information; see `bookmark-yank-word'
291for example.")
67b70de9
KF
292
293
294(defvar bookmark-yank-point 0
295 "The next point from which to pull source text for `bookmark-yank-word'.
0472835f 296This point is in `bookmark-current-buffer'.")
67b70de9 297
b3bf02fa 298
1e7d4475
SM
299(defvar bookmark-quit-flag nil
300 "Non nil make `bookmark-bmenu-search' quit immediately.")
e3437989 301\f
b894c439
KF
302;; Helper functions and macros.
303
304(defmacro with-buffer-modified-unmodified (&rest body)
305 "Run BODY while preserving the buffer's `buffer-modified-p' state."
306 (let ((was-modified (make-symbol "was-modified")))
307 `(let ((,was-modified (buffer-modified-p)))
308 (unwind-protect
309 (progn ,@body)
310 (set-buffer-modified-p ,was-modified)))))
311
312;; Only functions below, in this page and the next one (file formats),
313;; need to know anything about the format of bookmark-alist entries.
e3437989
RS
314;; Everyone else should go through them.
315
fdbb4d85 316(defun bookmark-name-from-full-record (bookmark-record)
eff37c5e
KF
317 "Return the name of BOOKMARK-RECORD. BOOKMARK-RECORD is, e.g.,
318one element from `bookmark-alist'."
319 (car bookmark-record))
e3437989
RS
320
321
322(defun bookmark-all-names ()
323 "Return a list of all current bookmark names."
324 (bookmark-maybe-load-default-file)
fdbb4d85 325 (mapcar 'bookmark-name-from-full-record bookmark-alist))
e3437989
RS
326
327
eff37c5e
KF
328(defun bookmark-get-bookmark (bookmark-name-or-record &optional noerror)
329 "Return the bookmark record corresponding to BOOKMARK-NAME-OR-RECORD.
330If BOOKMARK-NAME-OR-RECORD is a string, look for the corresponding
331bookmark record in `bookmark-alist'; return it if found, otherwise
332error. Else if BOOKMARK-NAME-OR-RECORD is already a bookmark record,
333just return it."
43f8b275 334 (cond
eff37c5e
KF
335 ((consp bookmark-name-or-record) bookmark-name-or-record)
336 ((stringp bookmark-name-or-record)
337 (or (assoc-string bookmark-name-or-record bookmark-alist
338 bookmark-completion-ignore-case)
339 (unless noerror (error "Invalid bookmark %s"
340 bookmark-name-or-record))))))
341
342
343(defun bookmark-get-bookmark-record (bookmark-name-or-record)
344 "Return the record portion of the entry for BOOKMARK-NAME-OR-RECORD in
345`bookmark-alist' (that is, all information but the name)."
346 (let ((alist (cdr (bookmark-get-bookmark bookmark-name-or-record))))
43f8b275
SM
347 ;; The bookmark objects can either look like (NAME ALIST) or
348 ;; (NAME . ALIST), so we have to distinguish the two here.
349 (if (and (null (cdr alist)) (consp (caar alist)))
350 (car alist) alist)))
e3437989
RS
351
352
eff37c5e
KF
353(defun bookmark-set-name (bookmark-name-or-record newname)
354 "Set BOOKMARK-NAME-OR-RECORD's name to NEWNAME."
355 (setcar (bookmark-get-bookmark bookmark-name-or-record) newname))
e3437989 356
eff37c5e
KF
357(defun bookmark-prop-get (bookmark-name-or-record prop)
358 "Return the property PROP of BOOKMARK-NAME-OR-RECORD, or nil if none."
359 (cdr (assq prop (bookmark-get-bookmark-record bookmark-name-or-record))))
02a5ba27 360
eff37c5e
KF
361(defun bookmark-prop-set (bookmark-name-or-record prop val)
362 "Set the property PROP of BOOKMARK-NAME-OR-RECORD to VAL."
363 (let ((cell (assq
364 prop (bookmark-get-bookmark-record bookmark-name-or-record))))
02a5ba27
SM
365 (if cell
366 (setcdr cell val)
eff37c5e 367 (nconc (bookmark-get-bookmark-record bookmark-name-or-record)
02a5ba27 368 (list (cons prop val))))))
e3437989 369
eff37c5e
KF
370(defun bookmark-get-annotation (bookmark-name-or-record)
371 "Return the annotation of BOOKMARK-NAME-OR-RECORD, or nil if none."
372 (bookmark-prop-get bookmark-name-or-record 'annotation))
e3437989 373
eff37c5e
KF
374(defun bookmark-set-annotation (bookmark-name-or-record ann)
375 "Set the annotation of BOOKMARK-NAME-OR-RECORD to ANN."
376 (bookmark-prop-set bookmark-name-or-record 'annotation ann))
e3437989
RS
377
378
eff37c5e
KF
379(defun bookmark-get-filename (bookmark-name-or-record)
380 "Return the full filename of BOOKMARK-NAME-OR-RECORD, or nil if none."
381 (bookmark-prop-get bookmark-name-or-record 'filename))
e3437989
RS
382
383
eff37c5e
KF
384(defun bookmark-set-filename (bookmark-name-or-record filename)
385 "Set the full filename of BOOKMARK-NAME-OR-RECORD to FILENAME."
386 (bookmark-prop-set bookmark-name-or-record 'filename filename))
e3437989
RS
387
388
eff37c5e
KF
389(defun bookmark-get-position (bookmark-name-or-record)
390 "Return the position (i.e.: point) of BOOKMARK-NAME-OR-RECORD, or nil if none."
391 (bookmark-prop-get bookmark-name-or-record 'position))
e3437989
RS
392
393
eff37c5e
KF
394(defun bookmark-set-position (bookmark-name-or-record position)
395 "Set the position (i.e.: point) of BOOKMARK-NAME-OR-RECORD to POSITION."
396 (bookmark-prop-set bookmark-name-or-record 'position position))
e3437989
RS
397
398
eff37c5e
KF
399(defun bookmark-get-front-context-string (bookmark-name-or-record)
400 "Return the front-context-string of BOOKMARK-NAME-OR-RECORD, or nil if none."
401 (bookmark-prop-get bookmark-name-or-record 'front-context-string))
e3437989
RS
402
403
eff37c5e
KF
404(defun bookmark-set-front-context-string (bookmark-name-or-record string)
405 "Set the front-context-string of BOOKMARK-NAME-OR-RECORD to STRING."
406 (bookmark-prop-set bookmark-name-or-record 'front-context-string string))
e3437989
RS
407
408
eff37c5e
KF
409(defun bookmark-get-rear-context-string (bookmark-name-or-record)
410 "Return the rear-context-string of BOOKMARK-NAME-OR-RECORD, or nil if none."
411 (bookmark-prop-get bookmark-name-or-record 'rear-context-string))
e3437989
RS
412
413
eff37c5e
KF
414(defun bookmark-set-rear-context-string (bookmark-name-or-record string)
415 "Set the rear-context-string of BOOKMARK-NAME-OR-RECORD to STRING."
416 (bookmark-prop-set bookmark-name-or-record 'rear-context-string string))
e3437989
RS
417
418
eff37c5e
KF
419(defun bookmark-get-handler (bookmark-name-or-record)
420 "Return the handler function for BOOKMARK-NAME-OR-RECORD, or nil if none."
421 (bookmark-prop-get bookmark-name-or-record 'handler))
e3437989 422
4c0b5ad1
KF
423(defvar bookmark-history nil
424 "The history list for bookmark functions.")
425
426
e3437989
RS
427(defun bookmark-completing-read (prompt &optional default)
428 "Prompting with PROMPT, read a bookmark name in completion.
429PROMPT will get a \": \" stuck on the end no matter what, so you
430probably don't want to include one yourself.
7d688336
TV
431Optional arg DEFAULT is a string to return if the user input is empty.
432If DEFAULT is nil then return empty string for empty input."
e3437989 433 (bookmark-maybe-load-default-file) ; paranoia
175d0960 434 (if (listp last-nonmenu-event)
fd4489f0
CY
435 (bookmark-menu-popup-paned-menu t prompt
436 (if bookmark-sort-flag
437 (sort (bookmark-all-names)
438 'string-lessp)
439 (bookmark-all-names)))
175d0960 440 (let* ((completion-ignore-case bookmark-completion-ignore-case)
7d688336 441 (default (unless (equal "" default) default))
b861e45e
SM
442 (prompt (concat prompt (if default
443 (format " (%s): " default)
7d688336
TV
444 ": "))))
445 (completing-read prompt
446 (lambda (string pred action)
447 (if (eq action 'metadata)
448 '(metadata (category . bookmark))
449 (complete-with-action
450 action bookmark-alist string pred)))
451 nil 0 nil 'bookmark-history default))))
e3437989
RS
452
453
4c0b5ad1
KF
454(defmacro bookmark-maybe-historicize-string (string)
455 "Put STRING into the bookmark prompt history, if caller non-interactive.
456We need this because sometimes bookmark functions are invoked from
457menus, so `completing-read' never gets a chance to set `bookmark-history'."
dbe99ae9 458 `(or
32226619 459 (called-interactively-p 'interactive)
dbe99ae9 460 (setq bookmark-history (cons ,string bookmark-history))))
4c0b5ad1 461
43f8b275 462(defvar bookmark-make-record-function 'bookmark-make-record-default
e0385bf4
KF
463 "A function that should be called to create a bookmark record.
464Modes may set this variable buffer-locally to enable bookmarking of
465locations that should be treated specially, such as Info nodes,
466news posts, images, pdf documents, etc.
1666a6b3 467
32a091dd 468The function will be called with no arguments.
43f8b275
SM
469It should signal a user error if it is unable to construct a record for
470the current location.
136894c8
SM
471
472The returned record should be a cons cell of the form (NAME . ALIST)
473where ALIST is as described in `bookmark-alist' and may typically contain
5c1b3e94
KF
474a special cons (handler . HANDLER-FUNC) which specifies the handler function
475that should be used instead of `bookmark-default-handler' to open this
476bookmark. See the documentation for `bookmark-alist' for more.
136894c8
SM
477
478NAME is a suggested name for the constructed bookmark. It can be nil
43f8b275
SM
479in which case a default heuristic will be used. The function can also
480equivalently just return ALIST without NAME.")
136894c8
SM
481
482(defun bookmark-make-record ()
483 "Return a new bookmark record (NAME . ALIST) for the current location."
484 (let ((record (funcall bookmark-make-record-function)))
c3512092
LL
485 ;; Set up default name if the function does not provide one.
486 (unless (stringp (car record))
487 (if (car record) (push nil record))
488 (setcar record (or bookmark-current-bookmark (bookmark-buffer-name))))
ce0fcefa
JL
489 ;; Set up defaults.
490 (bookmark-prop-set
491 record 'defaults
492 (delq nil (delete-dups (append (bookmark-prop-get record 'defaults)
493 (list bookmark-current-bookmark
c3512092
LL
494 (car record)
495 (bookmark-buffer-name))))))
496 record))
136894c8
SM
497
498(defun bookmark-store (name alist no-overwrite)
499 "Store the bookmark NAME with data ALIST.
500If NO-OVERWRITE is non-nil and another bookmark of the same name already
501exists in `bookmark-alist', record the new bookmark without throwing away the
502old one."
e3437989 503 (bookmark-maybe-load-default-file)
88415bfc 504 (let ((stripped-name (copy-sequence name)))
4211e434 505 (or (featurep 'xemacs)
09fd6588
KF
506 ;; XEmacs's `set-text-properties' doesn't work on
507 ;; free-standing strings, apparently.
508 (set-text-properties 0 (length stripped-name) nil stripped-name))
2ef435bf
SM
509 (if (and (not no-overwrite)
510 (bookmark-get-bookmark stripped-name 'noerror))
3b526bae 511 ;; already existing bookmark under that name and
88415bfc 512 ;; no prefix arg means just overwrite old bookmark
43f8b275
SM
513 ;; Use the new (NAME . ALIST) format.
514 (setcdr (bookmark-get-bookmark stripped-name) alist)
dbe99ae9 515
88415bfc
KH
516 ;; otherwise just cons it onto the front (either the bookmark
517 ;; doesn't exist already, or there is no prefix arg. In either
518 ;; case, we want the new bookmark consed onto the alist...)
dbe99ae9 519
43f8b275 520 (push (cons stripped-name alist) bookmark-alist))
dbe99ae9 521
88415bfc
KH
522 ;; Added by db
523 (setq bookmark-current-bookmark stripped-name)
524 (setq bookmark-alist-modification-count
525 (1+ bookmark-alist-modification-count))
526 (if (bookmark-time-to-save-p)
136894c8 527 (bookmark-save))
e3437989 528
136894c8
SM
529 (setq bookmark-current-bookmark stripped-name)
530 (bookmark-bmenu-surreptitiously-rebuild-list)))
e3437989 531
e44fa724 532(defun bookmark-make-record-default (&optional no-file no-context posn)
32a091dd 533 "Return the record describing the location of a new bookmark.
e44fa724
KF
534Point should be at the buffer in which the bookmark is being set,
535and normally should be at the position where the bookmark is desired,
536but see the optional arguments for other possibilities.
537
538If NO-FILE is non-nil, then only return the subset of the
539record that pertains to the location within the buffer, leaving off
540the part that records the filename.
541
542If NO-CONTEXT is non-nil, do not include the front- and rear-context
543strings in the record -- the position is enough.
544
545If POSN is non-nil, record POSN as the point instead of `(point)'."
546 `(,@(unless no-file `((filename . ,(bookmark-buffer-file-name))))
547 ,@(unless no-context `((front-context-string
548 . ,(if (>= (- (point-max) (point))
549 bookmark-search-size)
550 (buffer-substring-no-properties
551 (point)
552 (+ (point) bookmark-search-size))
553 nil))))
554 ,@(unless no-context `((rear-context-string
555 . ,(if (>= (- (point) (point-min))
556 bookmark-search-size)
557 (buffer-substring-no-properties
558 (point)
559 (- (point) bookmark-search-size))
560 nil))))
561 (position . ,(or posn (point)))))
dbe99ae9 562
e3437989
RS
563\f
564;;; File format stuff
565
7c85c02b
KF
566;; *IMPORTANT NOTICE* If you are thinking about modifying (redefining)
567;; the bookmark file format -- please don't. The current format
568;; should be extensible enough. If you feel the need to change it,
569;; please discuss it with other Emacs developers first.
570;;
571;; The format of `bookmark-alist' has changed twice in its lifetime.
572;; This comment describes the three formats, FIRST, SECOND, and
573;; CURRENT.
574;;
575;; The FIRST format was used prior to Emacs 20:
e3437989 576;;
7c85c02b 577;; ((BOOKMARK-NAME (FILENAME
185ae1f1
SM
578;; STRING-IN-FRONT
579;; STRING-BEHIND
580;; POINT))
e3437989
RS
581;; ...)
582;;
7c85c02b
KF
583;; The SECOND format was introduced in Emacs 20:
584;;
585;; ((BOOKMARK-NAME ((filename . FILENAME)
586;; (position . POS)
587;; (front-context-string . STR-AFTER-POS)
588;; (rear-context-string . STR-BEFORE-POS)
589;; (annotation . ANNOTATION)
590;; (whatever . VALUE)
591;; ...
592;; ))
593;; ...)
594;;
595;; The CURRENT format was introduced in Emacs 22:
e3437989 596;;
185ae1f1 597;; ((BOOKMARK-NAME (filename . FILENAME)
7c85c02b
KF
598;; (position . POS)
599;; (front-context-string . STR-AFTER-POS)
600;; (rear-context-string . STR-BEFORE-POS)
185ae1f1
SM
601;; (annotation . ANNOTATION)
602;; (whatever . VALUE)
603;; ...
7c85c02b 604;; )
e3437989
RS
605;; ...)
606;;
7c85c02b
KF
607;; Both FIRST and SECOND have the same level of nesting: the cadr of a
608;; bookmark record is a list of entry information. FIRST and SECOND
609;; differ in the form of the record information: FIRST uses a list of
610;; atoms, and SECOND uses an alist. In the FIRST format, the order of
611;; the list elements matters. In the SECOND format, the order of the
612;; alist elements is unimportant. The SECOND format facilitates the
613;; addition of new kinds of elements, to support new kinds of
614;; bookmarks or code evolution.
e3437989 615;;
7c85c02b
KF
616;; The CURRENT format removes a level of nesting wrt FIRST and SECOND,
617;; saving one cons cell per bookmark: the cadr of a bookmark record is
618;; no longer a cons. Why that change was made remains a mystery --
619;; just be aware of it. (Be aware too that this explanatory comment
620;; was incorrect in Emacs 22 and Emacs 23.1.)
e3437989 621;;
7c85c02b
KF
622;; To deal with the change from FIRST format to SECOND, conversion
623;; code was added, and it is still in use. See
624;; `bookmark-maybe-upgrade-file-format'.
e3437989 625;;
7c85c02b
KF
626;; No conversion from SECOND to CURRENT is done. Instead, the code
627;; handles both formats OK. It must continue to do so.
e3437989 628;;
7c85c02b
KF
629;; See the doc string of `bookmark-alist' for information about the
630;; elements that define a bookmark (e.g. `filename').
e3437989
RS
631
632
633(defconst bookmark-file-format-version 1
634 "The current version of the format used by bookmark files.
635You should never need to change this.")
636
637
638(defconst bookmark-end-of-version-stamp-marker
639 "-*- End Of Bookmark File Format Version Stamp -*-\n"
640 "This string marks the end of the version stamp in a bookmark file.")
641
642
643(defun bookmark-alist-from-buffer ()
d32ff76a 644 "Return a `bookmark-alist' (in any format) from the current buffer.
e3437989
RS
645The buffer must of course contain bookmark format information.
646Does not care from where in the buffer it is called, and does not
647affect point."
648 (save-excursion
649 (goto-char (point-min))
650 (if (search-forward bookmark-end-of-version-stamp-marker nil t)
651 (read (current-buffer))
652 ;; Else we're dealing with format version 0
653 (if (search-forward "(" nil t)
654 (progn
655 (forward-char -1)
656 (read (current-buffer)))
657 ;; Else no hope of getting information here.
a3ad20c2 658 (error "Not bookmark format")))))
e3437989
RS
659
660
661(defun bookmark-upgrade-version-0-alist (old-list)
4eadcdf8 662 "Upgrade a version 0 alist OLD-LIST to the current version."
e3437989
RS
663 (mapcar
664 (lambda (bookmark)
665 (let* ((name (car bookmark))
666 (record (car (cdr bookmark)))
667 (filename (nth 0 record))
668 (front-str (nth 1 record))
669 (rear-str (nth 2 record))
670 (position (nth 3 record))
671 (ann (nth 4 record)))
672 (list
673 name
8a946354
SS
674 `((filename . ,filename)
675 (front-context-string . ,(or front-str ""))
676 (rear-context-string . ,(or rear-str ""))
677 (position . ,position)
678 (annotation . ,ann)))))
e3437989
RS
679 old-list))
680
681
682(defun bookmark-upgrade-file-format-from-0 ()
683 "Upgrade a bookmark file of format 0 (the original format) to format 1.
d32ff76a 684This expects to be called from `point-min' in a bookmark file."
e3437989
RS
685 (message "Upgrading bookmark format from 0 to %d..."
686 bookmark-file-format-version)
687 (let* ((old-list (bookmark-alist-from-buffer))
688 (new-list (bookmark-upgrade-version-0-alist old-list)))
689 (delete-region (point-min) (point-max))
690 (bookmark-insert-file-format-version-stamp)
691 (pp new-list (current-buffer))
692 (save-buffer))
693 (goto-char (point-min))
60d0378e 694 (message "Upgrading bookmark format from 0 to %d...done"
e3437989
RS
695 bookmark-file-format-version)
696 )
697
698
699(defun bookmark-grok-file-format-version ()
700 "Return an integer which is the file-format version of this bookmark file.
d32ff76a 701This expects to be called from `point-min' in a bookmark file."
e3437989
RS
702 (if (looking-at "^;;;;")
703 (save-excursion
704 (save-match-data
705 (re-search-forward "[0-9]")
706 (forward-char -1)
707 (read (current-buffer))))
708 ;; Else this is format version 0, the original one, which didn't
709 ;; even have version stamps.
710 0))
711
712
713(defun bookmark-maybe-upgrade-file-format ()
714 "Check the file-format version of this bookmark file.
715If the version is not up-to-date, upgrade it automatically.
d32ff76a 716This expects to be called from `point-min' in a bookmark file."
e3437989
RS
717 (let ((version (bookmark-grok-file-format-version)))
718 (cond
719 ((= version bookmark-file-format-version)
720 ) ; home free -- version is current
721 ((= version 0)
722 (bookmark-upgrade-file-format-from-0))
723 (t
a3ad20c2 724 (error "Bookmark file format version strangeness")))))
e3437989
RS
725
726
727(defun bookmark-insert-file-format-version-stamp ()
5e0e5feb 728 "Insert text indicating current version of bookmark file format."
e3437989
RS
729 (insert
730 (format ";;;; Emacs Bookmark Format Version %d ;;;;\n"
731 bookmark-file-format-version))
732 (insert ";;; This format is meant to be slightly human-readable;\n"
733 ";;; nevertheless, you probably don't want to edit it.\n"
734 ";;; "
735 bookmark-end-of-version-stamp-marker))
736
737
738;;; end file-format stuff
739
740\f
9a9f1fdd
KF
741;;; Generic helpers.
742
743(defun bookmark-maybe-message (fmt &rest args)
744 "Apply `message' to FMT and ARGS, but only if the display is fast enough."
745 (if (>= baud-rate 9600)
746 (apply 'message fmt args)))
747
748\f
e3437989
RS
749;;; Core code:
750
fc22668d
SM
751(defvar bookmark-minibuffer-read-name-map
752 (let ((map (make-sparse-keymap)))
753 (set-keymap-parent map minibuffer-local-map)
754 (define-key map "\C-w" 'bookmark-yank-word)
fc22668d
SM
755 map))
756
d22d6453 757;;;###autoload
13901bcb 758(defun bookmark-set (&optional name no-overwrite)
825382c0 759 "Set a bookmark named NAME at the current location.
13901bcb
KF
760If name is nil, then prompt the user.
761
7c85c02b
KF
762With a prefix arg (non-nil NO-OVERWRITE), do not overwrite any
763existing bookmark that has the same name as NAME, but instead push the
764new bookmark onto the bookmark alist. The most recently set bookmark
765with name NAME is thus the one in effect at any given time, but the
766others are still there, should the user decide to delete the most
767recent one.
b3bf02fa
RS
768
769To yank words from the text of the buffer and use them as part of the
9aef3b21 770bookmark name, type C-w while setting a bookmark. Successive C-w's
b3bf02fa
RS
771yank successive words.
772
7c85c02b
KF
773Typing C-u inserts (at the bookmark name prompt) the name of the last
774bookmark used in the document where the new bookmark is being set;
775this helps you use a single bookmark name to track progress through a
776large document. If there is no prior bookmark for this document, then
777C-u inserts an appropriate name based on the buffer or file.
b3bf02fa 778
0472835f 779Use \\[bookmark-delete] to remove bookmarks (you give it a name and
7c85c02b 780it removes only the first instance of a bookmark with that name from
0472835f 781the list of bookmarks.)"
4eadcdf8 782 (interactive (list nil current-prefix-arg))
8f2eaa8a
TV
783 (unwind-protect
784 (let* ((record (bookmark-make-record))
ce0fcefa
JL
785 ;; `defaults' is a transient element of the
786 ;; extensible format described above in the section
787 ;; `File format stuff'. Bookmark record functions
788 ;; can use it to specify a list of default values
789 ;; accessible via M-n while reading a bookmark name.
790 (defaults (bookmark-prop-get record 'defaults))
791 (default (if (consp defaults) (car defaults) defaults)))
792
793 (if defaults
794 ;; Don't store default values in the record.
795 (setq record (assq-delete-all 'defaults record))
796 ;; When no defaults in the record, use its first element.
797 (setq defaults (car record) default defaults))
8f2eaa8a
TV
798
799 (bookmark-maybe-load-default-file)
800 ;; Don't set `bookmark-yank-point' and `bookmark-current-buffer'
801 ;; if they have been already set in another buffer. (e.g gnus-art).
802 (unless (and bookmark-yank-point
803 bookmark-current-buffer)
804 (setq bookmark-yank-point (point))
805 (setq bookmark-current-buffer (current-buffer)))
806
807 (let ((str
808 (or name
809 (read-from-minibuffer
810 (format "Set bookmark (%s): " default)
811 nil
812 bookmark-minibuffer-read-name-map
ce0fcefa 813 nil nil defaults))))
8f2eaa8a
TV
814 (and (string-equal str "") (setq str default))
815 (bookmark-store str (cdr record) no-overwrite)
816
817 ;; Ask for an annotation buffer for this bookmark
818 (when bookmark-use-annotations
819 (bookmark-edit-annotation str))))
820 (setq bookmark-yank-point nil)
821 (setq bookmark-current-buffer nil)))
822
e3437989
RS
823
824(defun bookmark-kill-line (&optional newline-too)
825 "Kill from point to end of line.
826If optional arg NEWLINE-TOO is non-nil, delete the newline too.
d32ff76a 827Does not affect the kill ring."
5ed619e0 828 (let ((eol (line-end-position)))
e3437989
RS
829 (delete-region (point) eol)
830 (if (and newline-too (looking-at "\n"))
831 (delete-char 1))))
832
833
4c0b5ad1 834;; Defvars to avoid compilation warnings:
a7e83b26
SM
835(defvar bookmark-annotation-name nil
836 "Variable holding the name of the bookmark.
837This is used in `bookmark-edit-annotation' to record the bookmark
838whose annotation is being edited.")
e3437989
RS
839
840
eff37c5e
KF
841(defun bookmark-default-annotation-text (bookmark-name)
842 "Return default annotation text for BOOKMARK-NAME.
13901bcb
KF
843The default annotation text is simply some text explaining how to use
844annotations."
eff37c5e 845 (concat "# Type the annotation for bookmark '" bookmark-name "' here.\n"
e3437989
RS
846 "# All lines which start with a '#' will be deleted.\n"
847 "# Type C-c C-c when done.\n#\n"
848 "# Author: " (user-full-name) " <" (user-login-name) "@"
849 (system-name) ">\n"
850 "# Date: " (current-time-string) "\n"))
851
852
e5bd0a28
SM
853(define-obsolete-variable-alias 'bookmark-read-annotation-text-func
854 'bookmark-edit-annotation-text-func "23.1")
a7e83b26 855(defvar bookmark-edit-annotation-text-func 'bookmark-default-annotation-text
5e0e5feb 856 "Function to return default text to use for a bookmark annotation.
d32ff76a 857It takes one argument, the name of the bookmark, as a string.")
e3437989 858
a7e83b26
SM
859(defvar bookmark-edit-annotation-mode-map
860 (let ((map (make-sparse-keymap)))
861 (set-keymap-parent map text-mode-map)
862 (define-key map "\C-c\C-c" 'bookmark-send-edited-annotation)
863 map)
e3437989
RS
864 "Keymap for editing an annotation of a bookmark.")
865
1b3b87df 866(defun bookmark-insert-annotation (bookmark-name-or-record)
eff37c5e
KF
867 (insert (funcall bookmark-edit-annotation-text-func bookmark-name-or-record))
868 (let ((annotation (bookmark-get-annotation bookmark-name-or-record)))
91169ba7 869 (if (and annotation (not (string-equal annotation "")))
1b3b87df
SM
870 (insert annotation))))
871
872(define-derived-mode bookmark-edit-annotation-mode
873 text-mode "Edit Bookmark Annotation"
874 "Mode for editing the annotation of bookmarks.
875When you have finished composing, type \\[bookmark-send-annotation].
876
877\\{bookmark-edit-annotation-mode-map}")
e3437989
RS
878
879
880(defun bookmark-send-edited-annotation ()
dc5dcc00
JB
881 "Use buffer contents as annotation for a bookmark.
882Lines beginning with `#' are ignored."
e3437989 883 (interactive)
1b3b87df 884 (if (not (derived-mode-p 'bookmark-edit-annotation-mode))
a3ad20c2 885 (error "Not in bookmark-edit-annotation-mode"))
e3437989
RS
886 (goto-char (point-min))
887 (while (< (point) (point-max))
888 (if (looking-at "^#")
889 (bookmark-kill-line t)
890 (forward-line 1)))
fc22668d
SM
891 ;; Take no chances with text properties.
892 (let ((annotation (buffer-substring-no-properties (point-min) (point-max)))
eff37c5e
KF
893 (bookmark-name bookmark-annotation-name))
894 (bookmark-set-annotation bookmark-name annotation)
b894c439
KF
895 (setq bookmark-alist-modification-count
896 (1+ bookmark-alist-modification-count))
67b70de9 897 (bookmark-bmenu-surreptitiously-rebuild-list))
e3437989
RS
898 (kill-buffer (current-buffer)))
899
900
eff37c5e
KF
901(defun bookmark-edit-annotation (bookmark-name-or-record)
902 "Pop up a buffer for editing bookmark BOOKMARK-NAME-OR-RECORD's annotation."
175d0960 903 (pop-to-buffer (generate-new-buffer-name "*Bookmark Annotation Compose*"))
1b3b87df
SM
904 (bookmark-insert-annotation bookmark-name-or-record)
905 (bookmark-edit-annotation-mode)
906 (set (make-local-variable 'bookmark-annotation-name)
907 bookmark-name-or-record))
e3437989 908
b3bf02fa 909
4cd51172 910(defun bookmark-buffer-name ()
7c85c02b
KF
911 "Return the name of the current buffer in a form usable as a bookmark name.
912If the buffer is associated with a file or directory, use that name."
4cd51172 913 (cond
4cd51172
RS
914 ;; Or are we a file?
915 (buffer-file-name (file-name-nondirectory buffer-file-name))
916 ;; Or are we a directory?
917 ((and (boundp 'dired-directory) dired-directory)
918 (let* ((dirname (if (stringp dired-directory)
919 dired-directory
920 (car dired-directory)))
921 (idx (1- (length dirname))))
922 ;; Strip the trailing slash.
923 (if (= ?/ (aref dirname idx))
924 (file-name-nondirectory (substring dirname 0 idx))
925 ;; Else return the current-buffer
926 (buffer-name (current-buffer)))))
927 ;; If all else fails, use the buffer's name.
928 (t
929 (buffer-name (current-buffer)))))
930
931
b3bf02fa 932(defun bookmark-yank-word ()
6d6a5b7e
KF
933 "Get the next word from buffer `bookmark-current-buffer' and append
934it to the name of the bookmark currently being set, advancing
0472835f 935`bookmark-yank-point' by one word."
b3bf02fa 936 (interactive)
43f8b275
SM
937 (let ((string (with-current-buffer bookmark-current-buffer
938 (goto-char bookmark-yank-point)
939 (buffer-substring-no-properties
940 (point)
941 (progn
942 (forward-word 1)
943 (setq bookmark-yank-point (point)))))))
b3bf02fa
RS
944 (insert string)))
945
b3bf02fa 946(defun bookmark-buffer-file-name ()
d4432055 947 "Return the current buffer's file in a way useful for bookmarks."
3889f0fa
SM
948 ;; Abbreviate the path, both so it's shorter and so it's more
949 ;; portable. E.g., the user's home dir might be a different
950 ;; path on different machines, but "~/" will still reach it.
9201cc28 951 (abbreviate-file-name
3889f0fa
SM
952 (cond
953 (buffer-file-name buffer-file-name)
954 ((and (boundp 'dired-directory) dired-directory)
955 (if (stringp dired-directory)
956 dired-directory
957 (car dired-directory)))
958 (t (error "Buffer not visiting a file or directory")))))
e3437989
RS
959
960
e3437989 961(defun bookmark-maybe-load-default-file ()
13901bcb 962 "If bookmarks have not been loaded from the default place, load them."
d22d6453
RS
963 (and (not bookmarks-already-loaded)
964 (null bookmark-alist)
e3437989
RS
965 (prog2
966 (and
967 ;; Possibly the old bookmark file, "~/.emacs-bkmrks", needs
968 ;; to be renamed.
fe8c0b47
SM
969 (file-exists-p bookmark-old-default-file)
970 (not (file-exists-p bookmark-default-file))
971 (rename-file bookmark-old-default-file
972 bookmark-default-file))
e3437989
RS
973 ;; return t so the `and' will continue...
974 t)
dbe99ae9 975
fe8c0b47 976 (file-readable-p bookmark-default-file)
91169ba7
RS
977 (bookmark-load bookmark-default-file t t)
978 (setq bookmarks-already-loaded t)))
d22d6453 979
e3437989 980
d22d6453 981(defun bookmark-maybe-sort-alist ()
13901bcb
KF
982 "Return `bookmark-alist' for display.
983If `bookmark-sort-flag' is non-nil, then return a sorted copy of the alist."
d22d6453 984 (if bookmark-sort-flag
1de49d4e
TTN
985 (sort (copy-alist bookmark-alist)
986 (function
987 (lambda (x y) (string-lessp (car x) (car y)))))
988 bookmark-alist))
d22d6453 989
e3437989 990
866a7257
CD
991(defvar bookmark-after-jump-hook nil
992 "Hook run after `bookmark-jump' jumps to a bookmark.
993Useful for example to unhide text in `outline-mode'.")
994
eff37c5e
KF
995(defun bookmark--jump-via (bookmark-name-or-record display-function)
996 "Handle BOOKMARK-NAME-OR-RECORD, then call DISPLAY-FUNCTION with
997current buffer as argument.
13901bcb
KF
998
999After calling DISPLAY-FUNCTION, set window point to the point specified
eff37c5e
KF
1000by BOOKMARK-NAME-OR-RECORD, if necessary, run `bookmark-after-jump-hook',
1001and then show any annotations for this bookmark."
1002 (bookmark-handle-bookmark bookmark-name-or-record)
43f8b275
SM
1003 (save-current-buffer
1004 (funcall display-function (current-buffer)))
1005 (let ((win (get-buffer-window (current-buffer) 0)))
1006 (if win (set-window-point win (point))))
1007 ;; FIXME: we used to only run bookmark-after-jump-hook in
1008 ;; `bookmark-jump' itself, but in none of the other commands.
1009 (run-hooks 'bookmark-after-jump-hook)
1010 (if bookmark-automatically-show-annotations
1011 ;; if there is an annotation for this bookmark,
1012 ;; show it in a buffer.
eff37c5e 1013 (bookmark-show-annotation bookmark-name-or-record)))
0f219a97 1014
43f8b275 1015
d22d6453 1016;;;###autoload
e6227f06 1017(defun bookmark-jump (bookmark &optional display-func)
dbe99ae9 1018 "Jump to bookmark BOOKMARK (a point in some file).
9aef3b21
RS
1019You may have a problem using this function if the value of variable
1020`bookmark-alist' is nil. If that happens, you need to load in some
1021bookmarks. See help on function `bookmark-load' for more about
d22d6453
RS
1022this.
1023
e3437989 1024If the file pointed to by BOOKMARK no longer exists, you will be asked
d32ff76a 1025if you wish to give the bookmark a new location, and `bookmark-jump'
e3437989 1026will then jump to the new location, as well as recording it in place
13901bcb
KF
1027of the old one in the permanent bookmark record.
1028
eff37c5e
KF
1029BOOKMARK is usually a bookmark name (a string). It can also be a
1030bookmark record, but this is usually only done by programmatic callers.
e6227f06
KF
1031
1032If DISPLAY-FUNC is non-nil, it is a function to invoke to display the
7c85c02b
KF
1033bookmark. It defaults to `switch-to-buffer'. A typical value for
1034DISPLAY-FUNC would be `switch-to-buffer-other-window'."
e3437989 1035 (interactive
175d0960
SM
1036 (list (bookmark-completing-read "Jump to bookmark"
1037 bookmark-current-bookmark)))
5d8d3a34
RS
1038 (unless bookmark
1039 (error "No bookmark specified"))
4eadcdf8 1040 (bookmark-maybe-historicize-string bookmark)
e6227f06 1041 (bookmark--jump-via bookmark (or display-func 'switch-to-buffer)))
e3437989 1042
d22d6453 1043
241ab2b5
KF
1044;;;###autoload
1045(defun bookmark-jump-other-window (bookmark)
13901bcb 1046 "Jump to BOOKMARK in another window. See `bookmark-jump' for more."
241ab2b5 1047 (interactive
e6227f06
KF
1048 (list (bookmark-completing-read "Jump to bookmark (in another window)"
1049 bookmark-current-bookmark)))
1050 (bookmark-jump bookmark 'switch-to-buffer-other-window))
241ab2b5
KF
1051
1052
79363d93 1053(defun bookmark-jump-noselect (bookmark)
eff37c5e 1054 "Return the location pointed to by BOOKMARK (see `bookmark-jump').
8f7028a8
KF
1055The return value has the form (BUFFER . POINT).
1056
1057Note: this function is deprecated and is present for Emacs 22
0f219a97 1058compatibility only."
59f7af81 1059 (declare (obsolete bookmark-handle-bookmark "23.1"))
73ba5f6d
CY
1060 (save-excursion
1061 (bookmark-handle-bookmark bookmark)
1062 (cons (current-buffer) (point))))
1063
eff37c5e
KF
1064(defun bookmark-handle-bookmark (bookmark-name-or-record)
1065 "Call BOOKMARK-NAME-OR-RECORD's handler or `bookmark-default-handler'
1066if it has none. This changes current buffer and point and returns nil,
abef340a 1067or signals a `file-error'.
13901bcb 1068
eff37c5e
KF
1069If BOOKMARK-NAME-OR-RECORD has no file, this is a no-op. If
1070BOOKMARK-NAME-OR-RECORD has a file, but that file no longer exists,
1071then offer interactively to relocate BOOKMARK-NAME-OR-RECORD."
43f8b275 1072 (condition-case err
eff37c5e 1073 (funcall (or (bookmark-get-handler bookmark-name-or-record)
43f8b275 1074 'bookmark-default-handler)
eff37c5e 1075 (bookmark-get-bookmark bookmark-name-or-record))
dbf8402b 1076 (bookmark-error-no-filename ;file-error
43f8b275
SM
1077 ;; We were unable to find the marked file, so ask if user wants to
1078 ;; relocate the bookmark, else remind them to consider deletion.
eff37c5e
KF
1079 (when (stringp bookmark-name-or-record)
1080 ;; `bookmark-name-or-record' can be either a bookmark name
1081 ;; (from `bookmark-alist') or a bookmark object. If it's an
1082 ;; object, we assume it's a bookmark used internally by some
1083 ;; other package.
1084 (let ((file (bookmark-get-filename bookmark-name-or-record)))
43f8b275 1085 (when file ;Don't know how to relocate if there's no `file'.
5feb1ba7
KF
1086 ;; If file is not a dir, directory-file-name just returns file.
1087 (let ((display-name (directory-file-name file)))
1088 (ding)
1089 ;; Dialog boxes can accept a file target, but usually don't
1090 ;; know how to accept a directory target (at least, this
1091 ;; is true in Gnome on GNU/Linux, and Bug#4230 says it's
1092 ;; true on Windows as well). So we suppress file dialogs
1093 ;; when relocating.
1094 (let ((use-dialog-box nil)
1095 (use-file-dialog nil))
1096 (if (y-or-n-p (concat display-name " nonexistent. Relocate \""
eff37c5e 1097 bookmark-name-or-record "\"? "))
5feb1ba7 1098 (progn
eff37c5e 1099 (bookmark-relocate bookmark-name-or-record)
5feb1ba7 1100 ;; Try again.
eff37c5e 1101 (funcall (or (bookmark-get-handler bookmark-name-or-record)
5feb1ba7 1102 'bookmark-default-handler)
eff37c5e 1103 (bookmark-get-bookmark bookmark-name-or-record)))
5feb1ba7 1104 (message
0472835f 1105 "Bookmark not relocated; consider removing it (%s)."
eff37c5e 1106 bookmark-name-or-record)
5feb1ba7 1107 (signal (car err) (cdr err))))))))))
43f8b275 1108 ;; Added by db.
eff37c5e
KF
1109 (when (stringp bookmark-name-or-record)
1110 (setq bookmark-current-bookmark bookmark-name-or-record))
43f8b275
SM
1111 nil)
1112
54bd972f
SM
1113(define-error 'bookmark-errors nil)
1114(define-error 'bookmark-error-no-filename
1115 "Bookmark has no associated file (or directory)" 'bookmark-errors)
5feb1ba7 1116
13901bcb 1117(defun bookmark-default-handler (bmk-record)
43f8b275 1118 "Default handler to jump to a particular bookmark location.
13901bcb 1119BMK-RECORD is a bookmark record, not a bookmark name (i.e., not a string).
43f8b275 1120Changes current buffer and point and returns nil, or signals a `file-error'."
5feb1ba7 1121 (let ((file (bookmark-get-filename bmk-record))
dbf8402b 1122 (buf (bookmark-prop-get bmk-record 'buffer))
5feb1ba7
KF
1123 (forward-str (bookmark-get-front-context-string bmk-record))
1124 (behind-str (bookmark-get-rear-context-string bmk-record))
1125 (place (bookmark-get-position bmk-record)))
dbf8402b
SM
1126 (set-buffer
1127 (cond
1128 ((and file (file-readable-p file) (not (buffer-live-p buf)))
1129 (find-file-noselect file))
1130 ;; No file found. See if buffer BUF have been created.
1131 ((and buf (get-buffer buf)))
1132 (t ;; If not, raise error.
1133 (signal 'bookmark-error-no-filename (list 'stringp file)))))
1134 (if place (goto-char place))
1135 ;; Go searching forward first. Then, if forward-str exists and
1136 ;; was found in the file, we can search backward for behind-str.
1137 ;; Rationale is that if text was inserted between the two in the
1138 ;; file, it's better to be put before it so you can read it,
1139 ;; rather than after and remain perhaps unaware of the changes.
1140 (when (and forward-str (search-forward forward-str (point-max) t))
1141 (goto-char (match-beginning 0)))
1142 (when (and behind-str (search-backward behind-str (point-min) t))
1143 (goto-char (match-end 0)))
43f8b275 1144 nil))
d22d6453
RS
1145
1146;;;###autoload
eff37c5e
KF
1147(defun bookmark-relocate (bookmark-name)
1148 "Relocate BOOKMARK-NAME to another file, reading file name with minibuffer.
13901bcb 1149
5e0e5feb
RS
1150This makes an already existing bookmark point to that file, instead of
1151the one it used to point at. Useful when a file has been renamed
1152after a bookmark was set in it."
175d0960 1153 (interactive (list (bookmark-completing-read "Bookmark to relocate")))
eff37c5e 1154 (bookmark-maybe-historicize-string bookmark-name)
e3437989 1155 (bookmark-maybe-load-default-file)
eff37c5e 1156 (let* ((bmrk-filename (bookmark-get-filename bookmark-name))
fe8c0b47
SM
1157 (newloc (abbreviate-file-name
1158 (expand-file-name
1159 (read-file-name
eff37c5e 1160 (format "Relocate %s to: " bookmark-name)
fe8c0b47 1161 (file-name-directory bmrk-filename))))))
eff37c5e 1162 (bookmark-set-filename bookmark-name newloc)
43f8b275
SM
1163 (setq bookmark-alist-modification-count
1164 (1+ bookmark-alist-modification-count))
1165 (if (bookmark-time-to-save-p)
1166 (bookmark-save))
91169ba7 1167 (bookmark-bmenu-surreptitiously-rebuild-list)))
e3437989 1168
d22d6453
RS
1169
1170;;;###autoload
eff37c5e
KF
1171(defun bookmark-insert-location (bookmark-name &optional no-history)
1172 "Insert the name of the file associated with BOOKMARK-NAME.
13901bcb 1173
4c0b5ad1
KF
1174Optional second arg NO-HISTORY means don't record this in the
1175minibuffer history list `bookmark-history'."
175d0960 1176 (interactive (list (bookmark-completing-read "Insert bookmark location")))
eff37c5e 1177 (or no-history (bookmark-maybe-historicize-string bookmark-name))
c095b770 1178 (insert (bookmark-location bookmark-name)))
e3437989 1179
fbd98d61 1180;;;###autoload
a15269c0 1181(defalias 'bookmark-locate 'bookmark-insert-location)
e3437989 1182
eff37c5e
KF
1183(defun bookmark-location (bookmark-name-or-record)
1184 "Return a description of the location of BOOKMARK-NAME-OR-RECORD."
e3437989 1185 (bookmark-maybe-load-default-file)
ebb9641f
SM
1186 ;; We could call the `handler' and ask for it to construct a description
1187 ;; dynamically: it would open up several new possibilities, but it
1188 ;; would have the major disadvantage of forcing to load each and
1189 ;; every handler when the user calls bookmark-menu.
eff37c5e
KF
1190 (or (bookmark-prop-get bookmark-name-or-record 'location)
1191 (bookmark-get-filename bookmark-name-or-record)
ebb9641f 1192 "-- Unknown location --"))
e3437989 1193
d22d6453
RS
1194
1195;;;###autoload
eff37c5e
KF
1196(defun bookmark-rename (old-name &optional new-name)
1197 "Change the name of OLD-NAME bookmark to NEW-NAME name.
1198If called from keyboard, prompt for OLD-NAME and NEW-NAME.
1199If called from menubar, select OLD-NAME from a menu and prompt for NEW-NAME.
13901bcb 1200
eff37c5e
KF
1201If called from Lisp, prompt for NEW-NAME if only OLD-NAME was passed
1202as an argument. If called with two strings, then no prompting is done.
1203You must pass at least OLD-NAME when calling from Lisp.
9aef3b21
RS
1204
1205While you are entering the new name, consecutive C-w's insert
3b526bae 1206consecutive words from the text of the buffer into the new bookmark
4c0b5ad1 1207name."
175d0960 1208 (interactive (list (bookmark-completing-read "Old bookmark name")))
eff37c5e 1209 (bookmark-maybe-historicize-string old-name)
e3437989 1210 (bookmark-maybe-load-default-file)
91169ba7 1211
91169ba7
RS
1212 (setq bookmark-yank-point (point))
1213 (setq bookmark-current-buffer (current-buffer))
eff37c5e
KF
1214 (let ((final-new-name
1215 (or new-name ; use second arg, if non-nil
91169ba7
RS
1216 (read-from-minibuffer
1217 "New name: "
1218 nil
1219 (let ((now-map (copy-keymap minibuffer-local-map)))
0472835f 1220 (define-key now-map "\C-w" 'bookmark-yank-word)
91169ba7
RS
1221 now-map)
1222 nil
1223 'bookmark-history))))
eff37c5e
KF
1224 (bookmark-set-name old-name final-new-name)
1225 (setq bookmark-current-bookmark final-new-name)
91169ba7
RS
1226 (bookmark-bmenu-surreptitiously-rebuild-list)
1227 (setq bookmark-alist-modification-count
1228 (1+ bookmark-alist-modification-count))
1229 (if (bookmark-time-to-save-p)
1230 (bookmark-save))))
b3bf02fa 1231
e3437989 1232
d22d6453 1233;;;###autoload
eff37c5e
KF
1234(defun bookmark-insert (bookmark-name)
1235 "Insert the text of the file pointed to by bookmark BOOKMARK-NAME.
1236BOOKMARK-NAME is a bookmark name (a string), not a bookmark record.
13901bcb 1237
9aef3b21
RS
1238You may have a problem using this function if the value of variable
1239`bookmark-alist' is nil. If that happens, you need to load in some
1240bookmarks. See help on function `bookmark-load' for more about
8027e2ad 1241this."
175d0960 1242 (interactive (list (bookmark-completing-read "Insert bookmark contents")))
eff37c5e 1243 (bookmark-maybe-historicize-string bookmark-name)
e3437989 1244 (bookmark-maybe-load-default-file)
d22d6453 1245 (let ((orig-point (point))
1666a6b3 1246 (str-to-insert
43f8b275 1247 (save-current-buffer
eff37c5e 1248 (bookmark-handle-bookmark bookmark-name)
1666a6b3 1249 (buffer-string))))
d22d6453
RS
1250 (insert str-to-insert)
1251 (push-mark)
1252 (goto-char orig-point)))
1253
e3437989 1254
d22d6453 1255;;;###autoload
eff37c5e
KF
1256(defun bookmark-delete (bookmark-name &optional batch)
1257 "Delete BOOKMARK-NAME from the bookmark list.
13901bcb 1258
9aef3b21
RS
1259Removes only the first instance of a bookmark with that name. If
1260there are one or more other bookmarks with the same name, they will
0472835f
JB
1261not be deleted. Defaults to the \"current\" bookmark (that is, the
1262one most recently used in this file, if any).
e3437989
RS
1263Optional second arg BATCH means don't update the bookmark list buffer,
1264probably because we were called from there."
1265 (interactive
175d0960
SM
1266 (list (bookmark-completing-read "Delete bookmark"
1267 bookmark-current-bookmark)))
eff37c5e 1268 (bookmark-maybe-historicize-string bookmark-name)
e3437989 1269 (bookmark-maybe-load-default-file)
eff37c5e 1270 (let ((will-go (bookmark-get-bookmark bookmark-name 'noerror)))
11eb4275
RS
1271 (setq bookmark-alist (delq will-go bookmark-alist))
1272 ;; Added by db, nil bookmark-current-bookmark if the last
3b526bae 1273 ;; occurrence has been deleted
2ef435bf 1274 (or (bookmark-get-bookmark bookmark-current-bookmark 'noerror)
11eb4275 1275 (setq bookmark-current-bookmark nil)))
33e97a28
KF
1276 (unless batch
1277 (bookmark-bmenu-surreptitiously-rebuild-list))
1278 (setq bookmark-alist-modification-count
1279 (1+ bookmark-alist-modification-count))
1280 (when (bookmark-time-to-save-p)
1281 (bookmark-save)))
e3437989 1282
b3bf02fa 1283
13901bcb
KF
1284(defun bookmark-time-to-save-p (&optional final-time)
1285 "Return t if it is time to save bookmarks to disk, nil otherwise.
1286Optional argument FINAL-TIME means this is being called when Emacs
1287is being killed, so save even if `bookmark-save-flag' is a number and
1288is greater than `bookmark-alist-modification-count'."
1289 ;; By Gregory M. Saunders <saunders{_AT_}cis.ohio-state.edu>
1290 (cond (final-time
b3bf02fa
RS
1291 (and (> bookmark-alist-modification-count 0)
1292 bookmark-save-flag))
1293 ((numberp bookmark-save-flag)
1294 (>= bookmark-alist-modification-count bookmark-save-flag))
1295 (t
1296 nil)))
1297
e3437989 1298
d22d6453 1299;;;###autoload
b3bf02fa 1300(defun bookmark-write ()
5e0e5feb
RS
1301 "Write bookmarks to a file (reading the file name with the minibuffer).
1302Don't use this in Lisp programs; use `bookmark-save' instead."
b3bf02fa 1303 (interactive)
e3437989 1304 (bookmark-maybe-load-default-file)
b3bf02fa
RS
1305 (bookmark-save t))
1306
e3437989 1307
d22d6453 1308;;;###autoload
dbe99ae9 1309(defun bookmark-save (&optional parg file)
9aef3b21
RS
1310 "Save currently defined bookmarks.
1311Saves by default in the file defined by the variable
4eadcdf8 1312`bookmark-default-file'. With a prefix arg, save it in file FILE
0472835f 1313\(second argument).
b3bf02fa 1314
d32ff76a
JB
1315If you are calling this from Lisp, the two arguments are PARG and
1316FILE, and if you just want it to write to the default file, then
b3bf02fa
RS
1317pass no arguments. Or pass in nil and FILE, and it will save in FILE
1318instead. If you pass in one argument, and it is non-nil, then the
1319user will be interactively queried for a file to save in.
1320
11eb4275 1321When you want to load in the bookmarks from a file, use
0472835f 1322`bookmark-load', \\[bookmark-load]. That function will prompt you
11eb4275 1323for a file, defaulting to the file defined by variable
e3437989 1324`bookmark-default-file'."
b3bf02fa 1325 (interactive "P")
e3437989 1326 (bookmark-maybe-load-default-file)
b3bf02fa
RS
1327 (cond
1328 ((and (null parg) (null file))
1329 ;;whether interactive or not, write to default file
e3437989 1330 (bookmark-write-file bookmark-default-file))
b3bf02fa
RS
1331 ((and (null parg) file)
1332 ;;whether interactive or not, write to given file
1333 (bookmark-write-file file))
1334 ((and parg (not file))
1335 ;;have been called interactively w/ prefix arg
1336 (let ((file (read-file-name "File to save bookmarks in: ")))
1337 (bookmark-write-file file)))
1338 (t ; someone called us with prefix-arg *and* a file, so just write to file
1339 (bookmark-write-file file)))
1340 ;; signal that we have synced the bookmark file by setting this to
1341 ;; 0. If there was an error at any point before, it will not get
1342 ;; set, which is what we want.
1343 (setq bookmark-alist-modification-count 0))
1344
e3437989
RS
1345
1346\f
b3bf02fa 1347(defun bookmark-write-file (file)
13901bcb 1348 "Write `bookmark-alist' to FILE."
43f8b275
SM
1349 (bookmark-maybe-message "Saving bookmarks to file %s..." file)
1350 (with-current-buffer (get-buffer-create " *Bookmarks*")
1351 (goto-char (point-min))
1352 (delete-region (point-min) (point-max))
1353 (let ((print-length nil)
e4c4abdd
KF
1354 (print-level nil)
1355 ;; See bug #12503 for why we bind `print-circle'. Users
1356 ;; can define their own bookmark types, which can result in
1357 ;; arbitrary Lisp objects being stored in bookmark records,
1358 ;; and some users create objects containing circularities.
1359 (print-circle t))
43f8b275 1360 (bookmark-insert-file-format-version-stamp)
e3f36d03
SM
1361 (insert "(")
1362 ;; Rather than a single call to `pp' we make one per bookmark.
1363 ;; Apparently `pp' has a poor algorithmic complexity, so this
1364 ;; scales a lot better. bug#4485.
0472835f 1365 (dolist (i bookmark-alist) (pp i (current-buffer)))
e3f36d03 1366 (insert ")")
43f8b275
SM
1367 (let ((version-control
1368 (cond
1369 ((null bookmark-version-control) nil)
1370 ((eq 'never bookmark-version-control) 'never)
1371 ((eq 'nospecial bookmark-version-control) version-control)
1372 (t t))))
1373 (condition-case nil
1374 (write-region (point-min) (point-max) file)
1375 (file-error (message "Can't write %s" file)))
1376 (kill-buffer (current-buffer))
1377 (bookmark-maybe-message
1378 "Saving bookmarks to file %s...done" file)))))
e3437989 1379
d22d6453 1380
91169ba7 1381(defun bookmark-import-new-list (new-list)
7c85c02b
KF
1382 "Add NEW-LIST of bookmarks to `bookmark-alist'.
1383Rename new bookmarks as needed using suffix \"<N>\" (N=1,2,3...), when
1384they conflict with existing bookmark names."
b861e45e
SM
1385 (let ((names (bookmark-all-names)))
1386 (dolist (full-record new-list)
1387 (bookmark-maybe-rename full-record names)
1388 (setq bookmark-alist (nconc bookmark-alist (list full-record)))
fdbb4d85 1389 (push (bookmark-name-from-full-record full-record) names))))
91169ba7
RS
1390
1391
1392(defun bookmark-maybe-rename (full-record names)
7c85c02b
KF
1393 "Rename bookmark FULL-RECORD if its current name is already used.
1394This is a helper for `bookmark-import-new-list'."
fdbb4d85 1395 (let ((found-name (bookmark-name-from-full-record full-record)))
91169ba7
RS
1396 (if (member found-name names)
1397 ;; We've got a conflict, so generate a new name
1398 (let ((count 2)
1399 (new-name found-name))
1400 (while (member new-name names)
1401 (setq new-name (concat found-name (format "<%d>" count)))
1402 (setq count (1+ count)))
1403 (bookmark-set-name full-record new-name)))))
1404
1405
d22d6453 1406;;;###autoload
91169ba7 1407(defun bookmark-load (file &optional overwrite no-msg)
9aef3b21
RS
1408 "Load bookmarks from FILE (which must be in bookmark format).
1409Appends loaded bookmarks to the front of the list of bookmarks. If
91169ba7 1410optional second argument OVERWRITE is non-nil, existing bookmarks are
9aef3b21
RS
1411destroyed. Optional third arg NO-MSG means don't display any messages
1412while loading.
b3bf02fa
RS
1413
1414If you load a file that doesn't contain a proper bookmark alist, you
9aef3b21 1415will corrupt Emacs's bookmark list. Generally, you should only load
b3bf02fa 1416in files that were created with the bookmark functions in the first
e3437989 1417place. Your own personal bookmark file, `~/.emacs.bmk', is
8027e2ad 1418maintained automatically by Emacs; you shouldn't need to load it
91169ba7
RS
1419explicitly.
1420
1421If you load a file containing bookmarks with the same names as
1422bookmarks already present in your Emacs, the new bookmarks will get
1423unique numeric suffixes \"<2>\", \"<3>\", ... following the same
1424method buffers use to resolve name collisions."
b3bf02fa 1425 (interactive
e3437989
RS
1426 (list (read-file-name
1427 (format "Load bookmarks from: (%s) "
dbe99ae9 1428 bookmark-default-file)
e3437989
RS
1429 ;;Default might not be used often,
1430 ;;but there's no better default, and
1431 ;;I guess it's better than none at all.
1432 "~/" bookmark-default-file 'confirm)))
fe8c0b47 1433 (setq file (abbreviate-file-name (expand-file-name file)))
43f8b275
SM
1434 (if (not (file-readable-p file))
1435 (error "Cannot read bookmark file %s" file)
1436 (if (null no-msg)
1437 (bookmark-maybe-message "Loading bookmarks from %s..." file))
1438 (with-current-buffer (let ((enable-local-variables nil))
1439 (find-file-noselect file))
1440 (goto-char (point-min))
1441 (bookmark-maybe-upgrade-file-format)
1442 (let ((blist (bookmark-alist-from-buffer)))
1443 (if (listp blist)
1444 (progn
1445 (if overwrite
1446 (progn
1447 (setq bookmark-alist blist)
1448 (setq bookmark-alist-modification-count 0))
1449 ;; else
1450 (bookmark-import-new-list blist)
1451 (setq bookmark-alist-modification-count
1452 (1+ bookmark-alist-modification-count)))
1453 (if (string-equal
fe8c0b47
SM
1454 (abbreviate-file-name
1455 (expand-file-name bookmark-default-file))
43f8b275
SM
1456 file)
1457 (setq bookmarks-already-loaded t))
1458 (bookmark-bmenu-surreptitiously-rebuild-list))
1459 (error "Invalid bookmark list in %s" file)))
1460 (kill-buffer (current-buffer)))
1461 (if (null no-msg)
1462 (bookmark-maybe-message "Loading bookmarks from %s...done" file))))
b3bf02fa 1463
d22d6453 1464
e3437989 1465\f
43f8b275
SM
1466;;; Code supporting the dired-like bookmark menu.
1467;; Prefix is "bookmark-bmenu" for "buffer-menu":
e3437989
RS
1468
1469
e3437989
RS
1470(defvar bookmark-bmenu-hidden-bookmarks ())
1471
1472
b016851c
SM
1473(defvar bookmark-bmenu-mode-map
1474 (let ((map (make-keymap)))
1475 (set-keymap-parent map special-mode-map)
1476 (define-key map "v" 'bookmark-bmenu-select)
1477 (define-key map "w" 'bookmark-bmenu-locate)
1478 (define-key map "2" 'bookmark-bmenu-2-window)
1479 (define-key map "1" 'bookmark-bmenu-1-window)
1480 (define-key map "j" 'bookmark-bmenu-this-window)
1481 (define-key map "\C-c\C-c" 'bookmark-bmenu-this-window)
1482 (define-key map "f" 'bookmark-bmenu-this-window)
1483 (define-key map "\C-m" 'bookmark-bmenu-this-window)
1484 (define-key map "o" 'bookmark-bmenu-other-window)
1485 (define-key map "\C-o" 'bookmark-bmenu-switch-other-window)
1486 (define-key map "s" 'bookmark-bmenu-save)
1487 (define-key map "k" 'bookmark-bmenu-delete)
1488 (define-key map "\C-d" 'bookmark-bmenu-delete-backwards)
1489 (define-key map "x" 'bookmark-bmenu-execute-deletions)
1490 (define-key map "d" 'bookmark-bmenu-delete)
1491 (define-key map " " 'next-line)
1492 (define-key map "n" 'next-line)
1493 (define-key map "p" 'previous-line)
1494 (define-key map "\177" 'bookmark-bmenu-backup-unmark)
1495 (define-key map "u" 'bookmark-bmenu-unmark)
1496 (define-key map "m" 'bookmark-bmenu-mark)
1497 (define-key map "l" 'bookmark-bmenu-load)
1498 (define-key map "r" 'bookmark-bmenu-rename)
1499 (define-key map "R" 'bookmark-bmenu-relocate)
1500 (define-key map "t" 'bookmark-bmenu-toggle-filenames)
1501 (define-key map "a" 'bookmark-bmenu-show-annotation)
1502 (define-key map "A" 'bookmark-bmenu-show-all-annotations)
1503 (define-key map "e" 'bookmark-bmenu-edit-annotation)
8b340240 1504 (define-key map "/" 'bookmark-bmenu-search)
b016851c
SM
1505 (define-key map [mouse-2] 'bookmark-bmenu-other-window-with-mouse)
1506 map))
1507
e3437989
RS
1508;; Bookmark Buffer Menu mode is suitable only for specially formatted
1509;; data.
1510(put 'bookmark-bmenu-mode 'mode-class 'special)
1511
1512
1513;; todo: need to display whether or not bookmark exists as a buffer in
dbe99ae9 1514;; flag column.
d22d6453
RS
1515
1516;; Format:
e3437989
RS
1517;; FLAGS BOOKMARK [ LOCATION ]
1518
1519
1520(defun bookmark-bmenu-surreptitiously-rebuild-list ()
1521 "Rebuild the Bookmark List if it exists.
1522Don't affect the buffer ring order."
1523 (if (get-buffer "*Bookmark List*")
1524 (save-excursion
dbe99ae9 1525 (save-window-excursion
e3437989 1526 (bookmark-bmenu-list)))))
d22d6453 1527
d22d6453
RS
1528
1529;;;###autoload
e3437989 1530(defun bookmark-bmenu-list ()
d22d6453
RS
1531 "Display a list of existing bookmarks.
1532The list is displayed in a buffer named `*Bookmark List*'.
e3437989
RS
1533The leftmost column displays a D if the bookmark is flagged for
1534deletion, or > if it is flagged for displaying."
d22d6453 1535 (interactive)
e3437989 1536 (bookmark-maybe-load-default-file)
955ef430
SM
1537 (let ((buf (get-buffer-create "*Bookmark List*")))
1538 (if (called-interactively-p 'interactive)
c3313451 1539 (switch-to-buffer buf)
955ef430 1540 (set-buffer buf)))
175d0960
SM
1541 (let ((inhibit-read-only t))
1542 (erase-buffer)
7a78e19f
KF
1543 (if (not bookmark-bmenu-use-header-line)
1544 (insert "% Bookmark\n- --------\n"))
37789292
RF
1545 (add-text-properties (point-min) (point)
1546 '(font-lock-face bookmark-menu-heading))
b861e45e 1547 (dolist (full-record (bookmark-maybe-sort-alist))
fdbb4d85 1548 (let ((name (bookmark-name-from-full-record full-record))
fc9d6ad6
SM
1549 (annotation (bookmark-get-annotation full-record))
1550 (start (point))
1551 end)
1552 ;; if a bookmark has an annotation, prepend a "*"
1553 ;; in the list of bookmarks.
b861e45e 1554 (insert (if (and annotation (not (string-equal annotation "")))
fc9d6ad6
SM
1555 " *" " ")
1556 name)
1557 (setq end (point))
54136282
KF
1558 (put-text-property
1559 (+ bookmark-bmenu-marks-width start) end 'bookmark-name-prop name)
fc9d6ad6
SM
1560 (when (display-mouse-p)
1561 (add-text-properties
54136282 1562 (+ bookmark-bmenu-marks-width start) end
c095b770
KF
1563 '(font-lock-face bookmark-menu-bookmark
1564 mouse-face highlight
fc9d6ad6
SM
1565 follow-link t
1566 help-echo "mouse-2: go to this bookmark in other window")))
1567 (insert "\n")))
b894c439 1568 (set-buffer-modified-p (not (= bookmark-alist-modification-count 0)))
fc9d6ad6 1569 (goto-char (point-min))
fc9d6ad6 1570 (bookmark-bmenu-mode)
7a78e19f
KF
1571 (if bookmark-bmenu-use-header-line
1572 (bookmark-bmenu-set-header)
1573 (forward-line bookmark-bmenu-inline-header-height))
2575da50
TV
1574 (when (and bookmark-alist bookmark-bmenu-toggle-filenames)
1575 (bookmark-bmenu-toggle-filenames t))))
e3437989
RS
1576
1577;;;###autoload
1578(defalias 'list-bookmarks 'bookmark-bmenu-list)
1579;;;###autoload
1580(defalias 'edit-bookmarks 'bookmark-bmenu-list)
d22d6453 1581
7a78e19f
KF
1582(defun bookmark-bmenu-set-header ()
1583 "Sets the immutable header line."
1584 (let ((header (concat "%% " "Bookmark")))
1585 (when bookmark-bmenu-toggle-filenames
1586 (setq header (concat header
1587 (make-string (- bookmark-bmenu-file-column
1588 (- (length header) 3)) ?\s)
1589 "File")))
1590 (let ((pos 0))
1591 (while (string-match "[ \t\n]+" header pos)
1592 (setq pos (match-end 0))
1593 (put-text-property (match-beginning 0) pos 'display
1594 (list 'space :align-to (- pos 1))
1595 header)))
1596 (put-text-property 0 2 'face 'fixed-pitch header)
1597 (setq header (concat (propertize " " 'display '(space :align-to 0))
1598 header))
1599 ;; Code derived from `buff-menu.el'.
1600 (setq header-line-format header)))
e3437989 1601
abef340a 1602(define-derived-mode bookmark-bmenu-mode special-mode "Bookmark Menu"
d22d6453
RS
1603 "Major mode for editing a list of bookmarks.
1604Each line describes one of the bookmarks in Emacs.
1605Letters do not insert themselves; instead, they are commands.
3b526bae 1606Bookmark names preceded by a \"*\" have annotations.
e3437989
RS
1607\\<bookmark-bmenu-mode-map>
1608\\[bookmark-bmenu-mark] -- mark bookmark to be displayed.
1609\\[bookmark-bmenu-select] -- select bookmark of line point is on.
1610 Also show bookmarks marked using m in other windows.
1611\\[bookmark-bmenu-toggle-filenames] -- toggle displaying of filenames (they may obscure long bookmark names).
1612\\[bookmark-bmenu-locate] -- display (in minibuffer) location of this bookmark.
1613\\[bookmark-bmenu-1-window] -- select this bookmark in full-frame window.
1614\\[bookmark-bmenu-2-window] -- select this bookmark in one window,
d22d6453 1615 together with bookmark selected before this one in another window.
e3437989
RS
1616\\[bookmark-bmenu-this-window] -- select this bookmark in place of the bookmark menu buffer.
1617\\[bookmark-bmenu-other-window] -- select this bookmark in another window,
d22d6453 1618 so the bookmark menu bookmark remains visible in its window.
e3437989 1619\\[bookmark-bmenu-switch-other-window] -- switch the other window to this bookmark.
0472835f
JB
1620\\[bookmark-bmenu-rename] -- rename this bookmark (prompts for new name).
1621\\[bookmark-bmenu-relocate] -- relocate this bookmark's file (prompts for new file).
e3437989 1622\\[bookmark-bmenu-delete] -- mark this bookmark to be deleted, and move down.
dbe99ae9 1623\\[bookmark-bmenu-delete-backwards] -- mark this bookmark to be deleted, and move up.
60d0378e 1624\\[bookmark-bmenu-execute-deletions] -- delete bookmarks marked with `\\[bookmark-bmenu-delete]'.
e3437989 1625\\[bookmark-bmenu-save] -- save the current bookmark list in the default file.
d22d6453 1626 With a prefix arg, prompts for a file to save in.
e3437989
RS
1627\\[bookmark-bmenu-load] -- load in a file of bookmarks (prompts for file.)
1628\\[bookmark-bmenu-unmark] -- remove all kinds of marks from current line.
d22d6453 1629 With prefix argument, also move up one line.
e3437989
RS
1630\\[bookmark-bmenu-backup-unmark] -- back up a line and remove marks.
1631\\[bookmark-bmenu-show-annotation] -- show the annotation, if it exists, for the current bookmark
1632 in another buffer.
1633\\[bookmark-bmenu-show-all-annotations] -- show the annotations of all bookmarks in another buffer.
1634\\[bookmark-bmenu-edit-annotation] -- edit the annotation for the current bookmark."
d22d6453 1635 (setq truncate-lines t)
abef340a
SS
1636 (setq buffer-read-only t))
1637
e3437989 1638
4eadcdf8 1639(defun bookmark-bmenu-toggle-filenames (&optional show)
d22d6453
RS
1640 "Toggle whether filenames are shown in the bookmark list.
1641Optional argument SHOW means show them unconditionally."
1642 (interactive)
1643 (cond
4eadcdf8 1644 (show
e3437989
RS
1645 (setq bookmark-bmenu-toggle-filenames nil)
1646 (bookmark-bmenu-show-filenames)
1647 (setq bookmark-bmenu-toggle-filenames t))
1648 (bookmark-bmenu-toggle-filenames
1649 (bookmark-bmenu-hide-filenames)
1650 (setq bookmark-bmenu-toggle-filenames nil))
d22d6453 1651 (t
e3437989 1652 (bookmark-bmenu-show-filenames)
7a78e19f
KF
1653 (setq bookmark-bmenu-toggle-filenames t)))
1654 (when bookmark-bmenu-use-header-line
1655 (bookmark-bmenu-set-header)))
e3437989 1656
d22d6453 1657
e3437989 1658(defun bookmark-bmenu-show-filenames (&optional force)
13901bcb 1659 "In an interactive bookmark list, show filenames along with bookmarks.
7c85c02b
KF
1660Non-nil FORCE forces a redisplay showing the filenames. FORCE is used
1661mainly for debugging, and should not be necessary in normal use."
e3437989 1662 (if (and (not force) bookmark-bmenu-toggle-filenames)
d22d6453 1663 nil ;already shown, so do nothing
b894c439
KF
1664 (with-buffer-modified-unmodified
1665 (save-excursion
1666 (save-window-excursion
1667 (goto-char (point-min))
7a78e19f
KF
1668 (if (not bookmark-bmenu-use-header-line)
1669 (forward-line bookmark-bmenu-inline-header-height))
b894c439
KF
1670 (setq bookmark-bmenu-hidden-bookmarks ())
1671 (let ((inhibit-read-only t))
1672 (while (< (point) (point-max))
1673 (let ((bmrk (bookmark-bmenu-bookmark)))
1674 (push bmrk bookmark-bmenu-hidden-bookmarks)
5ed619e0 1675 (let ((start (line-end-position)))
b894c439
KF
1676 (move-to-column bookmark-bmenu-file-column t)
1677 ;; Strip off `mouse-face' from the white spaces region.
1678 (if (display-mouse-p)
1679 (remove-text-properties start (point)
1680 '(mouse-face nil help-echo nil))))
1681 (delete-region (point) (progn (end-of-line) (point)))
1682 (insert " ")
1683 ;; Pass the NO-HISTORY arg:
1684 (bookmark-insert-location bmrk t)
1685 (forward-line 1)))))))))
d22d6453 1686
e3437989
RS
1687
1688(defun bookmark-bmenu-hide-filenames (&optional force)
13901bcb 1689 "In an interactive bookmark list, hide the filenames of the bookmarks.
7c85c02b
KF
1690Non-nil FORCE forces a redisplay showing the filenames. FORCE is used
1691mainly for debugging, and should not be necessary in normal use."
fc9d6ad6
SM
1692 (when (and (not force) bookmark-bmenu-toggle-filenames)
1693 ;; nothing to hide if above is nil
b894c439
KF
1694 (with-buffer-modified-unmodified
1695 (save-excursion
1696 (goto-char (point-min))
7a78e19f
KF
1697 (if (not bookmark-bmenu-use-header-line)
1698 (forward-line bookmark-bmenu-inline-header-height))
b894c439
KF
1699 (setq bookmark-bmenu-hidden-bookmarks
1700 (nreverse bookmark-bmenu-hidden-bookmarks))
1701 (let ((inhibit-read-only t))
1702 (while bookmark-bmenu-hidden-bookmarks
54136282 1703 (move-to-column bookmark-bmenu-marks-width t)
b894c439
KF
1704 (bookmark-kill-line)
1705 (let ((name (pop bookmark-bmenu-hidden-bookmarks))
1706 (start (point)))
1707 (insert name)
54136282 1708 (put-text-property start (point) 'bookmark-name-prop name)
b894c439
KF
1709 (if (display-mouse-p)
1710 (add-text-properties
1711 start (point)
c095b770
KF
1712 '(font-lock-face bookmark-menu-bookmark
1713 mouse-face highlight
1714 follow-link t help-echo
b894c439
KF
1715 "mouse-2: go to this bookmark in other window"))))
1716 (forward-line 1)))))))
d22d6453 1717
e3437989 1718
aef053eb 1719(defun bookmark-bmenu-ensure-position ()
7c85c02b 1720 "If point is not on a bookmark line, move it to one.
aef053eb
KF
1721If before the first bookmark line, move to the first; if after the
1722last full line, move to the last full line. The return value is undefined."
7a78e19f
KF
1723 (cond ((and (not bookmark-bmenu-use-header-line)
1724 (< (count-lines (point-min) (point))
1725 bookmark-bmenu-inline-header-height))
d22d6453 1726 (goto-char (point-min))
7a78e19f 1727 (forward-line bookmark-bmenu-inline-header-height))
d22d6453 1728 ((and (bolp) (eobp))
aef053eb 1729 (beginning-of-line 0))))
d22d6453 1730
e3437989
RS
1731
1732(defun bookmark-bmenu-bookmark ()
13901bcb 1733 "Return the bookmark for this line in an interactive bookmark list buffer."
aef053eb 1734 (bookmark-bmenu-ensure-position)
5ae329f4
KF
1735 (save-excursion
1736 (beginning-of-line)
1737 (forward-char bookmark-bmenu-marks-width)
1738 (get-text-property (point) 'bookmark-name-prop)))
d22d6453 1739
e3437989 1740
eff37c5e
KF
1741(defun bookmark-show-annotation (bookmark-name-or-record)
1742 "Display the annotation for BOOKMARK-NAME-OR-RECORD in a buffer,
e3437989 1743if an annotation exists."
eff37c5e 1744 (let ((annotation (bookmark-get-annotation bookmark-name-or-record)))
0c4371fe
KF
1745 (when (and annotation (not (string-equal annotation "")))
1746 (save-excursion
1747 (let ((old-buf (current-buffer)))
1748 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
1749 (delete-region (point-min) (point-max))
0c4371fe
KF
1750 (insert annotation)
1751 (goto-char (point-min))
1752 (switch-to-buffer-other-window old-buf))))))
e3437989
RS
1753
1754
1755(defun bookmark-show-all-annotations ()
1756 "Display the annotations for all bookmarks in a buffer."
b861e45e 1757 (save-selected-window
e3437989
RS
1758 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
1759 (delete-region (point-min) (point-max))
b861e45e 1760 (dolist (full-record bookmark-alist)
fdbb4d85 1761 (let* ((name (bookmark-name-from-full-record full-record))
b861e45e
SM
1762 (ann (bookmark-get-annotation full-record)))
1763 (insert (concat name ":\n"))
1764 (if (and ann (not (string-equal ann "")))
1765 ;; insert the annotation, indented by 4 spaces.
1766 (progn
1767 (save-excursion (insert ann) (unless (bolp)
1768 (insert "\n")))
1769 (while (< (point) (point-max))
1770 (beginning-of-line) ; paranoia
1771 (insert " ")
1772 (forward-line)
1773 (end-of-line))))))
1774 (goto-char (point-min))))
e3437989
RS
1775
1776
1777(defun bookmark-bmenu-mark ()
5e0e5feb 1778 "Mark bookmark on this line to be displayed by \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-select]."
d22d6453
RS
1779 (interactive)
1780 (beginning-of-line)
aef053eb 1781 (bookmark-bmenu-ensure-position)
b894c439
KF
1782 (with-buffer-modified-unmodified
1783 (let ((inhibit-read-only t))
1784 (delete-char 1)
1785 (insert ?>)
1786 (forward-line 1)
1787 (bookmark-bmenu-ensure-position))))
d22d6453 1788
e3437989
RS
1789
1790(defun bookmark-bmenu-select ()
d22d6453 1791 "Select this line's bookmark; also display bookmarks marked with `>'.
e3437989 1792You can mark bookmarks with the \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-mark] command."
d22d6453 1793 (interactive)
aef053eb
KF
1794 (let ((bmrk (bookmark-bmenu-bookmark))
1795 (menu (current-buffer))
1796 (others ())
1797 tem)
1798 (goto-char (point-min))
1799 (while (re-search-forward "^>" nil t)
1800 (setq tem (bookmark-bmenu-bookmark))
1801 (let ((inhibit-read-only t))
1802 (delete-char -1)
1803 (insert ?\s))
1804 (or (string-equal tem bmrk)
1805 (member tem others)
1806 (setq others (cons tem others))))
1807 (setq others (nreverse others)
1808 tem (/ (1- (frame-height)) (1+ (length others))))
1809 (delete-other-windows)
1810 (bookmark-jump bmrk)
1811 (bury-buffer menu)
1812 (if others
1813 (while others
1814 (split-window nil tem)
1815 (other-window 1)
1816 (bookmark-jump (car others))
1817 (setq others (cdr others)))
1818 (other-window 1))))
d22d6453 1819
e3437989 1820
47989945
KF
1821(defun bookmark-bmenu-any-marks ()
1822 "Return non-nil if any bookmarks are marked in the marks column."
1823 (save-excursion
1824 (goto-char (point-min))
1825 (bookmark-bmenu-ensure-position)
1826 (catch 'found-mark
1827 (while (not (eobp))
1828 (beginning-of-line)
1829 (if (looking-at "^\\S-")
1830 (throw 'found-mark t)
1831 (forward-line 1)))
1832 nil)))
1833
1834
e3437989 1835(defun bookmark-bmenu-save (parg)
d22d6453
RS
1836 "Save the current list into a bookmark file.
1837With a prefix arg, prompts for a file to save them in."
1838 (interactive "P")
1839 (save-excursion
1840 (save-window-excursion
cc4d3cad
KF
1841 (bookmark-save parg)
1842 (set-buffer-modified-p nil))))
d22d6453 1843
e3437989
RS
1844
1845(defun bookmark-bmenu-load ()
1846 "Load the bookmark file and rebuild the bookmark menu-buffer."
d22d6453 1847 (interactive)
aef053eb
KF
1848 (bookmark-bmenu-ensure-position)
1849 (save-excursion
1850 (save-window-excursion
1851 ;; This will call `bookmark-bmenu-list'
1852 (call-interactively 'bookmark-load))))
d22d6453 1853
e3437989
RS
1854
1855(defun bookmark-bmenu-1-window ()
d22d6453
RS
1856 "Select this line's bookmark, alone, in full frame."
1857 (interactive)
aef053eb
KF
1858 (bookmark-jump (bookmark-bmenu-bookmark))
1859 (bury-buffer (other-buffer))
1860 (delete-other-windows))
d22d6453 1861
e3437989
RS
1862
1863(defun bookmark-bmenu-2-window ()
d22d6453
RS
1864 "Select this line's bookmark, with previous buffer in second window."
1865 (interactive)
aef053eb
KF
1866 (let ((bmrk (bookmark-bmenu-bookmark))
1867 (menu (current-buffer))
1868 (pop-up-windows t))
1869 (delete-other-windows)
8bdfa064 1870 (switch-to-buffer (other-buffer) nil t)
5b98e31f 1871 (bookmark--jump-via bmrk 'pop-to-buffer)
aef053eb 1872 (bury-buffer menu)))
d22d6453 1873
e3437989
RS
1874
1875(defun bookmark-bmenu-this-window ()
d22d6453
RS
1876 "Select this line's bookmark in this window."
1877 (interactive)
aef053eb 1878 (bookmark-jump (bookmark-bmenu-bookmark)))
d22d6453 1879
e3437989
RS
1880
1881(defun bookmark-bmenu-other-window ()
d22d6453
RS
1882 "Select this line's bookmark in other window, leaving bookmark menu visible."
1883 (interactive)
e3437989 1884 (let ((bookmark (bookmark-bmenu-bookmark)))
5b98e31f 1885 (bookmark--jump-via bookmark 'switch-to-buffer-other-window)))
e40e3151
KF
1886
1887
1888(defun bookmark-bmenu-switch-other-window ()
1889 "Make the other window select this line's bookmark.
1890The current window remains selected."
1891 (interactive)
e197b151 1892 (let ((bookmark (bookmark-bmenu-bookmark))
2cbafa56
CY
1893 (fun (lambda (b) (display-buffer b t))))
1894 (bookmark--jump-via bookmark fun)))
e3437989 1895
7e510a5e
RS
1896(defun bookmark-bmenu-other-window-with-mouse (event)
1897 "Select bookmark at the mouse pointer in other window, leaving bookmark menu visible."
1898 (interactive "e")
43f8b275 1899 (with-current-buffer (window-buffer (posn-window (event-end event)))
7e510a5e
RS
1900 (save-excursion
1901 (goto-char (posn-point (event-end event)))
1902 (bookmark-bmenu-other-window))))
1903
e3437989
RS
1904
1905(defun bookmark-bmenu-show-annotation ()
1906 "Show the annotation for the current bookmark in another window."
1907 (interactive)
1908 (let ((bookmark (bookmark-bmenu-bookmark)))
aef053eb 1909 (bookmark-show-annotation bookmark)))
d22d6453 1910
e3437989
RS
1911
1912(defun bookmark-bmenu-show-all-annotations ()
1913 "Show the annotation for all bookmarks in another window."
1914 (interactive)
1915 (bookmark-show-all-annotations))
1916
1917
1918(defun bookmark-bmenu-edit-annotation ()
1919 "Edit the annotation for the current bookmark in another window."
1920 (interactive)
1921 (let ((bookmark (bookmark-bmenu-bookmark)))
aef053eb 1922 (bookmark-edit-annotation bookmark)))
e3437989
RS
1923
1924
e3437989 1925(defun bookmark-bmenu-unmark (&optional backup)
d22d6453 1926 "Cancel all requested operations on bookmark on this line and move down.
4eadcdf8 1927Optional BACKUP means move up."
d22d6453
RS
1928 (interactive "P")
1929 (beginning-of-line)
aef053eb 1930 (bookmark-bmenu-ensure-position)
b894c439
KF
1931 (with-buffer-modified-unmodified
1932 (let ((inhibit-read-only t))
1933 (delete-char 1)
1934 ;; any flags to reset according to circumstances? How about a
1935 ;; flag indicating whether this bookmark is being visited?
1936 ;; well, we don't have this now, so maybe later.
1937 (insert " "))
1938 (forward-line (if backup -1 1))
1939 (bookmark-bmenu-ensure-position)))
d22d6453 1940
e3437989
RS
1941
1942(defun bookmark-bmenu-backup-unmark ()
d22d6453
RS
1943 "Move up and cancel all requested operations on bookmark on line above."
1944 (interactive)
1945 (forward-line -1)
aef053eb
KF
1946 (bookmark-bmenu-ensure-position)
1947 (bookmark-bmenu-unmark)
1948 (forward-line -1)
1949 (bookmark-bmenu-ensure-position))
d22d6453 1950
e3437989
RS
1951
1952(defun bookmark-bmenu-delete ()
5e0e5feb
RS
1953 "Mark bookmark on this line to be deleted.
1954To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
d22d6453
RS
1955 (interactive)
1956 (beginning-of-line)
aef053eb 1957 (bookmark-bmenu-ensure-position)
b894c439
KF
1958 (with-buffer-modified-unmodified
1959 (let ((inhibit-read-only t))
1960 (delete-char 1)
1961 (insert ?D)
1962 (forward-line 1)
1963 (bookmark-bmenu-ensure-position))))
d22d6453 1964
e3437989
RS
1965
1966(defun bookmark-bmenu-delete-backwards ()
5e0e5feb
RS
1967 "Mark bookmark on this line to be deleted, then move up one line.
1968To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
d22d6453 1969 (interactive)
e3437989 1970 (bookmark-bmenu-delete)
d22d6453 1971 (forward-line -2)
aef053eb
KF
1972 (bookmark-bmenu-ensure-position)
1973 (forward-line 1)
1974 (bookmark-bmenu-ensure-position))
d22d6453 1975
e3437989
RS
1976
1977(defun bookmark-bmenu-execute-deletions ()
38bee102 1978 "Delete bookmarks flagged `D'."
d22d6453 1979 (interactive)
60d0378e 1980 (message "Deleting bookmarks...")
fc9d6ad6 1981 (let ((o-point (point))
e3437989
RS
1982 (o-str (save-excursion
1983 (beginning-of-line)
fc9d6ad6 1984 (unless (looking-at "^D")
e3437989
RS
1985 (buffer-substring
1986 (point)
1987 (progn (end-of-line) (point))))))
1988 (o-col (current-column)))
d22d6453 1989 (goto-char (point-min))
2575da50
TV
1990 (unless bookmark-bmenu-use-header-line
1991 (forward-line 1))
e3437989
RS
1992 (while (re-search-forward "^D" (point-max) t)
1993 (bookmark-delete (bookmark-bmenu-bookmark) t)) ; pass BATCH arg
1994 (bookmark-bmenu-list)
e3437989
RS
1995 (if o-str
1996 (progn
1997 (goto-char (point-min))
1998 (search-forward o-str)
1999 (beginning-of-line)
2000 (forward-char o-col))
2001 (goto-char o-point))
2002 (beginning-of-line)
60d0378e
KF
2003 (message "Deleting bookmarks...done")
2004 ))
e3437989
RS
2005
2006
2007(defun bookmark-bmenu-rename ()
d22d6453
RS
2008 "Rename bookmark on current line. Prompts for a new name."
2009 (interactive)
aef053eb
KF
2010 (let ((bmrk (bookmark-bmenu-bookmark))
2011 (thispoint (point)))
2012 (bookmark-rename bmrk)
2013 (goto-char thispoint)))
d22d6453 2014
e3437989
RS
2015
2016(defun bookmark-bmenu-locate ()
d22d6453
RS
2017 "Display location of this bookmark. Displays in the minibuffer."
2018 (interactive)
3a69db53
KF
2019 (let ((bmrk (bookmark-bmenu-bookmark)))
2020 (message "%s" (bookmark-location bmrk))))
e3437989 2021
037b0a87
KF
2022(defun bookmark-bmenu-relocate ()
2023 "Change the file path of the bookmark on the current line,
2024 prompting with completion for the new path."
2025 (interactive)
aef053eb
KF
2026 (let ((bmrk (bookmark-bmenu-bookmark))
2027 (thispoint (point)))
2028 (bookmark-relocate bmrk)
2029 (goto-char thispoint)))
d22d6453 2030
1e7d4475
SM
2031;;; Bookmark-bmenu search
2032
1e7d4475
SM
2033(defun bookmark-bmenu-filter-alist-by-regexp (regexp)
2034 "Filter `bookmark-alist' with bookmarks matching REGEXP and rebuild list."
26d9285f 2035 (let ((bookmark-alist
f58e0fd5
SM
2036 (cl-loop for i in bookmark-alist
2037 when (string-match regexp (car i)) collect i into new
2038 finally return new)))
1e7d4475
SM
2039 (bookmark-bmenu-list)))
2040
26d9285f 2041
1e7d4475
SM
2042;;;###autoload
2043(defun bookmark-bmenu-search ()
26d9285f 2044 "Incremental search of bookmarks, hiding the non-matches as we go."
1e7d4475 2045 (interactive)
26d9285f 2046 (let ((bmk (bookmark-bmenu-bookmark))
d83ef976 2047 (timer nil))
26d9285f 2048 (unwind-protect
d83ef976
SM
2049 (minibuffer-with-setup-hook
2050 (lambda ()
2051 (setq timer (run-with-idle-timer
2052 bookmark-search-delay 'repeat
2053 #'(lambda (buf)
2054 (with-current-buffer buf
2055 (bookmark-bmenu-filter-alist-by-regexp
2056 (minibuffer-contents))))
2057 (current-buffer))))
2058 (read-string "Pattern: ")
2059 (when timer (cancel-timer timer) (setq timer nil)))
2060 (when timer ;; Signalled an error or a `quit'.
2061 (cancel-timer timer)
2062 (bookmark-bmenu-list)
2063 (bookmark-bmenu-goto-bookmark bmk)))))
0472835f 2064
1e7d4475
SM
2065(defun bookmark-bmenu-goto-bookmark (name)
2066 "Move point to bookmark with name NAME."
2067 (goto-char (point-min))
1e7d4475
SM
2068 (while (not (equal name (bookmark-bmenu-bookmark)))
2069 (forward-line 1))
2070 (forward-line 0))
0472835f 2071
1e7d4475 2072
e3437989
RS
2073\f
2074;;; Menu bar stuff. Prefix is "bookmark-menu".
11eb4275 2075
e3437989
RS
2076(defun bookmark-menu-popup-paned-menu (event name entries)
2077 "Pop up multi-paned menu at EVENT, return string chosen from ENTRIES.
2078That is, ENTRIES is a list of strings which appear as the choices
2079in the menu.
175d0960
SM
2080The number of panes depends on the number of entries.
2081The visible entries are truncated to `bookmark-menu-length', but the
2082strings returned are not."
2083 (let ((f-height (/ (frame-height) 2))
2084 (pane-list nil)
2085 (iter 0))
2086 (while entries
2087 (let (lst
2088 (count 0))
2089 (while (and (< count f-height) entries)
2090 (let ((str (car entries)))
2091 (push (cons
2092 (if (> (length str) bookmark-menu-length)
2093 (substring str 0 bookmark-menu-length)
2094 str)
2095 str)
2096 lst)
2097 (setq entries (cdr entries))
2098 (setq count (1+ count))))
2099 (setq iter (1+ iter))
2100 (push (cons
2101 (format "-*- %s (%d) -*-" name iter)
2102 (nreverse lst))
2103 pane-list)))
d32ff76a 2104
175d0960
SM
2105 ;; Popup the menu and return the string.
2106 (x-popup-menu event (cons (concat "-*- " name " -*-")
2107 (nreverse pane-list)))))
e3437989 2108
b3bf02fa 2109
d22d6453
RS
2110;; Thanks to Roland McGrath for fixing menubar.el so that the
2111;; following works, and for explaining what to do to make it work.
b3bf02fa 2112
7af04c89
RS
2113;; We MUST autoload EACH form used to set up this variable's value, so
2114;; that the whole job is done in loaddefs.el.
b3bf02fa 2115
5e0e5feb 2116;; Emacs menubar stuff.
09fd6588 2117
7af04c89 2118;;;###autoload
175d0960
SM
2119(defvar menu-bar-bookmark-map
2120 (let ((map (make-sparse-keymap "Bookmark functions")))
1ec4b7b2
SM
2121 (bindings--define-key map [load]
2122 '(menu-item "Load a Bookmark File..." bookmark-load
2123 :help "Load bookmarks from a bookmark file)"))
2124 (bindings--define-key map [write]
2125 '(menu-item "Save Bookmarks As..." bookmark-write
2126 :help "Write bookmarks to a file (reading the file name with the minibuffer)"))
2127 (bindings--define-key map [save]
2128 '(menu-item "Save Bookmarks" bookmark-save
2129 :help "Save currently defined bookmarks"))
2130 (bindings--define-key map [edit]
2131 '(menu-item "Edit Bookmark List" bookmark-bmenu-list
2132 :help "Display a list of existing bookmarks"))
2133 (bindings--define-key map [delete]
2134 '(menu-item "Delete Bookmark..." bookmark-delete
2135 :help "Delete a bookmark from the bookmark list"))
2136 (bindings--define-key map [rename]
2137 '(menu-item "Rename Bookmark..." bookmark-rename
2138 :help "Change the name of a bookmark"))
2139 (bindings--define-key map [locate]
2140 '(menu-item "Insert Location..." bookmark-locate
2141 :help "Insert the name of the file associated with a bookmark"))
2142 (bindings--define-key map [insert]
2143 '(menu-item "Insert Contents..." bookmark-insert
2144 :help "Insert the text of the file pointed to by a bookmark"))
2145 (bindings--define-key map [set]
2146 '(menu-item "Set Bookmark..." bookmark-set
2147 :help "Set a bookmark named inside a file."))
2148 (bindings--define-key map [jump]
2149 '(menu-item "Jump to Bookmark..." bookmark-jump
2150 :help "Jump to a bookmark (a point in some file)"))
175d0960 2151 map))
09fd6588 2152
7af04c89 2153;;;###autoload
175d0960 2154(defalias 'menu-bar-bookmark-map menu-bar-bookmark-map)
e3437989 2155
09fd6588
KF
2156;; make bookmarks appear toward the right side of the menu.
2157(if (boundp 'menu-bar-final-items)
dbe99ae9 2158 (if menu-bar-final-items
b861e45e 2159 (push 'bookmark menu-bar-final-items))
09fd6588
KF
2160 (setq menu-bar-final-items '(bookmark)))
2161
e3437989
RS
2162;;;; end bookmark menu stuff ;;;;
2163
2164\f
43f8b275 2165;; Load Hook
e3437989 2166(defvar bookmark-load-hook nil
077e0753 2167 "Hook run at the end of loading library `bookmark.el'.")
e3437989 2168
43f8b275 2169;; Exit Hook, called from kill-emacs-hook
e5bd0a28
SM
2170(define-obsolete-variable-alias 'bookmark-exit-hooks
2171 'bookmark-exit-hook "22.1")
6192b604 2172(defvar bookmark-exit-hook nil
d32ff76a
JB
2173 "Hook run when Emacs exits.")
2174
6192b604
KF
2175(defun bookmark-exit-hook-internal ()
2176 "Save bookmark state, if necessary, at Emacs exit time.
d32ff76a
JB
2177This also runs `bookmark-exit-hook'."
2178 (run-hooks 'bookmark-exit-hook)
2575da50 2179 (and (bookmark-time-to-save-p t)
175d0960 2180 (bookmark-save)))
6192b604 2181
845fc5e5
JB
2182(unless noninteractive
2183 (add-hook 'kill-emacs-hook 'bookmark-exit-hook-internal))
6192b604 2184
a35809ba
JB
2185(defun bookmark-unload-function ()
2186 "Unload the Bookmark library."
2187 (when bookmark-save-flag (bookmark-save))
2188 ;; continue standard unloading
2189 nil)
2190
6192b604 2191
e3437989 2192(run-hooks 'bookmark-load-hook)
b3bf02fa 2193
b3bf02fa 2194(provide 'bookmark)
dbe99ae9 2195
11eb4275 2196;;; bookmark.el ends here