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 04, 2018
-
-
Heinrich Kruger authored
Restore the original values of 'remain-on-exit' and 'synchronize-panes' options when exiting 'fzf-tmux'.
-
- Apr 30, 2018
-
-
Junegunn Choi authored
awk may not set OFS to match FS depending on the implementation. Close #1227
-
- Apr 26, 2018
-
-
Junegunn Choi authored
Close #1268
-
- Apr 25, 2018
-
-
Junegunn Choi authored
This compensates the use of --tac. fzf will not render on the screen until the complete list of commands are loaded.
-
Junegunn Choi authored
Close #1266 Close #447
-
- 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
-
Avindra Goolcharan authored
Shebangs are only for files that are directly executable. In cases where files are only sourced (such as completion scripts), these are unneeded.
-
Akinori MUSHA authored
-
- Apr 06, 2018
-
-
Robert Orzanna authored
-
- Mar 30, 2018
-
-
ZDNoFYVe authored
-
- Mar 27, 2018
-
-
xalexalex 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
-
- Mar 06, 2018
-
-
Jesse Leite authored
* Document inverse prefix exact match search syntax. * Reorder search syntax table to explain basic exact match first.
-
- Feb 16, 2018
-
-
Junegunn Choi authored
Close #1216 1. Append a single space so that step 3 won't fail 2. CTRL-E to move to the end of the line 3. CTRL-U to delete the whole line before the cursor 4. CTRL-Y to paste the deleted line 5. ESC+Y to rotate the kill ring and bring back the previous yank before step 3 6. CTRL-U to delete the whole line again 7. Paste `__fzf_history__` 8. ESC+CTRL-E to expand the command substitution 9. ESC+R to redraw the line 10. ESC+^ to expand the history entry (!NUMBER)
-
- 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
-
Junegunn Choi authored
Close #1203
-
- Jan 26, 2018
-
-
Junegunn Choi authored
Fix #1205
-
- 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
-