diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-08-01 00:28:06 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-08-01 00:28:06 -0400 |
commit | 154702778896f2d8f0d6fcb72da41e4753a7061f (patch) | |
tree | acde9a08342ccfbbf5d03b4fb4ddbd89adc3eaa9 /lisp | |
parent | feb2920bf39e2a7afbf5c9019bc6411f36b49596 (diff) | |
download | emacs.d-154702778896f2d8f0d6fcb72da41e4753a7061f.tar.gz |
Bind helm-apropos to "C-h a"
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-helm.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/init-helm.el b/lisp/init-helm.el index a5ab183..e49ae9c 100644 --- a/lisp/init-helm.el +++ b/lisp/init-helm.el @@ -35,6 +35,8 @@ (define-key search-map "k" 'helm-swoop) +(global-set-key (kbd "C-h a") 'helm-apropos) + (helm-mode 1) (provide 'init-helm) |