Browse Source

Squashed 'emacs.d/' changes from 664ba6ab2..c2774bc0d

c2774bc0d Bump version to 0.200.7 and update CHANGELOG.org
9d180c72d More robust fix for error ‘fuzzy-match’ not supported in async sources
d51f61995 Bump version to 0.200.6 and update CHANGELOG.org
c3c5b8e5a Fix helm :config: ‘fuzzy-match’ not supported in async sources.

git-subtree-dir: emacs.d
git-subtree-split: c2774bc0dea3dbc63621709d54685fbbe9212d55
master
Brett Langdon 9 years ago
parent
commit
49bc4ac085
3 changed files with 9 additions and 2 deletions
  1. +6
    -0
      CHANGELOG.org
  2. +1
    -1
      init.el
  3. +2
    -1
      layers/+spacemacs/spacemacs-completion/funcs.el

+ 6
- 0
CHANGELOG.org View File

@ -1,4 +1,10 @@
* Release 0.200.x
** 0.200.7 (2017/01/02)
*** Fixes
- More robust fix for error helm :config: ‘fuzzy-match’ not supported in async sources
** 0.200.6 (2017/01/01)
*** Fixes
- Fix error helm :config: ‘fuzzy-match’ not supported in async sources
** 0.200.5 (2016/11/03)
*** Fixes
- Removed themes missing from MELPA (=colorsarenice-theme= and =stekene-theme=)


+ 1
- 1
init.el View File

@ -16,7 +16,7 @@
;; lower value in your dotfile (function `dotspacemacs/user-config')
(setq gc-cons-threshold 100000000)
(defconst spacemacs-version "0.200.5" "Spacemacs version.")
(defconst spacemacs-version "0.200.7" "Spacemacs version.")
(defconst spacemacs-emacs-min-version "24.4" "Minimal version of Emacs.")
(if (not (version<= spacemacs-emacs-min-version emacs-version))


+ 2
- 1
layers/+spacemacs/spacemacs-completion/funcs.el View File

@ -39,7 +39,8 @@
"Function to be used as advice to activate fuzzy matching for all sources."
(let ((source-type (cadr args))
(props (cddr args)))
(unless (eq source-type 'helm-source-async)
;; fuzzy matching is not supported in async sources
(unless (child-of-class-p source-type helm-source-async)
(plist-put props :fuzzy-match (eq 'always dotspacemacs-helm-use-fuzzy))))
(apply f args))


Loading…
Cancel
Save