summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-11-09 01:45:27 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-11-09 01:45:27 +0900
commita221c672fbd968ea4cd83557a228065a8fc129f3 (patch)
tree0a20abd9ed010fe0d597c7852651f1fdbd1bd2de
parentf87d382ec831ea35a982fa7776000c43654e1538 (diff)
0.15.60.15.6
-rw-r--r--CHANGELOG.md8
-rw-r--r--README.md9
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
6 files changed, 22 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7f4df97..85e38a14 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,14 @@
CHANGELOG
=========
+0.15.6
+------
+- Windows binaries! (@kelleyma49)
+- Fixed the bug where header lines are cleared when preview window is toggled
+- Fixed not to display ^N and ^O on screen
+- Fixed cursor keys (or any key sequence that starts with ESC) on WSL by
+ making fzf wait for additional keystrokes after ESC for up to 100ms
+
0.15.5
------
- Setting foreground color will no longer set background color to black
diff --git a/README.md b/README.md
index a4900116..1704bc09 100644
--- a/README.md
+++ b/README.md
@@ -82,6 +82,15 @@ method used.
- brew: `brew update; brew reinstall fzf`
- vim-plug: `:PlugUpdate fzf`
+### Windows
+
+Pre-built binaries for Windows can be downloaded [here][bin]. However, other
+components of the project may not work on Windows. You might want to consider
+installing fzf on [Windows Subsystem for Linux][wsl] where everything runs
+flawlessly.
+
+[wsl]: https://blogs.msdn.microsoft.com/wsl/
+
Usage
-----
diff --git a/install b/install
index 5d3baf83..72c9c686 100755
--- a/install
+++ b/install
@@ -2,8 +2,8 @@
set -u
-[[ "$@" =~ --pre ]] && version=0.15.5 pre=1 ||
- version=0.15.5 pre=0
+[[ "$@" =~ --pre ]] && version=0.15.6 pre=1 ||
+ version=0.15.6 pre=0
auto_completion=
key_bindings=
diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1
index 68efe994..4ec84afb 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 "Oct 2016" "fzf 0.15.5" "fzf-tmux - open fzf in tmux split pane"
+.TH fzf-tmux 1 "Nov 2016" "fzf 0.15.6" "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 8479cec8..55552e5e 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 "Oct 2016" "fzf 0.15.5" "fzf - a command-line fuzzy finder"
+.TH fzf 1 "Nov 2016" "fzf 0.15.6" "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 778d219a..e0740af6 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -8,7 +8,7 @@ import (
const (
// Current version
- version = "0.15.5"
+ version = "0.15.6"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond