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 .
- Jul 01, 2017
-
-
Junegunn Choi authored
With zero result. Related: https://github.com/junegunn/fzf.vim/issues/22#issuecomment-311869805
-
Junegunn Choi authored
-
- Jun 25, 2017
-
-
John Nguyen authored
This also modifies <C-t> behaviour. The longest file path in the input is used as root directory for `find` command. The remainder of the input is passed to fzf's --query as a initial search parameters.
-
Tom Fitzhenry authored
Fix found by @amosbird at https://github.com/junegunn/fzf/issues/953#issuecomment-310309055 closes #440
-
- Jun 23, 2017
-
-
Junegunn Choi authored
See #944
-
- Jun 22, 2017
-
-
Junegunn Choi authored
fzf should immediately continue consuming the buffer after discarding bracketed paste mode sequence. Close #951
-
- Jun 20, 2017
-
-
Junegunn Choi authored
-
- Jun 12, 2017
-
-
John Nguyen authored
If "." is given as the argument to begin <C-t> completion, the leading "." is not correctly removed. In general, if user selects a fzf completion, the current token should be "consumed".
-
- Jun 10, 2017
-
-
Junegunn Choi authored
Close #943
-
- Jun 09, 2017
-
- Jun 08, 2017
-
-
Jan Edmund Lazo authored
-
Uri Gorelik authored
Also change the example binding for `unix-word-rubout` to *ctrl-w* instead of *ctrl-u*
-
- Jun 05, 2017
-
-
Jan Edmund Lazo authored
- Jun 04, 2017
-
-
Junegunn Choi authored
Close #935
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Jun 03, 2017
-
-
Junegunn Choi authored
- Update install script to download Windows binary if $TERM == cygwin - Unset TERM if $TERM == cygwin (#933) - Always use cmd.exe instead of $SHELL when running commands
-
Junegunn Choi authored
-
- Jun 02, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Make sure to consistently calculate tiebreak scores based on the original line. This change may not be preferable if you filter aligned tabular input on a subset of columns using --nth. However, if we calculate length tiebreak only on the matched components instead of the entire line, the result can be very confusing when multiple --nth components are specified, so let's keep it simple and consistent. Close #926
-
Edgar Lee authored
-
- May 31, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Related: https://github.com/junegunn/fzf.vim/issues/378
-
Jan Edmund Lazo authored
-
- May 29, 2017
-
-
Jan Edmund Lazo authored
-
- May 28, 2017
-
-
Junegunn Choi authored
-
- May 26, 2017
-
-
Junegunn Choi authored
-
- May 25, 2017
-
-
Junegunn Choi authored
-
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
-