Add the section on recursive minibuffers from Prot
He has a section for it, and I am copying from his config, so why not.
This commit is contained in:
parent
c7b1ea6a1f
commit
2e2b2daa4f
1 changed files with 14 additions and 2 deletions
|
@ -1436,6 +1436,19 @@ minibuffer. Let's have everything ignore casing by default.
|
||||||
(setq read-file-name-completion-ignore-case t)
|
(setq read-file-name-completion-ignore-case t)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** The =unravel-completion.el= settings for recursive minibuffers
|
||||||
|
:PROPERTIES:
|
||||||
|
:CUSTOM_ID: h:4299825a-db51-49fe-b415-fb1749eed289
|
||||||
|
:END:
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp :tangle "unravel-modules/unravel-completion.el"
|
||||||
|
(use-package mb-depth
|
||||||
|
:ensure nil
|
||||||
|
:hook (after-init . minibuffer-depth-indicate-mode)
|
||||||
|
:config
|
||||||
|
(setq read-minibuffer-restore-windows nil) ; Emacs 28
|
||||||
|
(setq enable-recursive-minibuffers t))
|
||||||
|
#+end_src
|
||||||
** The =unravel-completion.el= settings for common interactions
|
** The =unravel-completion.el= settings for common interactions
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:CUSTOM_ID: h:b640f032-ad11-413e-ad8f-63408671d500
|
:CUSTOM_ID: h:b640f032-ad11-413e-ad8f-63408671d500
|
||||||
|
@ -2004,8 +2017,7 @@ I use ~vertico-repeat~ to mimic the functionality that ~helm-resume~ would provi
|
||||||
|
|
||||||
(use-package vertico-suspend
|
(use-package vertico-suspend
|
||||||
:after vertico
|
:after vertico
|
||||||
:init
|
;; Note: `enable-recursive-minibuffers' must be t
|
||||||
(setq enable-recursive-minibuffers t)
|
|
||||||
:bind ( :map global-map
|
:bind ( :map global-map
|
||||||
("M-S" . vertico-suspend)
|
("M-S" . vertico-suspend)
|
||||||
("C-x c b" . vertico-suspend)))
|
("C-x c b" . vertico-suspend)))
|
||||||
|
|
Loading…
Reference in a new issue