This project is mirrored from https://github.com/junegunn/fzf.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- May 25, 2017
-
-
Tw authored
Due to go std lib uses poller for os.File introducing in this commit: https://github.com/golang/go/commit/c05b06a12d005f50e4776095a60d6bd9c2c91fac There are two changes to watch out: 1. os.File.Fd will always return a blocking fd except on bsd. 2. os.File.Read won't return EAGAIN error for nonblocking fd. So For 1, we just get tty's fd in advance and then set its block mode. For 2, we use read syscall directly to get what we wanted error(EAGAIN). Fix issue #910. Signed-off-by:
Tw <tw19881113@gmail.com>
-
- May 24, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #928
-
- May 22, 2017
-
-
Junegunn Choi authored
# Move cursor to the top result whenever the query string is changed fzf --bind change:top Close #925
-
Junegunn Choi authored
-
Junegunn Choi authored
expand() may return an empty string depending on the value of &wildignore. Since expand('<sfile>') always returns an absolute path, we can remove expand() call here. Close #917.
-
- May 20, 2017
-
-
Aurelien Rainone authored
-
- May 05, 2017
-
-
Theodore Dubois authored
-
- Apr 30, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Preview script cannot properly determine the height of fzf finder if `--height` option is used. https://github.com/junegunn/fzf.vim/issues/361
- Apr 29, 2017
-
-
Junegunn Choi authored
-
- Apr 28, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #906
-
Junegunn Choi authored
-
Junegunn Choi authored
Install script will create the file with the proper function body only if the file doesn't exist. If it already exists, it will try to append `fzf_key_bindings` as before. Close #851
-
- Apr 22, 2017
-
-
Jan Edmund Lazo authored
- Fix shellescaping issues for filepaths - Supports both forward slashes or backslashes - Paths with spaces - Use jobstart for neovim in s:execute (Windows) - https://github.com/neovim/neovim/pull/6497 - Make 2 s:fzf_shellescape functions - (Windows) Substitute \" with \\" to escape the last backslash - (Default) Regular shellescape - Support list 'options' - Add "@Echo off" to the batchfile used to execute fzf
-
- Apr 11, 2017
-
-
Junegunn Choi authored
Close #903 Related #135
-
- Apr 06, 2017
-
-
Junegunn Choi authored
-
- Apr 03, 2017
-
-
Kouki Higashikawa authored
Fix #796
-
- Apr 02, 2017
-
-
Junegunn Choi authored
Close #888 Close #894
-
Junegunn Choi authored
Add PayPal donation button
-
- Apr 01, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #893
-
五所和哉 authored
-
- Mar 30, 2017
-
-
Miodrag Milić authored
-
- Mar 27, 2017
-
-
Daniel Hahler authored
This displays the buffer(s) in this case, which is useful when FZF got stuck, and you have to manually remove the buffer.
-
- Mar 21, 2017
-
-
Sam Van Den Berge authored
Signed-off-by:
Sam Van Den Berge <sam@drgt.net>
-
- Mar 10, 2017
-
-
Christian Sturm authored
-
- Mar 07, 2017
-
-
Junegunn Choi authored
Thanks to @majkinetor. Close #869.
-
- Mar 05, 2017
-
- Mar 04, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Do not automatically decide to use alternate screen when the value of height exceeds the height of the terminal. # Use alternate screen fzf fzf --height 100% fzf --no-height # Still use current screen fzf --height 10000
-
Junegunn Choi authored
-
- Mar 03, 2017
-
-
Junegunn Choi authored
This reverts commit 3a6af275.
-
Junegunn Choi authored
CTRL-R binding used to start with --no-sort to list the matched commands in chronological order. However, it has been a constant source of confusion. Let's enable it by default from now on. The sorted result shouldn't be too confusing as we use --tiebreak=index.
-
Junegunn Choi authored
This is to address a common confusion that one does not realize that sorting is intentionally turned off by default and can be enabled by a bind key.