helm should always be fuzzy by default

This commit is contained in:
Bailey Ling 2016-02-08 14:39:50 -05:00 committed by syl20bnr
parent b7eda6f014
commit 204b6af424

View file

@ -58,14 +58,14 @@
(add-hook 'helm-minibuffer-set-up-hook 'helm-hide-minibuffer-maybe) (add-hook 'helm-minibuffer-set-up-hook 'helm-hide-minibuffer-maybe)
;; fuzzy matching setting ;; fuzzy matching setting
(setq helm-M-x-fuzzy-match t (with-eval-after-load 'helm-source
helm-apropos-fuzzy-match t (defun spacemacs//helm-make-source (f &rest args)
helm-file-cache-fuzzy-match t (let ((source-type (cadr args))
helm-imenu-fuzzy-match t (props (cddr args)))
helm-lisp-fuzzy-completion t (unless (eq source-type 'helm-source-async)
helm-recentf-fuzzy-match t (plist-put props :fuzzy-match t)))
helm-semantic-fuzzy-match t (apply f args))
helm-buffers-fuzzy-matching t) (advice-add 'helm-make-source :around #'spacemacs//helm-make-source))
;; Use helm to provide :ls, unless ibuffer is used ;; Use helm to provide :ls, unless ibuffer is used
(unless (configuration-layer/package-usedp 'ibuffer) (unless (configuration-layer/package-usedp 'ibuffer)