diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 23:14:32 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-18 23:14:32 -0400 |
commit | 3308cd15021604153cf3e9d78d5b1d5e9b876856 (patch) | |
tree | 9d3b7dfbecfd8f24c1548a395a3afcd8fcbd4a7d | |
parent | Automatically reload files when changed on disk (diff) | |
download | mmosmacs-3308cd15021604153cf3e9d78d5b1d5e9b876856.tar.gz mmosmacs-3308cd15021604153cf3e9d78d5b1d5e9b876856.tar.bz2 mmosmacs-3308cd15021604153cf3e9d78d5b1d5e9b876856.zip |
Fix orderless completion errors
-rw-r--r-- | init.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -275,8 +275,7 @@ | |||
275 | (use-package orderless | 275 | (use-package orderless |
276 | :straight t | 276 | :straight t |
277 | :config | 277 | :config |
278 | (setq completion-styles '(orderless | 278 | (setq completion-styles '(orderless) |
279 | orderless-initialism) | ||
280 | completion-category-defaults nil | 279 | completion-category-defaults nil |
281 | completion-category-overrides '((file (styles partial-completion))))) | 280 | completion-category-overrides '((file (styles partial-completion))))) |
282 | 281 | ||