diff options
author | Case Duckworth | 2021-08-26 16:03:50 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-26 16:03:50 -0500 |
commit | 88b90ef3af19f1561208e226000b82e0f9acbe92 (patch) | |
tree | 86b0c66fd82b0683f1c8c8d5a825dc6261cd8050 | |
parent | Change disabled-function logic. (diff) | |
download | emacs-88b90ef3af19f1561208e226000b82e0f9acbe92.tar.gz emacs-88b90ef3af19f1561208e226000b82e0f9acbe92.zip |
Resort minibuffer options
-rw-r--r-- | init.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/init.el b/init.el index 6d515e3..02cd850 100644 --- a/init.el +++ b/init.el | |||
@@ -655,10 +655,11 @@ like a dumbass." | |||
655 | (apply fn args)))) | 655 | (apply fn args)))) |
656 | 656 | ||
657 | (setup minibuffer | 657 | (setup minibuffer |
658 | (:option minibuffer-prompt-properties | 658 | (:option enable-recursive-minibuffers t |
659 | '(read-only t cursor-intangible t face minibuffer-prompt) | ||
660 | enable-recursive-minibuffers t | ||
661 | file-name-shadow-properties '(invisible t intangible t) | 659 | file-name-shadow-properties '(invisible t intangible t) |
660 | minibuffer-eldef-shorten-default t | ||
661 | minibuffer-prompt-properties | ||
662 | '(read-only t cursor-intangible t face minibuffer-prompt) | ||
662 | read-answer-short t | 663 | read-answer-short t |
663 | read-extended-command-predicate ; used on >28 | 664 | read-extended-command-predicate ; used on >28 |
664 | #'command-completion-default-include-p) | 665 | #'command-completion-default-include-p) |