summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-06-05 23:21:50 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-06-05 23:21:50 +0900
commitb49f22cdf9f2ca021382ddeb026c739a22120781 (patch)
treee53982aa06f3042e0b1ef2d3576c6f64b06a2b7e
parent7e483b0c25224ae218bcc2fb67896d6b4d1c8ea0 (diff)
0.16.80.16.8
-rw-r--r--CHANGELOG.md14
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
5 files changed, 18 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e2cdc300..fb8557cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
CHANGELOG
=========
+0.16.8
+------
+- New `change` event and `top` action for `--bind`
+ - `fzf --bind change:top`
+ - Move cursor to the top result whenever the query string is changed
+ - `fzf --bind ctrl-u:unix-word-rubout+top`
+ - `top` combined with `unix-word-rubout`
+- Fixed inconsistent tiebreak scores when `--nth` is used
+- Proper display of tab characters in `--prompt`
+- Fixed not to `--cycle` on page-up/page-down to prevent overshoot
+- Git revision in `--version` output
+- Basic support for Cygwin environment
+- Many fixes in Vim plugin on Windows/Cygwin (thanks to @janlazo)
+
0.16.7
------
- Added support for `ctrl-alt-[a-z]` key chords
diff --git a/install b/install
index 150cea60..40f5ec4e 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
set -u
-version=0.16.7
+version=0.16.8
auto_completion=
key_bindings=
update_config=2
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index 71b4e359..a9db1422 100644
--- a/man/man1/fzf-tmux.1
+++ b/man/man1/fzf-tmux.1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
-.TH fzf-tmux 1 "Apr 2017" "fzf 0.16.7" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Jun 2017" "fzf 0.16.8" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index c55c900b..291a184f 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
..
-.TH fzf 1 "Apr 2017" "fzf 0.16.7" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Jun 2017" "fzf 0.16.8" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder
diff --git a/src/constants.go b/src/constants.go
index 06889903..56097ffa 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -9,7 +9,7 @@ import (
const (
// Current version
- version = "0.16.7"
+ version = "0.16.8"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond