diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f15f76..be5d22d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ CHANGELOG ========= +0.9.11 +------ + +### New features + +- Added `--inline-info` option for saving screen estate (#202) + - Useful inside Neovim + - e.g. `let $FZF_DEFAULT_OPTS = $FZF_DEFAULT_OPTS.' --inline-info'` + +### Bug fixes + +- Invalid mutation of input on case conversion (#209) +- Smart-case for each term in extended-search mode (#208) +- Fixed double-click result when scroll offset is positive + 0.9.10 ------ diff --git a/fzf b/fzf index f1838b8..9e85e04 100755 --- a/fzf +++ b/fzf @@ -209,6 +209,7 @@ class FZF when '--toggle-sort', '--tiebreak', '--color' argv.shift when '--tac', '--no-tac', '--sync', '--no-sync', '--hscroll', '--no-hscroll', + '--inline-info', '--no-inline-info', /^--color=(.*)$/, /^--toggle-sort=(.*)$/, /^--tiebreak=(.*)$/ # XXX else diff --git a/install b/install index 2b32cbf..ea89ee6 100755 --- a/install +++ b/install @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version=0.9.10 +version=0.9.11 cd $(dirname $BASH_SOURCE) fzf_base=$(pwd) diff --git a/src/constants.go b/src/constants.go index b204cf9..e3b4c86 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - Version = "0.9.10" + Version = "0.9.11" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond