Closed thierryvolpiatto closed 6 years ago
I've been wanting to fix this for a while.
My suggestion:
RET
, I want to display information of the marked packages.C-j
(persistent action), I want to display information of the current package.How do I distinguish between the two? Should the persistent action be a different function?
54653bd8effd9c2ba196dca32c3dd4774abd003c fixes your issue. a5db066844389b71287ffb30617e48b6bc481226 fixes mine. I've basically used the
(if helm-in-persistent-action
(list candidate)
(helm-marked-candidates))
construct. Is this helm-idiomatic?
When hitting C-j on "git" package for example, only top node (*git) is shown making persistent action useless. Perhaps using
org-cycle
inhelm-system-packages-show-information
would fix problem. But I wonder why you are using org-mode in there when there is only one node, is it really useful ?