summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-01-14 02:54:08 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-01-14 02:54:08 +0900
commit95970164ad0f03cd1a95aec2ad3d3cba180c0308 (patch)
tree96bca06fbe875d5fbe500899c4830b0d9e439bc0
parentf6c6e59a50d580595fd5117ab51b058988fc5f83 (diff)
0.11.2
-rw-r--r--CHANGELOG.md3
-rwxr-xr-xinstall4
-rw-r--r--src/constants.go2
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d81d14d..6827762a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
------
diff --git a/install b/install
index c98dc79d..546e0a7c 100755
--- a/install
+++ b/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=
diff --git a/src/constants.go b/src/constants.go
index 4a18da5a..0145958c 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.11.1"
+ version = "0.11.2"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond