From 7a2410642fea7587ef87d41daf268e631f6a67b0 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 9 Mar 2024 14:09:38 +0100 Subject: [PATCH] Remove redundant package declaration for helm-ring This package is loaded in the main helm declaration, no need to mention it separately. --- init.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 7f20c71..7c0b525 100644 --- a/init.el +++ b/init.el @@ -2100,7 +2100,8 @@ Note that this workaround is incomplete, as explained in this comment." :autoload (helm-execute-persistent-action helm-select-action helm-make-source) - :defines (helm-source-bookmarks) ; via helm-bookmarks.el + :commands (helm-show-kill-ring) + :defines (helm-source-bookmarks) ; via helm-bookmarks.el :init (setq helm-command-prefix-key "C-c h" ; see `db/run-init' for explicit binding helm-input-idle-delay 0.0 helm-buffers-fuzzy-matching t @@ -2140,9 +2141,6 @@ Note that this workaround is incomplete, as explained in this comment." (bind-key "C-i" #'helm-execute-persistent-action helm-map) (bind-key "C-z" #'helm-select-action helm-map))) -(use-package helm-ring - :commands (helm-show-kill-ring)) - (use-package ivy :commands (ivy-mode) :diminish ivy-mode