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
(require'helm)
(require'helm-org)
;; [...]
(defunmy-helm-extension/org-capture (cand)
;; [some code to add my own `org-capture' templates...]
(helm-org-capture-templates))
(defvarmy-helm-extension/helm-source
(helm-build-sync-source " My extension":candidates#'my-extension/compute-candidates:action (helm-make-actions
"Org capture"#'my-helm-extension/org-capture)))
;;;###autoload
(defunmy-helm-extension ()
"My Helm extension"
(interactive)
(helm :sources my-helm-extension/helm-source
:buffer"*my-helm-extension*"))
I've written a helm extension that is structured like this. The normal action my-helm-extension/org-capture works fine, but when I try to call the persistent version of this action with C-j, then helm-alive-p is t, (helm--alive-p) is nil, and I abort the helm session entirely at helm-keyboard-quit:
This is not what I expect; I want to perform the org-capture and subsequently return to the my-helm-extensionhelm session. Is it wrong of me to use helm-org-capture-templates in this manner?
The text was updated successfully, but these errors were encountered:
I've written a
helm
extension that is structured like this. The normal actionmy-helm-extension/org-capture
works fine, but when I try to call the persistent version of this action withC-j
, thenhelm-alive-p
ist
,(helm--alive-p)
isnil
, and I abort thehelm
session entirely athelm-keyboard-quit
:https://github.com/emacs-helm/helm/blob/c00b5826c1d5797debe92ed235d50b068a348c14/helm.el#L2455.
This is not what I expect; I want to perform the
org-capture
and subsequently return to themy-helm-extension
helm
session. Is it wrong of me to usehelm-org-capture-templates
in this manner?The text was updated successfully, but these errors were encountered: