Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

103 Zeilen
4.2 KiB

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