mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 11:29:01 +00:00
0.16.0
This commit is contained in:
parent
ede7bfb901
commit
4bece04207
@ -3,7 +3,8 @@ CHANGELOG
|
|||||||
|
|
||||||
0.16.0
|
0.16.0
|
||||||
------
|
------
|
||||||
- Added `--height HEIGHT[%]` option
|
- *Added `--height HEIGHT[%]` option*
|
||||||
|
- fzf can now display finder without occupying the full screen
|
||||||
- Preview window will truncate long lines by default. Line wrap can be enabled
|
- Preview window will truncate long lines by default. Line wrap can be enabled
|
||||||
by `:wrap` flag in `--preview-window`.
|
by `:wrap` flag in `--preview-window`.
|
||||||
- Latin script letters will be normalized before matching so that it's easier
|
- Latin script letters will be normalized before matching so that it's easier
|
||||||
|
2
install
2
install
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
version=0.16.0-alpha
|
version=0.16.0
|
||||||
auto_completion=
|
auto_completion=
|
||||||
key_bindings=
|
key_bindings=
|
||||||
update_config=2
|
update_config=2
|
||||||
|
@ -147,7 +147,7 @@ Label characters for \fBjump\fR and \fBjump-accept\fR
|
|||||||
.TP
|
.TP
|
||||||
.BI "--height=" "HEIGHT[%]"
|
.BI "--height=" "HEIGHT[%]"
|
||||||
Display fzf window below the cursor with the given height instead of using
|
Display fzf window below the cursor with the given height instead of using
|
||||||
fullscreen.
|
the full screen.
|
||||||
.TP
|
.TP
|
||||||
.BI "--min-height=" "HEIGHT"
|
.BI "--min-height=" "HEIGHT"
|
||||||
Minimum height when \fB--height\fR is given in percent (default: 10).
|
Minimum height when \fB--height\fR is given in percent (default: 10).
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// Current version
|
// Current version
|
||||||
version = "0.16.0-alpha"
|
version = "0.16.0"
|
||||||
|
|
||||||
// Core
|
// Core
|
||||||
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
||||||
|
Loading…
Reference in New Issue
Block a user