Skip to content

Commit bcda25a

Browse files
committed
0.52.0
1 parent 8256fcd commit bcda25a

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CHANGELOG
66
- Added `--highlight-line` to highlight the whole current line (à la `set cursorline` of Vim)
77
- Added color names for selected lines: `selected-fg`, `selected-bg`, and `selected-hl`
88
```sh
9-
fzf --border --multi --info inline-right --layout reverse --marker ▏ --pointer ▌ \
9+
fzf --border --multi --info inline-right --layout reverse --marker ▏ --pointer ▌ --prompt '' \
1010
--highlight-line --color gutter:-1,selected-bg:238,selected-fg:146,current-fg:189
1111
```
1212
- Added `click-header` event that is triggered when the header section is clicked. When the event is triggered, `$FZF_CLICK_HEADER_COLUMN` and `$FZF_CLICK_HEADER_LINE` are set.
@@ -27,6 +27,7 @@ CHANGELOG
2727
- Fixed Windows argument escaping
2828
- Bug fixes and improvements
2929
- The code was heavily refactored to allow using fzf as a library in Go programs. The API is still experimental and subject to change.
30+
- https://gist.github.com/junegunn/193990b65be48a38aac6ac49d5669170
3031

3132
0.51.0
3233
------

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=0.51.0
5+
version=0.52.0
66
auto_completion=
77
key_bindings=
88
update_config=2

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version="0.51.0"
1+
$version="0.52.0"
22

33
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/junegunn/fzf/src/protector"
1111
)
1212

13-
var version = "0.51"
13+
var version = "0.52"
1414
var revision = "devel"
1515

1616
//go:embed shell/key-bindings.bash

man/man1/fzf-tmux.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf-tmux 1 "May 2024" "fzf 0.51.0" "fzf-tmux - open fzf in tmux split pane"
24+
.TH fzf-tmux 1 "May 2024" "fzf 0.52.0" "fzf-tmux - open fzf in tmux split pane"
2525

2626
.SH NAME
2727
fzf-tmux - open fzf in tmux split pane

man/man1/fzf.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf 1 "May 2024" "fzf 0.51.0" "fzf - a command-line fuzzy finder"
24+
.TH fzf 1 "May 2024" "fzf 0.52.0" "fzf - a command-line fuzzy finder"
2525

2626
.SH NAME
2727
fzf - a command-line fuzzy finder

0 commit comments

Comments
 (0)