From fda4734164168eee8c3cc9bfc78f66c7d714fba7 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 17 Oct 2018 15:01:03 -0400 Subject: [PATCH] lang/common-lisp: disable fuzzy/flex completions Fuzzy search is slower and less predictable, and is generally disabled by default across Doom (or gated behind variables/flags). --- modules/lang/common-lisp/config.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/lang/common-lisp/config.el b/modules/lang/common-lisp/config.el index 4bb9ec9fd..d4134d8fc 100644 --- a/modules/lang/common-lisp/config.el +++ b/modules/lang/common-lisp/config.el @@ -7,7 +7,9 @@ (after! sly (setq sly-mrepl-history-file-name (concat doom-cache-dir "sly-mrepl-history") sly-kill-without-query-p t - sly-net-coding-system 'utf-8-unix) + sly-net-coding-system 'utf-8-unix + ;; Change this to `sly-flex-completions' for fuzzy completion + sly-complete-symbol-function 'sly-simple-completions) (set-popup-rules! '(("^\\*sly-mrepl" :vslot 2 :quit nil :ttl nil)