about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-09 23:14:14 -0500
committerCase Duckworth2021-08-09 23:14:14 -0500
commit57150400881271234bf9f2b54e52d207369a2e00 (patch)
treed2b8a821e52fb188ad19485d28edaee1596b6e80 /init.el
parentConfigure completion framework (diff)
downloademacs-57150400881271234bf9f2b54e52d207369a2e00.tar.gz
emacs-57150400881271234bf9f2b54e52d207369a2e00.zip
Configure minibuffer
Diffstat (limited to 'init.el')
-rw-r--r--init.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/init.el b/init.el index c850b77..4b493eb 100644 --- a/init.el +++ b/init.el
@@ -564,8 +564,12 @@ like a dumbass."
564 '(read-only t cursor-intangible t face minibuffer-prompt) 564 '(read-only t cursor-intangible t face minibuffer-prompt)
565 enable-recursive-minibuffers t 565 enable-recursive-minibuffers t
566 file-name-shadow-properties '(invisible t intangible t) 566 file-name-shadow-properties '(invisible t intangible t)
567 read-answer-short t) 567 read-answer-short t
568 read-extended-command-predicate ; used on >28
569 #'command-completion-default-include-p)
568 570
571 (add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)
572
569 (add-hook 'minibuffer-setup-hook #'acdw/gc-disable) 573 (add-hook 'minibuffer-setup-hook #'acdw/gc-disable)
570 (add-hook 'minibuffer-exit-hook #'acdw/gc-enable) 574 (add-hook 'minibuffer-exit-hook #'acdw/gc-enable)
571 575