`:features` doesn't work with `el-get-bundle`
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))
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.