Skip to content

Commit

Permalink
Fix error at compile time in previous commit (#1591).
Browse files Browse the repository at this point in the history
* helm-eshell.el (helm-esh-source): Remove fuzzy slot.
(helm-esh-pcomplete): And add it here.
  • Loading branch information
Thierry Volpiatto committed Aug 28, 2016
1 parent 323da85 commit 16f2dcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm-eshell.el
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
(nomark :initform t)
(persistent-action :initform 'ignore)
(nohighlight :initform t)
(fuzzy-match :initform (eval helm-eshell-fuzzy-match))
(filtered-candidate-transformer
:initform
(lambda (candidates _sources)
Expand Down Expand Up @@ -229,7 +228,8 @@ The function that call this should set `helm-ec-target' to thing at point."
(car (last (ignore-errors
(pcomplete-parse-arguments))))))
(with-helm-show-completion beg end
(or (helm :sources (helm-make-source "Eshell completions" 'helm-esh-source)
(or (helm :sources (helm-make-source "Eshell completions" 'helm-esh-source
:fuzzy-match helm-eshell-fuzzy-match)
:buffer "*helm pcomplete*"
:keymap helm-esh-completion-map
:resume 'noresume
Expand Down

0 comments on commit 16f2dcb

Please sign in to comment.