Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

117 rader
4.7 KiB

8 år sedan
6 år sedan
6 år sedan
8 år sedan
  1. # Changelog
  2. ## v0.7.0
  3. - Enable asynchronous mode by default (#498)
  4. - No longer wrap user widgets starting with `autosuggest-` prefix (#496)
  5. - Fix a bug wrapping widgets that modify the buffer (#541)
  6. ## v0.6.4
  7. - Fix `vi-forward-char` triggering a bell when using it to accept a suggestion (#488)
  8. - New configuration option to skip completion suggestions when buffer matches a pattern (#487)
  9. - New configuration option to ignore history entries matching a pattern (#456)
  10. ## v0.6.3
  11. - Fixed bug moving cursor to end of buffer after accepting suggestion (#453)
  12. ## v0.6.2
  13. - Fixed bug deleting the last character in the buffer in vi mode (#450)
  14. - Degrade gracefully when user doesn't have `zsh/system` module installed (#447)
  15. ## v0.6.1
  16. - Fixed bug occurring when `_complete` had been aliased (#443)
  17. ## v0.6.0
  18. - Added `completion` suggestion strategy powered by completion system (#111)
  19. - Allow setting `ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE` to an empty string (#422)
  20. - Don't fetch suggestions after copy-earlier-word (#439)
  21. - Allow users to unignore zle-\* widgets (e.g. zle-line-init) (#432)
  22. ## v0.5.2
  23. - Allow disabling automatic widget re-binding for better performance (#418)
  24. - Fix async suggestions when `SH_WORD_SPLIT` is set
  25. - Refactor async mode to use process substitution instead of zpty (#417)
  26. ## v0.5.1
  27. - Speed up widget rebinding (#413)
  28. - Clean up global variable creations (#403)
  29. - Respect user's set options when running original widget (#402)
  30. ## v0.5.0
  31. - Don't overwrite config with default values (#335)
  32. - Support fallback strategies by supplying array to suggestion config var
  33. - Rename "default" suggestion strategy to "history" to name it based on what it actually does
  34. - Reset opts in some functions affected by `GLOB_SUBST` (#334)
  35. - Support widgets starting with dashes (ex: `-a-widget`) (#337)
  36. - Skip async tests in zsh versions less than 5.0.8 because of reliability issues
  37. - Fix handling of newline + carriage return in async pty (#333)
  38. ## v0.4.3
  39. - Avoid bell when accepting suggestions with `autosuggest-accept` (#228)
  40. - Don't fetch suggestions after [up,down]-line-or-beginning-search (#227, #241)
  41. - We are now running CI against new 5.5.1 version
  42. - Fix partial-accept in vi mode (#188)
  43. - Fix suggestion disappearing on fast movement after switching to `vicmd` mode (#290)
  44. - Fix issue rotating through kill ring with `yank-pop` (#301)
  45. - Fix issue creating new pty for async mode when previous pty is not properly cleaned up (#249)
  46. ## v0.4.2
  47. - Fix bug in zsh versions older than 5.0.8 (#296)
  48. - Officially support back to zsh v4.3.11
  49. ## v0.4.1
  50. - Switch to [[ and (( conditionals instead of [ (#257)
  51. - Avoid warnnestedvar warnings with `typeset -g` (#275)
  52. - Replace tabs with spaces in yaml (#268)
  53. - Clean up and fix escaping of special characters (#267)
  54. - Add `emacs-forward-word` to default list of partial accept widgets (#246)
  55. ## v0.4.0
  56. - High-level integration tests using RSpec and tmux
  57. - Add continuous integration with Circle CI
  58. - Experimental support for asynchronous suggestions (#170)
  59. - Fix problems with multi-line suggestions (#225)
  60. - Optimize case where manually typing in suggestion
  61. - Avoid wrapping any zle-\* widgets (#206)
  62. - Remove support for deprecated options from v0.0.x
  63. - Handle history entries that begin with dashes
  64. - Gracefully handle being sourced multiple times (#126)
  65. - Add enable/disable/toggle widgets to disable/enable suggestions (#219)
  66. ## v0.3.3
  67. - Switch from $history array to fc builtin for better performance with large HISTFILEs (#164)
  68. - Fix tilde handling when extended_glob is set (#168)
  69. - Add config option for maximum buffer length to fetch suggestions for (#178)
  70. - Add config option for list of widgets to ignore (#184)
  71. - Don't fetch a new suggestion unless a modification widget actually modifies the buffer (#183)
  72. ## v0.3.2
  73. - Test runner now supports running specific tests and choosing zsh binary
  74. - Return code from original widget is now correctly passed through (#135)
  75. - Add `vi-add-eol` to list of accept widgets (#143)
  76. - Escapes widget names within evals to fix problems with irregular widget names (#152)
  77. - Plugin now clears suggestion while within a completion menu (#149)
  78. - .plugin file no longer relies on symbolic link support, fixing issues on Windows (#156)
  79. ## v0.3.1
  80. - Fixes issue with `vi-next-char` not accepting suggestion (#137).
  81. - Fixes global variable warning when WARN_CREATE_GLOBAL option enabled (#133).
  82. - Split out a separate test file for each widget.
  83. ## v0.3.0
  84. - Adds `autosuggest-execute` widget (PR #124).
  85. - Adds concept of suggestion "strategies" for different ways of fetching suggestions.
  86. - Adds "match_prev_cmd" strategy (PR #131).
  87. - Uses git submodules for testing dependencies.
  88. - Lots of test cleanup.
  89. - Various bug fixes for zsh 5.0.x and `sh_word_split` option.
  90. ## v0.2.17
  91. Start of changelog.