When I use helm-mark-ring
or helm-imenu
, I would like to jump to the current candidate automatically in the other buffer while keeping the helm session (i.e., similar to helm-swoop
).
I tried the following codes mentioned on this thread, but didn't work for me.
(add-hook 'helm-before-initialize-hook #'(lambda () (helm-attrset 'follow 1 helm-source-mark-ring)))
Result: It shows [Display not ready]
in echo area when I change the helm candidate (by C-n
).
Any help appreciated!