branch: externals/calibre
commit 6fad50fd5b7458da7bd0443afe46a7c48823d745
Author: Kjartan Oli Agustsson <[email protected]>
Commit: Kjartan Oli Agustsson <[email protected]>
Add keybinding for viewing book details
* calibre-library.el (calibre-library-mode-map): Add binding for
calibre-info-view-book.
---
calibre-library.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/calibre-library.el b/calibre-library.el
index f262d7aac5..1ff8079c91 100644
--- a/calibre-library.el
+++ b/calibre-library.el
@@ -30,6 +30,7 @@
(require 'calibre-search)
(require 'calibre-virtual-library)
(require 'calibre-edit)
+(require 'calibre-info)
(defcustom calibre-external-programs nil
"A mapping of formats to external programs used to read them.
@@ -289,6 +290,7 @@ If called with a prefix argument prompt the user for the
format."
"a" #'calibre-library-add-book
"v" #'calibre-select-virtual-library
"s" #'calibre-search
+ "i" #'calibre-info-view-book
"RET" #'calibre-library-open-book
"o" #'calibre-library-open-book-other-window)