el-get icon indicating copy to clipboard operation
el-get copied to clipboard

`:features` doesn't work with `el-get-bundle`

Open ghost opened this issue 10 years ago • 1 comments

I try to enable helm-mode with el-get-bundle as below:

(el-get-bundle helm (helm-mode 1))

But it doesn't work. The helm-mode variable is still nil.

Then did some experiments then I found the :features doesn't work as expected. Only :feature helps a little bit.

Working code (I have to use :feature instead of :features):

(el-get-bundle helm :feature (helm-mode) (helm-mode 1))

But if I want to enable more features as below, it doesn't work

(el-get-bundle helm :feature (helm-mode helm-config) (helm-mode 1))

ghost avatar Apr 23 '15 00:04 ghost

I try to enable helm-mode with el-get-bundle as below:

(el-get-bundle helm (helm-mode 1))

But it doesn't work.

I'm seeing the same, with Emacs 24.5 on Windows. I can see .emacs.d/el-get/bundle-init/c__Users_npostavs_tmp_tel-get_.emacs.d_init-1_helm.el gets created with the right contents, but it doesn't seem to get executed (I tried adding a call to message but the it didn't show up in *Messages*). @tarao: how is it supposed to work?

Working code (I have to use :feature instead of :features):

 (el-get-bundle helm :feature (helm-mode) (helm-mode 1))

It doesn't work for me. :feature is not a recognized option, I can't see how this even could work.

npostavs avatar May 29 '15 20:05 npostavs