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 .
- Apr 12, 2018
-
-
Junegunn Choi authored
fzf used to print non-displayable characters (ascii code < 32) as '?', but we will simply ignore those characters with this patch, just like our terminals do. \n and \r are exceptions. They will be printed as a space character. TODO: \H should delete the preceding character, but this is not implemented. Related: #1253
-
Junegunn Choi authored
Close #1234
-
- Mar 30, 2018
-
-
ZDNoFYVe authored
-
- Mar 13, 2018
-
-
Ryan Boehning authored
Add String() methods to types, so they can be printed with %s. Change some %s format specifiers to %v, when the default string representation is good enough. In Go 1.10, `go test` triggers a parallel `go vet`. So this also makes fzf pass `go test`. Close #1236 Close #1219
-
- Feb 15, 2018
-
-
Junegunn Choi authored
For now, they are respectively bound to preview-up and preview-down by default (TBD). Not available on tcell build. Close #1201
-
- Jan 17, 2018
-
-
Jan Edmund Lazo authored
-
- Dec 03, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
This reverts commit 2f1edeff.
-
Junegunn Choi authored
- 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
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
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
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
-
- Oct 16, 2017
-
- Oct 15, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Oct 14, 2017
-
-
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 ".
-
- Sep 28, 2017
-
-
Junegunn Choi authored
- Use bash for `set -o pipefail` - Fall back to simpler find command when the original command failed Related: #1061
-
- Sep 09, 2017
-
-
Junegunn Choi authored
Remove code that is no longer relevant after the removal of ncurses renderer. This commit also fixes background color issue on tcell-based FullscreenRenderer (Windows).
-
- Sep 08, 2017
-
-
Junegunn Choi authored
This fixes foreground color inside preview window when the text has ANSI attributes except for foreground color. Close #1046
-
Junegunn Choi authored
Close #1046
-
- Sep 02, 2017
-
-
Junegunn Choi authored
-
- Aug 27, 2017
-
-
Junegunn Choi authored
Similarly to --bind or --color. --expect used to replace the previously specified keys, and fzf#wrap({'options': '--expect=f1'}) wouldn't work as expected. It forced us to come up with some ugly hacks like the following: https://github.com/junegunn/fzf.vim/blob/13b27c45c8bdf6c3a41376bb83e4895edadf8c7e/autoload/fzf/vim.vim#L1086
-
Junegunn Choi authored
- Aug 26, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Aug 20, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Calculate the first row of the score matrix during phase 2
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Aug 19, 2017
-
-
Junegunn Choi authored
-
- Aug 18, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Rework of 656963e0. Makes --ansi processing around 20% faster on plain strings without ANSI codes.
-
- Aug 17, 2017
-
-
Junegunn Choi authored
This reverts commit 656963e0.
-