Explicitly require helm instead of enabling helm-mode

`helm-mode' should actually not be activated, since we are still using ivy for
`completing-read' and friends.  That being said, when we want to enable
`helm-mode' in the future, we should also not call `ivy-mode' anymore.
This commit is contained in:
Daniel - 2020-08-23 20:28:04 +02:00
parent 2ed50ed61f
commit f1ef558a23
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,6 @@
ace-window-display-mode ace-window-display-mode
key-chord-mode key-chord-mode
ivy-mode ivy-mode
helm-mode
minions-mode minions-mode
which-key-mode which-key-mode
eyebrowse-mode eyebrowse-mode
@ -113,6 +112,8 @@
(with-demoted-errors "Cannot activate mode: %s" (with-demoted-errors "Cannot activate mode: %s"
(funcall mode +1))) (funcall mode +1)))
(require 'helm)
(unless on-windows (unless on-windows
(with-demoted-errors "Cannot load `pdf-tools: %s" (with-demoted-errors "Cannot load `pdf-tools: %s"
(pdf-tools-install))) (pdf-tools-install)))
@ -1881,7 +1882,6 @@ With given ARG, display files in `db/important-document-path."
(use-package helm (use-package helm
:ensure t :ensure t
:defer t
:diminish helm-mode :diminish helm-mode
:bind (:map helm-command-map :bind (:map helm-command-map
("#" . db/play-radio-stations) ("#" . db/play-radio-stations)