v0.3.3 #169

Open
wants to merge 12 commits into
from

3 participants

@ericfreese
zsh-users member
ericfreese commented Jun 10, 2016 edited
  • Add a configuration option for a limit on the max number of history entries to search (#164)
  • Switch from $history array to fc builtin for better performance with large HISTFILEs (#164)
  • Fix tilde handling when extended_glob is set (#168)
  • Add configuration option for maximum buffer length to fetch suggestions for (#178)
  • Add config option for list of widgets to ignore (#184)
  • Don't fetch a new suggestion unless a modification widget actually modifies the buffer (#183)

  • Review readme
  • Update changelog
  • Bump version
tsdh and others added some commits May 28, 2016
@tsdh tsdh Document caveats of match_prev_cmd strategy
This strategy relies on the history being exactly in the order in which
commands have been entered.  Therefore, options like suppressing
duplicates or expiring duplicates first will lead to unexpected
suggestions.
ca70612
@ericfreese ericfreese Merge pull request #163 from tsdh/develop
Document caveats of match_prev_cmd strategy
85ea943
@ericfreese ericfreese Fix #168 and #130: Escape tildes when fetching suggestions b4b3a82
@ericfreese ericfreese Fix #164: Use `fc` builtin instead of `$history` array for lookup
According to a few tests, the `fc` builtin appears to be quite a bit
faster than searching through the `$history` associative array when
dealing with large history files (500K+).
63816c5
@lbolla lbolla Disable autosuggest if buffer is too large
Make buffer max size configurable, defaulted to infinity
7b81eb7
@lbolla lbolla Rename and document new config var 2450c95
@lbolla lbolla Include result of `make` cdf56a3
@lbolla lbolla Update README a9c8efa
@ericfreese ericfreese Merge pull request #178 from lbolla/issue141-develop
Disable autosuggest if buffer is too large
4723946
@ericfreese ericfreese Add ZSH_AUTOSUGGEST_IGNORE_WIDGETS array 25f4afb
@ericfreese ericfreese Remove unnecessary reset of POSTDISPLAy a44aa59
@ericfreese ericfreese Only fetch a new suggestion if buffer has changed b377c39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment