diff options
author | Case Duckworth | 2021-03-11 12:09:58 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-11 12:09:58 -0600 |
commit | f98f10269a200dfe046f8663287626037ff41acb (patch) | |
tree | 150301349d6cd126c0efef01b9f82562ab128fbb | |
parent | Configure minibuffer (diff) | |
download | emacs-f98f10269a200dfe046f8663287626037ff41acb.tar.gz emacs-f98f10269a200dfe046f8663287626037ff41acb.zip |
Install `orderless'
-rw-r--r-- | init.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el index d636be7..6e30e48 100644 --- a/init.el +++ b/init.el | |||
@@ -185,15 +185,17 @@ | |||
185 | (when (require 'icomplete) | 185 | (when (require 'icomplete) |
186 | (acdw/set '((completion-ignore-case t) | 186 | (acdw/set '((completion-ignore-case t) |
187 | (read-buffer-completion-ignore-case t) | 187 | (read-buffer-completion-ignore-case t) |
188 | (completion-styles (substring flex)) | 188 | ;; (completion-styles (substring flex)) |
189 | (completion-category-overrides ((file | 189 | ;; (completion-category-overrides ((file (styles |
190 | (styles basic substring flex)))) | 190 | ;; basic substring flex)))) |
191 | (icomplete-delay-completions-threshold 0) | 191 | (icomplete-delay-completions-threshold 0) |
192 | (icomplete-max-delay-chars 0) | 192 | (icomplete-max-delay-chars 0) |
193 | (icomplete-compute-delay 0) | 193 | (icomplete-compute-delay 0) |
194 | (icomplete-show-matches-on-no-input t) | 194 | (icomplete-show-matches-on-no-input t) |
195 | (icomplete-with-buffer-completion-tables t) | 195 | (icomplete-with-buffer-completion-tables t) |
196 | (icomplete-in-buffer t))) | 196 | (icomplete-in-buffer t))) |
197 | (acdw/pkg orderless | ||
198 | :now ((acdw/set '((completion-styles (orderless)))))) | ||
197 | (acdw/pkg icomplete-vertical | 199 | (acdw/pkg icomplete-vertical |
198 | :binds (("<down>" icomplete-forward-completions | 200 | :binds (("<down>" icomplete-forward-completions |
199 | :map icomplete-minibuffer-map) | 201 | :map icomplete-minibuffer-map) |