You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using helm apropos in a mini frame errors with "with "No such live buffer *helm apropos*".
I know this is not a helm error as this error only occurs when persp-mode is enabled.
If we enable persp-mode after the call to helm-apropos command, then the bug disappears.
Steps to reproduce
In order to test this i've used the testing helm distribution emacs-helm.sh
M-x helm-apropos RET gzip RET
Receive an error saying "No such live buffer *helm apropos*"
(persp-mode -1)
M-x helm-apropos RET gzip RET
now it works fine
(persp-mode)
It works fine after this point
Test Snippet
(add-to-list'helm-commands-using-frame'helm-apropos)
(straight-use-package'perspective)
(persp-mode)
;;;; M-x helm-apropos RET gzip RET;; errors with "No such live buffer *helm apropos*";; (persp-mode -1);;;; M-x helm-apropos RET gzip RET;; works fine;; (persp-mode);; works alright after this.;;
Briefing
Using helm apropos in a mini frame errors with "with "No such live buffer *helm apropos*".
I know this is not a helm error as this error only occurs when
persp-modeis enabled.If we enable
persp-modeafter the call to helm-apropos command, then the bug disappears.Steps to reproduce
In order to test this i've used the testing helm distribution emacs-helm.sh
M-x helm-apropos RET gzip RETReceive an error saying "No such live buffer *helm apropos*"
(persp-mode -1)M-x helm-apropos RET gzip RETnow it works fine
(persp-mode)It works fine after this point
Test Snippet
Recording
persp_test_demo.mp4
Thanks