Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

89 wiersze
3.6 KiB

8 lat temu
6 lat temu
6 lat temu
8 lat temu
  1. # Changelog
  2. ## v0.5.2
  3. - Allow disabling automatic widget re-binding for better performance (#418)
  4. - Fix async suggestions when `SH_WORD_SPLIT` is set
  5. - Refactor async mode to use process substitution instead of zpty (#417)
  6. ## v0.5.1
  7. - Speed up widget rebinding (#413)
  8. - Clean up global variable creations (#403)
  9. - Respect user's set options when running original widget (#402)
  10. ## v0.5.0
  11. - Don't overwrite config with default values (#335)
  12. - Support fallback strategies by supplying array to suggestion config var
  13. - Rename "default" suggestion strategy to "history" to name it based on what it actually does
  14. - Reset opts in some functions affected by `GLOB_SUBST` (#334)
  15. - Support widgets starting with dashes (ex: `-a-widget`) (#337)
  16. - Skip async tests in zsh versions less than 5.0.8 because of reliability issues
  17. - Fix handling of newline + carriage return in async pty (#333)
  18. ## v0.4.3
  19. - Avoid bell when accepting suggestions with `autosuggest-accept` (#228)
  20. - Don't fetch suggestions after [up,down]-line-or-beginning-search (#227, #241)
  21. - We are now running CI against new 5.5.1 version
  22. - Fix partial-accept in vi mode (#188)
  23. - Fix suggestion disappearing on fast movement after switching to `vicmd` mode (#290)
  24. - Fix issue rotating through kill ring with `yank-pop` (#301)
  25. - Fix issue creating new pty for async mode when previous pty is not properly cleaned up (#249)
  26. ## v0.4.2
  27. - Fix bug in zsh versions older than 5.0.8 (#296)
  28. - Officially support back to zsh v4.3.11
  29. ## v0.4.1
  30. - Switch to [[ and (( conditionals instead of [ (#257)
  31. - Avoid warnnestedvar warnings with `typeset -g` (#275)
  32. - Replace tabs with spaces in yaml (#268)
  33. - Clean up and fix escaping of special characters (#267)
  34. - Add `emacs-forward-word` to default list of partial accept widgets (#246)
  35. ## v0.4.0
  36. - High-level integration tests using RSpec and tmux
  37. - Add continuous integration with Circle CI
  38. - Experimental support for asynchronous suggestions (#170)
  39. - Fix problems with multi-line suggestions (#225)
  40. - Optimize case where manually typing in suggestion
  41. - Avoid wrapping any zle-* widgets (#206)
  42. - Remove support for deprecated options from v0.0.x
  43. - Handle history entries that begin with dashes
  44. - Gracefully handle being sourced multiple times (#126)
  45. - Add enable/disable/toggle widgets to disable/enable suggestions (#219)
  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. ## v0.3.2
  53. - Test runner now supports running specific tests and choosing zsh binary
  54. - Return code from original widget is now correctly passed through (#135)
  55. - Add `vi-add-eol` to list of accept widgets (#143)
  56. - Escapes widget names within evals to fix problems with irregular widget names (#152)
  57. - Plugin now clears suggestion while within a completion menu (#149)
  58. - .plugin file no longer relies on symbolic link support, fixing issues on Windows (#156)
  59. ## v0.3.1
  60. - Fixes issue with `vi-next-char` not accepting suggestion (#137).
  61. - Fixes global variable warning when WARN_CREATE_GLOBAL option enabled (#133).
  62. - Split out a separate test file for each widget.
  63. ## v0.3.0
  64. - Adds `autosuggest-execute` widget (PR #124).
  65. - Adds concept of suggestion "strategies" for different ways of fetching suggestions.
  66. - Adds "match_prev_cmd" strategy (PR #131).
  67. - Uses git submodules for testing dependencies.
  68. - Lots of test cleanup.
  69. - Various bug fixes for zsh 5.0.x and `sh_word_split` option.
  70. ## v0.2.17
  71. Start of changelog.