Skip to content

Commit

Permalink
Fix annoying problem of ivy not letting us rename file
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
adityaathalye committed Sep 22, 2023
1 parent fa77742 commit 58f2066
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58f2066

Please sign in to comment.