summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-10-01 08:42:24 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-10-01 08:42:24 +0200
commit359ecefa9d7c50d72545a92beb942d9a956b3553 (patch)
tree00e4bf6becae397e2fef515b641b209283039558
parentae4b8f3b46ab13516e69ef740ca877f6f100415c (diff)
* helm-elisp.el: Add info lookup action in apropos functions.
-rw-r--r--helm-elisp.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/helm-elisp.el b/helm-elisp.el
index 478739dc..e4e6eb16 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -354,7 +354,8 @@ First call indent, second complete symbol, third complete fname."
(helm-apropos-init 'boundp ,default)))
(candidates-in-buffer)
(action . (("Describe Variable" . helm-describe-variable)
- ("Find Variable" . helm-find-variable)))))
+ ("Find Variable" . helm-find-variable)
+ ("Info lookup" . info-lookup-symbol)))))
(defun helm-def-source--emacs-faces (&optional default)
`((name . "Faces")
@@ -384,7 +385,8 @@ First call indent, second complete symbol, third complete fname."
(helm-apropos-init 'commandp ,default)))
(candidates-in-buffer)
(action . (("Describe Function" . helm-describe-function)
- ("Find Function" . helm-find-function)))))
+ ("Find Function" . helm-find-function)
+ ("Info lookup" . info-lookup-symbol)))))
(defun helm-def-source--emacs-functions (&optional default)
`((name . "Functions")
@@ -394,7 +396,8 @@ First call indent, second complete symbol, third complete fname."
,default)))
(candidates-in-buffer)
(action . (("Describe Function" . helm-describe-function)
- ("Find Function" . helm-find-function)))))
+ ("Find Function" . helm-find-function)
+ ("Info lookup" . info-lookup-symbol)))))
;;;###autoload
(defun helm-apropos ()