Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

106 řádky
4.2 KiB

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