Enable make completion with ivy

Invoking "make" or "project compilation" (<kbd>SPC c m</kbd>, <kbd>SPC c
c</kbd>) is currently not supported in ivy mode. The PR re-enables them
by adding helm-make to the ivy packages with ivy completion method.
This commit is contained in:
Laszlo Szekeres 2016-06-07 17:00:37 -04:00 committed by syl20bnr
parent 06a7731eca
commit a89573eb85
1 changed files with 11 additions and 0 deletions

View File

@ -15,6 +15,7 @@
(counsel-projectile :toggle (configuration-layer/package-usedp 'projectile))
evil
flx
helm-make
ivy
ivy-hydra
(ivy-spacemacs-help :location local)
@ -115,6 +116,16 @@
(defun ivy/init-flx ())
(defun ivy/init-helm-make ()
(use-package helm-make
:defer t
:init
(progn
(setq helm-make-completion-method 'ivy)
(spacemacs/set-leader-keys
"cc" 'helm-make-projectile
"cm" 'helm-make))))
(defun ivy/init-ivy ()
(use-package ivy
:config