summaryrefslogtreecommitdiff
path: root/cider-doc.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-03-26 12:38:00 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-03-26 12:41:34 +0200
commit86d05be10e7af8bc1fe09853ced6dc2e8ddae8f0 (patch)
tree3d43d9f018f5dddb14b71fc8379f4a364c126a79 /cider-doc.el
parentfc1be820559db6c6eacc67e7094214585d335195 (diff)
Add keybindings and menu entries for cider-apropos-select and cider-apropos-documentation-select
Diffstat (limited to 'cider-doc.el')
-rw-r--r--cider-doc.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/cider-doc.el b/cider-doc.el
index 42c2d3bd..2fd535e7 100644
--- a/cider-doc.el
+++ b/cider-doc.el
@@ -50,8 +50,12 @@
(define-prefix-command 'cider-doc-map)
(define-key cider-doc-map (kbd "a") #'cider-apropos)
(define-key cider-doc-map (kbd "C-a") #'cider-apropos)
+ (define-key cider-doc-map (kbd "s") #'cider-apropos-select)
+ (define-key cider-doc-map (kbd "C-s") #'cider-apropos-select)
(define-key cider-doc-map (kbd "f") #'cider-apropos-documentation)
(define-key cider-doc-map (kbd "C-f") #'cider-apropos-documentation)
+ (define-key cider-doc-map (kbd "e") #'cider-apropos-documentation-select)
+ (define-key cider-doc-map (kbd "C-e") #'cider-apropos-documentation-select)
(define-key cider-doc-map (kbd "d") #'cider-doc)
(define-key cider-doc-map (kbd "C-d") #'cider-doc)
(define-key cider-doc-map (kbd "r") #'cider-grimoire)
@@ -70,7 +74,9 @@
["Grimoire" cider-grimoire]
["Grimoire in browser" cider-grimoire-web]
["Search symbols" cider-apropos]
- ["Search documentation" cider-apropos-documentation])
+ ["Search symbols & select" cider-apropos-select]
+ ["Search documentation" cider-apropos-documentation]
+ ["Search documentation & select" cider-apropos-documentation-select])
"CIDER documentation submenu.")