branch: externals/ivy-hydra
commit 7e4c56776f811f78b8eb95210156f8fbbdba67e7
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
Makefile: Make plain.el load counsel instead of here
This way, it's possible to test the last modification to
`ivy--alist-set', by first adding to plain.el:
(setq ivy-initial-inputs-alist nil)
and then changing it to:
(customize-set-variable
'ivy-initial-inputs-alist
(quote
((org-refile . "^"))))
Re #2442
---
Makefile | 2 +-
targets/plain.el | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index d95dd78..c5ee6c3 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ compile:
plain:
$(emacs) --version
- $(emacs) -Q $(LOAD) -l targets/plain.el
+ $(emacs) -Q -l elpa.el -l targets/plain.el
obsolete:
$(emacs) -batch -l targets/obsolete-config.el
diff --git a/targets/plain.el b/targets/plain.el
index e112310..70cedbc 100644
--- a/targets/plain.el
+++ b/targets/plain.el
@@ -1,4 +1,5 @@
;; (package-initialize)
+(require 'counsel)
(ivy-mode)
(counsel-mode)
(setq enable-recursive-minibuffers t)