summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-04-22 01:42:38 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-04-22 01:42:38 +0900
commita4cf5510e36e02994549d2289074fffcf68ecf94 (patch)
tree2f82fa5ad1a6727fb11642ffdc11ba9accb68c76
parentedb5ab56222add7552c9180a65b29afbe0af9714 (diff)
0.9.11
-rw-r--r--CHANGELOG.md15
-rwxr-xr-xfzf1
-rwxr-xr-xinstall2
-rw-r--r--src/constants.go2
4 files changed, 18 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f15f767..be5d22d6 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 f1838b8c..9e85e048 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 2b32cbf2..ea89ee6f 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 b204cf96..e3b4c861 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