Skip to content

Commit

Permalink
chore(bump): bump to v5.4.0, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Mar 9, 2024
1 parent 2eee78c commit c8e3087
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
# [5.4.0](https://github.com/olets/zsh-abbr/compare/v5.3.0...v5.4.0) (2024-03-08)

### Features

Cursor placement! With thanks to [@burneyy](https://github.com/burneyy) (see [#63](https://github.com/olets/zsh-abbr/pull/63))

* **abbr-expand widget:** support placing cursor [[#110](https://github.com/olets/zsh-abbr/issues/110)] ([6c688e0](https://github.com/olets/zsh-abbr/commit/6c688e019852df16b70c928bbd87c1b5d3f0382b))
- If `ABBR_SET_EXPANSION_CURSOR` (default `0`) is non-zero, the expansion's first instance of `ABBR_EXPANSION_CURSOR_MARKER` (default `$ABBR_CURSOR_MARKER` (see below)) will be replaced with the cursor
* **abbr-expand-and-insert:**
- replaces deprecated `abbr-expand-and-space` ([36667ce](https://github.com/olets/zsh-abbr/commit/36667cecd26a50ad082f6b83df6c5913e52d6e59))
- support checking buffer for cursor stops ([52c9d3a](https://github.com/olets/zsh-abbr/commit/52c9d3a1e029dc17214716dbc63bd658e861682f))
- If `ABBR_SET_LINE_CURSOR` (default `0`) is non-zero and the cursor wasn't placed during expansion, the buffer's first instance of `ABBR_LINE_CURSOR_MARKER` (default `%`) will be replaced with the cursor



# [5.3.0](https://github.com/olets/zsh-abbr/compare/v5.2.0...v5.3.0) (2024-01-02)

### Features
Expand Down
2 changes: 1 addition & 1 deletion man/man1/abbr.1
@@ -1,4 +1,4 @@
.TH "ZSH-ABBR" 1 "October 19 2023" "abbr 5.2.0" "User Commands"
.TH "ZSH-ABBR" 1 "March 8 2024" "abbr 5.4.0" "User Commands"
.SH NAME
zsh\-abbr \- manage zsh abbreviations
.SH SYNOPSIS
Expand Down
6 changes: 3 additions & 3 deletions zsh-abbr.zsh
Expand Up @@ -2,7 +2,7 @@

# abbreviation management for zsh, inspired by fish shell and enhanced
# https://github.com/olets/zsh-abbr
# v5.3.0
# v5.4.0
# Copyright (c) 2019-present Henry Bley-Vroman


Expand Down Expand Up @@ -80,8 +80,8 @@ abbr() {
quiet=$ABBR_QUIET
quiet=$(( ABBR_QUIETER || ABBR_QUIET ))
quieter=$ABBR_QUIETER
release_date="Jan 2 2024"
version="zsh-abbr version 5.3.0"
release_date="March 8 2024"
version="zsh-abbr version 5.4.0"

# Deprecation notices for values that could be meaningfully set after initialization
# Example form:
Expand Down

0 comments on commit c8e3087

Please sign in to comment.