branch: externals/consult-denote commit 06dea67a7c19cd8632e83c90d3f3dc96b35b1a3d Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Declare commands as interactive-only --- consult-denote.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/consult-denote.el b/consult-denote.el index 813e324d67..86f99206dd 100644 --- a/consult-denote.el +++ b/consult-denote.el @@ -101,6 +101,7 @@ aforementioned function." ;;;###autoload (defun consult-denote-grep () "Call `consult-denote-grep-command' in the variable `denote-directory'." + (declare (interactive-only t)) (interactive) (let ((default-directory denote-directory)) (funcall-interactively consult-denote-grep-command))) @@ -108,6 +109,7 @@ aforementioned function." ;;;###autoload (defun consult-denote-find () "Call `consult-denote-find-command' in the variable `denote-directory'." + (declare (interactive-only t)) (interactive) (let ((default-directory denote-directory)) (funcall-interactively consult-denote-find-command)))