From f0dc7e9fa6193650c15659d7e2de82773c831f6e Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 22 Aug 2023 10:23:29 +0200 Subject: [PATCH] emacs: switch back to space as orderless separator --- modules/base/emacs/base-init.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/base/emacs/base-init.el b/modules/base/emacs/base-init.el index 4a565656..438b3a46 100644 --- a/modules/base/emacs/base-init.el +++ b/modules/base/emacs/base-init.el @@ -122,7 +122,6 @@ (corfu-cycle t "Enable cycling through completions") (corfu-auto t "Show completion preview by default") (corfu-auto-prefix 2 "Show completion after two characters") - (corfu-separator ?# "I use # as a component separator in orderless") ;; Only confirm autocompletion with TAB :bind (:map corfu-map ("RET" . nil)) :config @@ -231,7 +230,6 @@ (use-package orderless :after (vertico) :custom - (orderless-component-separator "#" "Use # for component separation") (completion-styles '(orderless basic) "Use orderless for filtering") (orderless-matching-styles '(orderless-literal orderless-initialism orderless-prefixes) "More matching styles for more flexible matching.") )