diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 12:54:56 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 12:54:56 -0400 |
commit | 82adc523162de141482eccc7ea5682c3d91da30a (patch) | |
tree | 5c4fba06cc9edf35bfec1bc0e5e8234cf2d52406 /init.el | |
parent | Fix `marginalia` / `all-the-icons` not showing up (diff) | |
download | mmosmacs-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.
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 | ||