emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 668aaf3 155/272: counsel.el: add outline for `counsel-mode


From: Oleh Krehel
Subject: [elpa] master 668aaf3 155/272: counsel.el: add outline for `counsel-mode'
Date: Mon, 25 Apr 2016 10:13:22 +0000

branch: master
commit 668aaf3d66d2f55c5fa735542c8156a61354ff68
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    counsel.el: add outline for `counsel-mode'
---
 counsel.el |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/counsel.el b/counsel.el
index 456b863..d806ee7 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1688,17 +1688,18 @@ An extra action allows to switch to the process buffer."
               ("e" counsel-rhythmbox-enqueue-song "Enqueue song"))
             :caller 'counsel-rhythmbox))
 
+;;** `counsel-mode'
 (defvar counsel-mode-map
   (let ((map (make-sparse-keymap)))
     (dolist (binding
-             '((describe-bindings . counsel-descbinds)
-               (describe-function . counsel-describe-function)
-               (describe-variable . counsel-describe-variable)
-               (find-file         . counsel-find-file)
-               (imenu             . counsel-imenu)
-               (load-library      . counsel-load-library)
-               (load-theme        . counsel-load-theme)
-               (yank-pop          . counsel-yank-pop)))
+              '((describe-bindings . counsel-descbinds)
+                (describe-function . counsel-describe-function)
+                (describe-variable . counsel-describe-variable)
+                (find-file . counsel-find-file)
+                (imenu . counsel-imenu)
+                (load-library . counsel-load-library)
+                (load-theme . counsel-load-theme)
+                (yank-pop . counsel-yank-pop)))
       (define-key map (vector 'remap (car binding)) (cdr binding)))
     map)
   "Map for `counsel-mode'. Remaps built-in functions to counsel
@@ -1715,7 +1716,6 @@ replacements. "
   :keymap counsel-mode-map
   :lighter " counsel")
 
-
 (provide 'counsel)
 
 ;;; counsel.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]