We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51f619 commit 9d180c7Copy full SHA for 9d180c7
layers/+spacemacs/spacemacs-completion/funcs.el
@@ -39,8 +39,8 @@
39
"Function to be used as advice to activate fuzzy matching for all sources."
40
(let ((source-type (cadr args))
41
(props (cddr args)))
42
- (unless (memq source-type '(helm-source-async
43
- helm-locate-source))
+ ;; fuzzy matching is not supported in async sources
+ (unless (child-of-class-p source-type helm-source-async)
44
(plist-put props :fuzzy-match (eq 'always dotspacemacs-helm-use-fuzzy))))
45
(apply f args))
46
0 commit comments