We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c597d commit 50b16deCopy full SHA for 50b16de
modules/crafted-completion-config.el
@@ -30,11 +30,7 @@
30
(fido-mode -1)
31
(fido-vertical-mode -1)
32
(icomplete-mode -1)
33
- (icomplete-vertical-mode -1)
34
- (when (version< "30" emacs-version)
35
- ;; this mode is only available in Emacs version 30.1 and
36
- ;; greater.
37
- (global-completion-preview-mode -1))))
+ (icomplete-vertical-mode -1)))
38
39
40
;;; Marginalia
@@ -83,6 +79,11 @@
83
79
;;; Corfu
84
80
(when (require 'corfu nil :noerror)
85
81
82
+ (when (version< "30" emacs-version)
+ ;; this mode is only available in Emacs version 30.1 and
+ ;; greater.
+ (global-completion-preview-mode -1))
86
+
87
(unless (display-graphic-p)
88
(when (require 'corfu-terminal nil :noerror)
89
(corfu-terminal-mode +1)))
0 commit comments