Move helm-org config to completion/helm

This commit is contained in:
Henrik Lissner 2019-09-28 23:08:44 -04:00
parent 9d770546da
commit a8e7c4fd45
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 12 additions and 12 deletions

View file

@ -167,6 +167,17 @@ be negative.")
(set-keymap-parent helm-generic-files-map helm-map)) (set-keymap-parent helm-generic-files-map helm-map))
;;;###package helm-org
(use-package! helm-org
:when (featurep! :lang org)
:defer t
:init
(after! helm
(pushnew! helm-completing-read-handlers-alist
'(org-capture . helm-org-completing-read-tags)
'(org-set-tags . helm-org-completing-read-tags))))
;;;###package helm-projectile ;;;###package helm-projectile
(use-package! helm-projectile (use-package! helm-projectile
:commands (helm-projectile-find-file :commands (helm-projectile-find-file

View file

@ -6,6 +6,7 @@
(package! helm-c-yasnippet) (package! helm-c-yasnippet)
(package! helm-company) (package! helm-company)
(package! helm-describe-modes :recipe (:host github :repo "emacs-helm/helm-describe-modes")) (package! helm-describe-modes :recipe (:host github :repo "emacs-helm/helm-describe-modes"))
(package! helm-org)
(package! helm-projectile) (package! helm-projectile)
(package! swiper-helm) (package! swiper-helm)
(when (featurep! +fuzzy) (when (featurep! +fuzzy)

View file

@ -916,13 +916,3 @@ compelling reason, so..."
(org-clock-load)) (org-clock-load))
:config :config
(add-hook 'kill-emacs-hook #'org-clock-save))) (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,8 +36,6 @@
(package! ob-rust)) (package! ob-rust))
;;; Modules ;;; Modules
(when (featurep! :completion helm)
(package! helm-org))
(when (featurep! +dragndrop) (when (featurep! +dragndrop)
(package! org-download)) (package! org-download))
(when (featurep! +gnuplot) (when (featurep! +gnuplot)