Skip to content

Commit

Permalink
Don’t ever require a match
Browse files Browse the repository at this point in the history
The current behaviour locks the user in to a known completion whenever a partial
completion is made.
  • Loading branch information
ryuslash committed Jan 8, 2020
1 parent 9720948 commit 76eb2d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion esh-autosuggest.el
Expand Up @@ -117,7 +117,8 @@ respectively."
(interactive (company-begin-backend 'esh-autosuggest))
(prefix (and (eq major-mode 'eshell-mode)
(esh-autosuggest--prefix)))
(candidates (esh-autosuggest-candidates arg))))
(candidates (esh-autosuggest-candidates arg))
(require-match 'never)))

(define-minor-mode esh-autosuggest-mode
"Enable fish-like autosuggestions in eshell.
Expand Down

0 comments on commit 76eb2d2

Please sign in to comment.