diff --git a/CHANGELOG.md b/CHANGELOG.md index d7f4df9..85e38a1 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 a490011..1704bc0 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 5d3baf8..72c9c68 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 68efe99..4ec84af 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 8479cec..55552e5 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 778d219..e0740af 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