From 6e72502507db4f6f77a73813acf2ba753078bc26 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 6 May 2023 22:18:12 +0300 Subject: [PATCH] Enable recursive minibuffers in dict-read-word --- dict.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dict.el b/dict.el index 16f20d5..3c01d95 100644 --- a/dict.el +++ b/dict.el @@ -252,7 +252,8 @@ option to it first." (defun dict-read-word () "Prompt for a word defined in the dictionary server." - (let* ((completion-ignore-case t) + (let* ((enable-recursive-minibuffers t) + (completion-ignore-case t) (word-at-point (thing-at-point 'word t)) (default (car (dict-match-word word-at-point)))) (completing-read (format-prompt "Word" default) -- 2.39.2