Skip to content

Instantly share code, notes, and snippets.

@sprig
Last active April 19, 2024 02:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sprig/11499090 to your computer and use it in GitHub Desktop.
Save sprig/11499090 to your computer and use it in GitHub Desktop.
Advice for org-set-tags to disable helm completion
(defun kk/run-with-no-helm (orig-func &rest args)
"Run a function without helm completion."
(if (boundp 'helm-mode)
(let ((orig-helm-mode helm-mode))
(unwind-protect
(progn
(helm-mode 0)
(apply orig-func args)
)
(helm-mode (if orig-helm-mode 1 0))))
(apply orig-func args)
))
(advice-add 'org-icompleting-read :around 'kk/run-with-no-helm)
(advice-add 'org-completing-read :around 'kk/run-with-no-helm)
(advice-add 'org-completing-read-no-i :around 'kk/run-with-no-helm)
(defun kk/org-set-tags-no-helm (orig-func &rest args)
"Run org-set-tags without helm."
(if (boundp 'helm-mode)
(let ((orig-helm-mode helm-mode))
(unwind-protect
(progn
(helm-mode 0)
(apply orig-func args)
)
(helm-mode (if orig-helm-mode 1 0))))
(apply orig-func args)
))
(advice-add 'org-set-tags :around 'kk/org-set-tags-no-helm)
@rekahsoft
Copy link

Worth noting that the way advice is added here is incorrect; otherwise this works :)

Namely, advice should be added like so (notice the missing #):

(advice-add 'org-icompleting-read :around #'kk/run-with-no-helm)

@rekahsoft
Copy link

After spending more time on this, the advise option provided doesn't allow for normal completion when tab is pressed in the quick tag selection menu. I found the solution by here to to preferred.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment