diff options
| author | Stefan Kangas | 2024-09-27 07:11:22 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-09-27 07:12:05 +0200 |
| commit | bdfeb45bfcf1bf29a820d3086f007d07147b0598 (patch) | |
| tree | 5041ce9524baf59ad8a3b39da431ade8944ae996 | |
| parent | 7f0a252f2160dd4d168bc77e2f6e6c9901b67465 (diff) | |
| download | emacs-bdfeb45bfcf1bf29a820d3086f007d07147b0598.tar.gz emacs-bdfeb45bfcf1bf29a820d3086f007d07147b0598.zip | |
Bind "J" to bookmark-jump in bookmark-bmenu-mode
* lisp/bookmark.el (bookmark-bmenu-mode-map): Bind "J" to bookmark-jump.
| -rw-r--r-- | lisp/bookmark.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 223a7fedc8d..d43f9f740ca 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el | |||
| @@ -1857,6 +1857,7 @@ unique numeric suffixes \"<2>\", \"<3>\", etc." | |||
| 1857 | "a" #'bookmark-bmenu-show-annotation | 1857 | "a" #'bookmark-bmenu-show-annotation |
| 1858 | "A" #'bookmark-bmenu-show-all-annotations | 1858 | "A" #'bookmark-bmenu-show-all-annotations |
| 1859 | "e" #'bookmark-bmenu-edit-annotation | 1859 | "e" #'bookmark-bmenu-edit-annotation |
| 1860 | "J" #'bookmark-jump | ||
| 1860 | "/" #'bookmark-bmenu-search | 1861 | "/" #'bookmark-bmenu-search |
| 1861 | "<mouse-2>" #'bookmark-bmenu-other-window-with-mouse) | 1862 | "<mouse-2>" #'bookmark-bmenu-other-window-with-mouse) |
| 1862 | 1863 | ||