From 58f206623d20ec78958129768b67bc631ee0dcb7 Mon Sep 17 00:00:00 2001 From: Aditya Athalye Date: Fri, 22 Sep 2023 17:25:36 -0400 Subject: [PATCH] Fix annoying problem of ivy not letting us rename file that has partial completion. I can't understand why this is not the default setting, for stock ivy. cf. https://www.reddit.com/r/emacs/comments/e02lup/ivy_swiper_doesnt_let_me_rename_or_save_a_file/ --- init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index c732aab..c6f5798 100644 --- a/init.el +++ b/init.el @@ -349,7 +349,11 @@ Usually customisations made from the UI go into `custom-file'.") ivy-count-format "%d/%d: " ; per the docs ;; don't start ivy prompts with '^' regex match, ;; because we want fuzzier matching by default - ivy-initial-inputs-alist nil) + ivy-initial-inputs-alist nil + ;; fix annoying problem of ivy not letting us rename file + ;; that has partial completion + ;; https://www.reddit.com/r/emacs/comments/e02lup/ivy_swiper_doesnt_let_me_rename_or_save_a_file/ + ivy-use-selectable-prompt t) :blackout) (use-package ivy-rich ; h/t suvratapte/dot-emacs-dot-d