aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-18 12:54:56 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-18 12:54:56 -0400
commit82adc523162de141482eccc7ea5682c3d91da30a (patch)
tree5c4fba06cc9edf35bfec1bc0e5e8234cf2d52406
parentFix `marginalia` / `all-the-icons` not showing up (diff)
downloadmmosmacs-82adc523162de141482eccc7ea5682c3d91da30a.tar.gz
mmosmacs-82adc523162de141482eccc7ea5682c3d91da30a.tar.bz2
mmosmacs-82adc523162de141482eccc7ea5682c3d91da30a.zip
Fix orderless completion "bug" when typing a dash
It's not exactly a bug, it's an intended feature that I was attempting to use, but it didn't suit me and presented itself as a bug in my workflow.
-rw-r--r--init.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/init.el b/init.el
index 74b4ab7..7773a10 100644
--- a/init.el
+++ b/init.el
@@ -276,9 +276,7 @@
276 :straight t 276 :straight t
277 :config 277 :config
278 (setq completion-styles '(orderless 278 (setq completion-styles '(orderless
279 orderless-initialism 279 orderless-initialism)
280 orderless-flex
281 orderless-prefixes)
282 completion-category-defaults nil 280 completion-category-defaults nil
283 completion-category-overrides '((file (styles partial-completion))))) 281 completion-category-overrides '((file (styles partial-completion)))))
284 282