summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-12-29 18:01:56 +0000
committerSean Whitton <spwhitton@spwhitton.name>2023-12-29 18:01:59 +0000
commitf9102be134700321076867fc946d4457749ea713 (patch)
tree35b72da55895f59ef59c08f9c1320e0324207e07 /.emacs.d/init.el
parentaaeb34742b0e9f2b6fed106240aa9e8de7cb72ac (diff)
downloaddotfiles-f9102be134700321076867fc946d4457749ea713.tar.gz
work around changes from Emacs bug#67001 (also cf. Emacs bug#67661)
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index b9280248..61a208b7 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -198,7 +198,6 @@ windows side-by-side in the frame."
'(comint-prompt-read-only t)
'(compilation-scroll-output 'first-error)
'(compilation-skip-threshold 2)
- '(completion-auto-help 'lazy)
'(completion-styles '(flex))
'(confirm-kill-emacs 'y-or-n-p)
'(copy-region-blink-delay 0)
@@ -1259,6 +1258,8 @@ To be used only when it seems to be necessary."
(advice-add 'icomplete-post-command-hook :after fun))))))
(define-key icomplete-minibuffer-map [?\t] #'spw/icomplete-tab)
+(advice-add 'completion-at-point :after #'minibuffer-hide-completions)
+
(define-key icomplete-minibuffer-map [remap minibuffer-complete-and-exit] nil)
;; This is based on `icomplete--fido-ccd'.