comparison .zfun/zsh-autosuggestions/CHANGELOG.md @ 467:e1ce8897030d

zsh: import df6f6f9ff41 of zsh-autosuggestions
author Augie Fackler <raf@durin42.com>
date Mon, 03 Dec 2018 22:37:29 -0500
parents
children
comparison
equal deleted inserted replaced
466:f248cf012d9a 467:e1ce8897030d
1 # Changelog
2
3 ## v0.5.0
4 - Don't overwrite config with default values (#335)
5 - Support fallback strategies by supplying array to suggestion config var
6 - Rename "default" suggestion strategy to "history" to name it based on what it actually does
7 - Reset opts in some functions affected by `GLOB_SUBST` (#334)
8 - Support widgets starting with dashes (ex: `-a-widget`) (#337)
9 - Skip async tests in zsh versions less than 5.0.8 because of reliability issues
10 - Fix handling of newline + carriage return in async pty (#333)
11
12
13 ## v0.4.3
14 - Avoid bell when accepting suggestions with `autosuggest-accept` (#228)
15 - Don't fetch suggestions after [up,down]-line-or-beginning-search (#227, #241)
16 - We are now running CI against new 5.5.1 version
17 - Fix partial-accept in vi mode (#188)
18 - Fix suggestion disappearing on fast movement after switching to `vicmd` mode (#290)
19 - Fix issue rotating through kill ring with `yank-pop` (#301)
20 - Fix issue creating new pty for async mode when previous pty is not properly cleaned up (#249)
21
22 ## v0.4.2
23 - Fix bug in zsh versions older than 5.0.8 (#296)
24 - Officially support back to zsh v4.3.11
25
26 ## v0.4.1
27 - Switch to [[ and (( conditionals instead of [ (#257)
28 - Avoid warnnestedvar warnings with `typeset -g` (#275)
29 - Replace tabs with spaces in yaml (#268)
30 - Clean up and fix escaping of special characters (#267)
31 - Add `emacs-forward-word` to default list of partial accept widgets (#246)
32
33 ## v0.4.0
34 - High-level integration tests using RSpec and tmux
35 - Add continuous integration with Circle CI
36 - Experimental support for asynchronous suggestions (#170)
37 - Fix problems with multi-line suggestions (#225)
38 - Optimize case where manually typing in suggestion
39 - Avoid wrapping any zle-* widgets (#206)
40 - Remove support for deprecated options from v0.0.x
41 - Handle history entries that begin with dashes
42 - Gracefully handle being sourced multiple times (#126)
43 - Add enable/disable/toggle widgets to disable/enable suggestions (#219)
44
45
46 ## v0.3.3
47 - Switch from $history array to fc builtin for better performance with large HISTFILEs (#164)
48 - Fix tilde handling when extended_glob is set (#168)
49 - Add config option for maximum buffer length to fetch suggestions for (#178)
50 - Add config option for list of widgets to ignore (#184)
51 - Don't fetch a new suggestion unless a modification widget actually modifies the buffer (#183)
52
53 ## v0.3.2
54 - Test runner now supports running specific tests and choosing zsh binary
55 - Return code from original widget is now correctly passed through (#135)
56 - Add `vi-add-eol` to list of accept widgets (#143)
57 - Escapes widget names within evals to fix problems with irregular widget names (#152)
58 - Plugin now clears suggestion while within a completion menu (#149)
59 - .plugin file no longer relies on symbolic link support, fixing issues on Windows (#156)
60
61 ## v0.3.1
62
63 - Fixes issue with `vi-next-char` not accepting suggestion (#137).
64 - Fixes global variable warning when WARN_CREATE_GLOBAL option enabled (#133).
65 - Split out a separate test file for each widget.
66
67 ## v0.3.0
68
69 - Adds `autosuggest-execute` widget (PR #124).
70 - Adds concept of suggestion "strategies" for different ways of fetching suggestions.
71 - Adds "match_prev_cmd" strategy (PR #131).
72 - Uses git submodules for testing dependencies.
73 - Lots of test cleanup.
74 - Various bug fixes for zsh 5.0.x and `sh_word_split` option.
75
76
77 ## v0.2.17
78
79 Start of changelog.