Skip to content

Commit

Permalink
no summary available
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewAdams authored and kensanata committed Jan 3, 2017
1 parent 6dfebaa commit 3fb47a6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions bookmark+-key.el
Expand Up @@ -6,9 +6,9 @@
;; Maintainer: Drew Adams (concat "drew.adams" "@" "oracle" ".com")
;; Copyright (C) 2010-2017, Drew Adams, all rights reserved.
;; Created: Fri Apr 1 15:34:50 2011 (-0700)
;; Last-Updated: Mon Jan 2 08:57:29 2017 (-0800)
;; Last-Updated: Mon Jan 2 20:05:27 2017 (-0800)
;; By: dradams
;; Update #: 781
;; Update #: 785
;; URL: http://www.emacswiki.org/bookmark+-key.el
;; Doc URL: http://www.emacswiki.org/BookmarkPlus
;; Keywords: bookmarks, bookmark+, placeholders, annotations, search, info, url, eww, w3m, gnus
Expand Down Expand Up @@ -693,9 +693,14 @@ Each value of the list is a prefix key bound to keymap
'(menu-item "Insert Bookmark Location..." bookmark-locate ; Alias for `bookmark-insert-location'.
:help "Insert a bookmark's file or buffer name")
'insert)
(when (fboundp 'advice-add) ; Emacs 24.4+.
(define-key-after menu-bar-bookmark-map [bmkp-store-org-link]
'(menu-item "Store Org Link To..." bmkp-store-org-link
:help "Store a link to a bookmark for insertion in an Org-mode buffer")
'locate))

(define-key-after menu-bar-bookmark-map [separator-3] '("--") ;-------------------------------------
'locate)
(if (fboundp 'advice-add) 'bmkp-store-org-link 'locate))
(define-key-after menu-bar-bookmark-map [save]
'(menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks")
'separator-3)
Expand Down

0 comments on commit 3fb47a6

Please sign in to comment.