diff --git a/CHANGELOG.md b/CHANGELOG.md index 68612656..da5088d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [4.8.4](https://github.com/olets/zsh-abbr/compare/v4.8.3...v4.8.4) (2022-12-23) + + +### Bug Fixes + +* **expand and accept:** check for zsh-autosuggestion widget ([53a8b06](https://github.com/olets/zsh-abbr/commit/53a8b06a4e210fd9456cd1a83034d153be9589b5)) + + + # [4.8.3](https://github.com/olets/zsh-abbr/compare/v4.8.2...v4.8.3) (2022-12-16) diff --git a/zsh-abbr.zsh b/zsh-abbr.zsh index 91893d74..f6048ca5 100755 --- a/zsh-abbr.zsh +++ b/zsh-abbr.zsh @@ -1,6 +1,6 @@ # abbreviation management for zsh, inspired by fish shell and enhanced # https://github.com/olets/zsh-abbr -# v4.8.3 +# v4.8.4 # Copyright (c) 2019-present Henry Bley-Vroman @@ -67,8 +67,8 @@ _abbr() { quiet=$ABBR_QUIET quiet=$(( ABBR_QUIETER || ABBR_QUIET )) quieter=$ABBR_QUIETER - release_date="December 16 2022" - version="zsh-abbr version 4.8.3" + release_date="December 23 2022" + version="zsh-abbr version 4.8.4" # Deprecation notices for values that could be meaningfully set after initialization # Example form: @@ -1335,6 +1335,7 @@ abbr-expand-and-accept() { zle abbr-expand fi + # zsh-autosuggestions integration if (( ${+widgets[autosuggest-clear]} )); then zle autosuggest-clear fi