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 .
- Jan 17, 2018
-
-
Jan Edmund Lazo authored
-
- Jan 14, 2018
-
-
Pierre P authored
-
- Jan 06, 2018
-
-
Junegunn Choi authored
I've decided not to take more donations. Thanks to everyone who has supported my projects. Edgar Hipp Eyal Levin Philip Stewart James O'Beirne Minh Triet Ly Victor Alvarez Max Hung Gearoid Murphy Aaron Taylor Brett Bender Phil Thompson Anders Damsgaard
-
- Dec 07, 2017
-
-
Junegunn Choi authored
Close #681
-
- Dec 05, 2017
-
-
Junegunn Choi authored
Close #1172
-
- Dec 03, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
This reverts commit 2f1edeff.
-
Junegunn Choi authored
-
Junegunn Choi authored
- Close #1169 - https://github.com/gdamore/tcell/pull/159
-
Junegunn Choi authored
The issue is fixed in https://github.com/vim/vim/commit/1232624ae5b56c167c5982a2620f736c4bbc19ef
-
Junegunn Choi authored
After _completion_loader is called, instead of loading the entire completion.bash file, just restore the fzf completion for the current command. `_fzf_orig_completion_$cmd` is only set if _completion_loader actually changed the completion options to avoid infinite loop. Close #1170
- Dec 02, 2017
-
-
Junegunn Choi authored
'accept-non-empty' is similar to 'accept' (which is bound to 'enter' and 'double-click' by default) but it prevents fzf from exiting without any selection. Close #1162
-
- Dec 01, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
replace-query action replaces the query string with the current selection. If the selection is too long, it will be truncated. If the line contains meta-characters of fzf search syntax, it is possible that the line is no longer included in the updated result. e.g. echo '!hello' | fzf --bind ctrl-v:replace-query Close #1137
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #1168
-
Junegunn Choi authored
left-click and right-click are respectively bound to "ignore" and "toggle" (after implicitly moving the cursor) by default. Close #1130
-
Junegunn Choi authored
-
Junegunn Choi authored
In #1061 we changed the default command to retry with a simpler find command with fewer arguments if the first find command failed. This was to support stripped-down verions of find that do not support -fstype argument. However, this caused an unwanted side-effect of yielding duplicate entries when the first command failed after producing some lines. We revert the change in this commit, so the default command will not work with find without -fstype support. But we now print better error message in that case so that the user can set up a working $FZF_DEFAULT_COMMAND. Close #1120 #1167
-
- Nov 27, 2017
-
-
Junegunn Choi authored
/cc @ehandal
-
- Nov 22, 2017
-
-
Jan Edmund Lazo authored
Close #1152 msys2 terminal Vim assumes that it runs in mintty so `:terminal` uses `TERM=xterm`. fzf doesn't support `TERM=xterm` on Windows.
-
Junegunn Choi authored
-
- Nov 19, 2017
-
-
Junegunn Choi authored
-
- Nov 14, 2017
-
-
Aaron Jensen authored
Fixes #915
-
Elliott Sales de Andrade authored
-
- Nov 08, 2017
-
-
Justin Toniazzo authored
The `Respecting .gitignore` link pointed to a section of the readme which no longer exists.
-
- Oct 29, 2017
-
-
Junegunn Choi authored
- https://github.com/sharkdp/fd - https://mike.place/2017/fzf-fd/ /cc @williamsmj
-
- Oct 27, 2017
-
-
Adam Dinwoodie authored
On Cygwin and MinGW, the fzf binary will have a .exe extension, so ignore that binary if it exists as well as the bare binary.
-
- Oct 23, 2017
-
-
Junegunn Choi authored
Since https://github.com/BurntSushi/ripgrep/issues/200 is fixed in 0.7.1, we can safely suggest ripgrep as the candidate generator as it has a more precise implementation of gitignore filtering than the silver searcher.
-
- Oct 21, 2017
-
-
Igor Urazov authored
When `ps` is aliased for something uncommon, like `alias ps=grc ps` which colorizes ps output, the output of `ps` can be unexpected and/or undesired. This change makes ps to be always executed as command, even if it's aliased.
-
- Oct 20, 2017
-
-
Daniel Schaffrath authored
Reference: http://zsh.sourceforge.net/Doc/Release/Shell-Builtin-Commands.html > The flag -r reverses the order of the events
-
- Oct 19, 2017
-
-
Andrey Chernih authored
Handles records like "[20.20.7.168]:9722 ssh-rsa ..." This is a standard format for servers running on custom port according to http://man.openbsd.org/sshd.8#SSH_KNOWN_HOSTS_FILE_FORMAT A hostname or address may optionally be enclosed within ‘[’ and ‘]’ brackets then followed by ‘:’ and a non-standard port number.
-
- Oct 16, 2017
-
- Oct 15, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Related: #1072 /cc @janlazo
-
- Oct 14, 2017
-
-
Junegunn Choi authored
/cc @chrisjohnson Close #1067 Close #1083
-
Jan Edmund Lazo authored
Close #1018 Run the command as is in cmd.exe with no parsing and escaping. Explicity set cmd.SysProcAttr so execCommand does not escape the command. Technically, the command should be escaped with ^ for special characters, including ". This allows cmd.exe commands to be chained together. See https://github.com/neovim/neovim/pull/7343#issuecomment-333350201 This commit also updates quoteEntry to use strings.Replace instead of strconv.Quote which escapes more than \ and ".
-