summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d')
-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'.