Merge pull request #1741 from jjzmajic/helm-org

Add helm-org (bound but not installed).
This commit is contained in:
Henrik Lissner 2019-09-28 23:02:25 -04:00 committed by GitHub
commit 9d770546da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -916,3 +916,13 @@ compelling reason, so..."
(org-clock-load))
:config
(add-hook 'kill-emacs-hook #'org-clock-save)))
(use-package! helm-org
:if (featurep! :completion helm)
:defer t
:init
(progn
(add-to-list 'helm-completing-read-handlers-alist
'(org-capture . helm-org-completing-read-tags))
(add-to-list 'helm-completing-read-handlers-alist
'(org-set-tags . helm-org-completing-read-tags))))

View file

@ -36,6 +36,8 @@
(package! ob-rust))
;;; Modules
(when (featurep! :completion helm)
(package! helm-org))
(when (featurep! +dragndrop)
(package! org-download))
(when (featurep! +gnuplot)