branch: elpa/helm
commit ed0a310288a5059aa7d5ef27ab6f4c5e29e5894b
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Add helm-finder to menu and global bindings
---
helm-easymenu.el | 5 +++--
helm-global-bindings.el | 1 +
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/helm-easymenu.el b/helm-easymenu.el
index 5b04b7d439..32debf652c 100644
--- a/helm-easymenu.el
+++ b/helm-easymenu.el
@@ -48,8 +48,9 @@
["Emacs Manual index" helm-info-emacs t]
["Gnus Manual index" helm-info-gnus t]
["Helm documentation" helm-documentation t])
- ("Elpa"
- ["Elisp packages" helm-packages t])
+ ("Packages"
+ ["Elisp packages" helm-packages t]
+ ["Finder" helm-finder t])
("Tools"
["Occur" helm-occur t]
["Grep current directory with AG" helm-do-grep-ag t]
diff --git a/helm-global-bindings.el b/helm-global-bindings.el
index 18921fc1cb..aef7ef01b2 100644
--- a/helm-global-bindings.el
+++ b/helm-global-bindings.el
@@ -85,6 +85,7 @@ Using `setq' to modify this variable will have no effect."
(define-key map (kbd "b") 'helm-resume)
(define-key map (kbd "M-g i") 'helm-gid)
(define-key map (kbd "@") 'helm-packages)
+ (define-key map (kbd "h p") 'helm-finder)
map)
"Default keymap for \\[helm-command-prefix] commands.
The normal global definition of the character \\[helm-command-prefix]
indirects to this keymap.")