mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-22 04:45:14 +00:00
0.11.2
This commit is contained in:
parent
f6c6e59a50
commit
95970164ad
@ -10,6 +10,9 @@ CHANGELOG
|
||||
- `index` is implicitly appended to the list when not specified
|
||||
- Default is `length` (or equivalently `length,index`)
|
||||
- `begin` criterion will ignore leading whitespaces when calculating the index
|
||||
- Added `toggle-in` and `toggle-out` actions
|
||||
- Switch direction depending on `--reverse`-ness
|
||||
- `export FZF_DEFAULT_OPTS="--bind tab:toggle-out,shift-tab:toggle-in"`
|
||||
|
||||
0.11.1
|
||||
------
|
||||
|
4
install
4
install
@ -2,8 +2,8 @@
|
||||
|
||||
set -u
|
||||
|
||||
[[ "$@" =~ --pre ]] && version=0.11.1 pre=1 ||
|
||||
version=0.11.1 pre=0
|
||||
[[ "$@" =~ --pre ]] && version=0.11.2 pre=1 ||
|
||||
version=0.11.2 pre=0
|
||||
|
||||
auto_completion=
|
||||
key_bindings=
|
||||
|
@ -8,7 +8,7 @@ import (
|
||||
|
||||
const (
|
||||
// Current version
|
||||
version = "0.11.1"
|
||||
version = "0.11.2"
|
||||
|
||||
// Core
|
||||
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
||||
|
Loading…
Reference in New Issue
Block a user