diff options
author | Matthias Meulien <orontee@gmail.com> | 2022-02-15 23:39:02 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-02-17 12:58:12 +0100 |
commit | 7c995264359824cc1aca40ca37201db5ed44e659 (patch) | |
tree | bdfc2d4ced04496bf94906f0bc1bf3dd230a37c8 /lisp/help-mode.el | |
parent | c78b3c02a3d5bf250bfc9db34745888da44c1543 (diff) | |
download | emacs-7c995264359824cc1aca40ca37201db5ed44e659.tar.gz emacs-7c995264359824cc1aca40ca37201db5ed44e659.tar.bz2 emacs-7c995264359824cc1aca40ca37201db5ed44e659.zip |
Extend bookmark menu with with handler type column
* lisp/bookmark.el (bookmark-bmenu--revert): Extend table entries with
handler type.
(bookmark-bmenu-mode): Add handler type column.
* lisp/doc-view.el (doc-view-bookmark-jump): Set bookmark handler type.
* lisp/help-mode.el (help-bookmark-jump): Set bookmark handler type.
* lisp/image-dired.el (image-dired-bookmark-jump): Set bookmark handler type.
* lisp/info.el (Info-bookmark-jump): Set bookmark handler type.
* lisp/net/eww.el (eww-bookmark-jump): Set bookmark handler type.
* lisp/vc/vc-dir.el (vc-dir-bookmark-jump): Set bookmark handler type.
* lisp/woman.el (woman-bookmark-jump): Set bookmark handler type.
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r-- | lisp/help-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 5fb5dcfb195..d1b9357f3c9 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -936,6 +936,7 @@ BOOKMARK is a bookmark name or a bookmark record." (pop-to-buffer "*Help*") (goto-char position))) +(put 'help-bookmark-jump 'bookmark-handler-type "Help") (provide 'help-mode) |