diff options
| author | BardofSprites <[email protected]> | 2026-04-22 23:57:43 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2026-04-22 23:57:43 -0400 |
| commit | 2684b00dd73dd28b406dcd463270ec23093fa7ed (patch) | |
| tree | d70647dff47868868629c462394be3f30fe73135 | |
| parent | 43a5835347875e795dde0d60b81790b085025476 (diff) | |
change orderless completion styles
| -rw-r--r-- | config.org | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -410,9 +410,7 @@ This is an emacs package that allows me to write flashcards in org mode. I talke *** Orderless #+begin_src emacs-lisp :tangle bard-emacs-modules/bard-emacs-completion.el :mkdirp yes (use-package orderless - :ensure t - :config - (setq completion-styles '(orderless basic))) + :ensure t) #+end_src *** Tab completion @@ -464,19 +462,19 @@ For a long time I really struggled with Emacs tab completion. It still only kind (use-package minibuffer :config ;;;; Completion styles - (setq completion-styles '(basic substring initials flex orderless)) + (setq completion-styles '(orderless basic substring initials flex)) (setq completion-category-defaults nil) (setq completion-category-overrides - '((file (styles . (basic partial-completion orderless))) + '((file (styles . (orderless basic partial-completion))) (bookmark (styles . (basic substring))) (library (styles . (basic substring))) (embark-keybinding (styles . (basic substring))) - (imenu (styles . (basic substring orderless))) - (consult-location (styles . (basic substring orderless))) + (imenu (styles . (orderless basic substring))) + (consult-location (styles . (orderless basic substring))) (kill-ring (styles . (emacs22 orderless))) - (eglot (styles . (emacs22 substring orderless)))))) + (eglot (styles . (orderless emacs22 substring)))))) #+end_src *** Minibuffer enhancements |
