Define prelude helm menu entry in its own module
This commit is contained in:
parent
639cecb759
commit
461a560ddd
2 changed files with 5 additions and 4 deletions
|
@ -111,9 +111,6 @@
|
|||
["Eval and replace" prelude-eval-and-replace]
|
||||
)
|
||||
|
||||
("Navigation"
|
||||
["Helm" helm-prelude])
|
||||
|
||||
("Windows"
|
||||
["Swap windows" prelude-swap-windows])
|
||||
|
||||
|
|
|
@ -49,7 +49,11 @@
|
|||
(error (helm-mini))))
|
||||
|
||||
(eval-after-load 'prelude-mode
|
||||
'(define-key prelude-mode-map (kbd "C-c h") 'helm-prelude))
|
||||
'(progn
|
||||
(define-key prelude-mode-map (kbd "C-c h") 'helm-prelude)
|
||||
(easy-menu-add-item nil '("Tools" "Prelude")
|
||||
'("Navigation"
|
||||
["Helm" helm-prelude]))))
|
||||
|
||||
(push "Press <C-c h> to navigate a project in Helm." prelude-tips)
|
||||
|
||||
|
|
Loading…
Reference in a new issue