[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 785776a758 1/2: Add locate-library to easymenu and bi
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 785776a758 1/2: Add locate-library to easymenu and bind it |
Date: |
Mon, 25 Sep 2023 04:00:50 -0400 (EDT) |
branch: elpa/helm
commit 785776a758837ee7d5e33dc230c8d13f4ae86868
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Add locate-library to easymenu and bind it
---
helm-easymenu.el | 3 ++-
helm-global-bindings.el | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/helm-easymenu.el b/helm-easymenu.el
index e0e6556768..5b04b7d439 100644
--- a/helm-easymenu.el
+++ b/helm-easymenu.el
@@ -31,7 +31,8 @@
["Recent Files" helm-recentf t]
["Locate" helm-locate t]
["Search Files with find" helm-find t]
- ["Bookmarks" helm-filtered-bookmarks t])
+ ["Bookmarks" helm-filtered-bookmarks t]
+ ["Locate library" helm-locate-library t])
("Buffers"
["Find buffers" helm-buffers-list t])
("Projects"
diff --git a/helm-global-bindings.el b/helm-global-bindings.el
index d193dfecaa..18921fc1cb 100644
--- a/helm-global-bindings.el
+++ b/helm-global-bindings.el
@@ -50,6 +50,7 @@ Using `setq' to modify this variable will have no effect."
(define-key map (kbd "a") 'helm-apropos)
(define-key map (kbd "e") 'helm-etags-select)
(define-key map (kbd "l") 'helm-locate)
+ (define-key map (kbd "L") 'helm-locate-library)
(define-key map (kbd "s") 'helm-surfraw)
(define-key map (kbd "r") 'helm-regexp)
(define-key map (kbd "m") 'helm-man-woman)