diff options
author | JSDurand <mmemmew@gmail.com> | 2022-01-23 22:11:11 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-01-23 22:11:11 +0800 |
commit | 316bc0fd14404ecafbb8e8b0f1e9d366f2833197 (patch) | |
tree | 1fcc94e457cbd90f3c284d9dfba3a57f40d7b812 | |
parent | 7054eab0dc328f905cc980027454e97ba09bcf37 (diff) |
bookmark-conf: Change buffer name.
* bookmark-conf.el (blist-buffer-name): Use another buffer name that
is not recognized by bookmark.el, so that it won't think we are
using the default bmenu listings.
-rw-r--r-- | bookmark-conf.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bookmark-conf.el b/bookmark-conf.el index 74878dd..a119ce0 100644 --- a/bookmark-conf.el +++ b/bookmark-conf.el @@ -36,6 +36,10 @@ (use-package "blist" 'blist) (require 'blist) +;;; Shorter buffer name + +(setq blist-buffer-name "*Bookmarks*") + ;;; replace the original key-binding (define-key ctl-x-r-map (vector ?l) #'blist-list-bookmarks) |