pull/219/head
Junegunn Choi 9 years ago
parent edb5ab5622
commit a4cf5510e3

@ -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
------

1
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

@ -1,6 +1,6 @@
#!/usr/bin/env bash
version=0.9.10
version=0.9.11
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)

@ -8,7 +8,7 @@ import (
const (
// Current version
Version = "0.9.10"
Version = "0.9.11"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond

Loading…
Cancel
Save