From 9be62342ca63a2985769c2dbb05d9dfbd0f47896 Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Fri, 17 Jul 2026 22:11:06 -0400 Subject: [PATCH] fix: context-tag prompt uses read-string --- doom/.config/doom/README.org | 2 +- doom/.config/doom/config.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doom/.config/doom/README.org b/doom/.config/doom/README.org index 39c00b0..02d9b6f 100644 --- a/doom/.config/doom/README.org +++ b/doom/.config/doom/README.org @@ -3441,7 +3441,7 @@ Optional PROJECT-TAG and CONTEXT-TAG can be given to create .projectile and .dir (t default-directory)))) (list (read-directory-name "Directory to convert: " nil initial-path t initial-path))))) (tag (read-string "Project tag (blank to skip): ")) - (ctx (completing-read "Context tag: " (quote ("TDNDE" "Perso" "")) nil t))) + (ctx (read-string "Context tag (or blank): "))) (list dirs tag ctx))) (let ((count 0) diff --git a/doom/.config/doom/config.el b/doom/.config/doom/config.el index f01265f..6ee58e7 100644 --- a/doom/.config/doom/config.el +++ b/doom/.config/doom/config.el @@ -2525,7 +2525,7 @@ Optional PROJECT-TAG and CONTEXT-TAG can be given to create .projectile and .dir (t default-directory)))) (list (read-directory-name "Directory to convert: " nil initial-path t initial-path))))) (tag (read-string "Project tag (blank to skip): ")) - (ctx (completing-read "Context tag: " (quote ("TDNDE" "Perso" "")) nil t))) + (ctx (read-string "Context tag (or blank): "))) (list dirs tag ctx))) (let ((count 0)