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 .
- Oct 15, 2017
-
-
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 ".
-
- Oct 10, 2017
-
-
Ionel Cristian Mărieș authored
* Don't do shell quoting for weird chars This would prevent tabs from being escaped as `$'\t'` (definitely not what I would want to see as initial value in the search). * Do different escape.
-
- Oct 08, 2017
-
-
Junegunn Choi authored
Close #1060
-
- Sep 30, 2017
-
-
Junegunn Choi authored
Close #1066 Close #1068
-
- Sep 29, 2017
-
-
Junegunn Choi authored
Close #1055
-
- 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
-
Ricardo González authored
-
- Sep 26, 2017
-
-
Josh Pencheon authored
-
- Sep 17, 2017
-
-
Robert Orzanna authored
-
- Sep 11, 2017
-
-
Lawrence Wu authored
-
- 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 07, 2017
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Jan Edmund Lazo authored
Prevents the following case: before pathshorten - /usr/bin after pathshorten - /u/bin piped to cmd.exe - U:/bin
-
Junegunn Choi authored
Port of https://github.com/junegunn/fzf.vim/commit/e7928d154aad71e530daf5c17733275da5732680 Since :FZF does not enable preview window, we determine based on full &columns instead of &columns / 2.
-
- Sep 06, 2017
-
-
Junegunn Choi authored
-
- Sep 05, 2017
-
-
Jan Edmund Lazo authored
Temporary workaround for non-Windows environment Reference: https://github.com/vim/vim/issues/1998 https://github.com/junegunn/fzf/pull/1019#issuecomment-327008348
-
Jan Edmund Lazo authored
IMPORTANT: cmd.exe and powershell are fine in default Windows terminal. cmd.exe prompt is broken on ConEmu because it natively supports ucs-2 only. utf-16 support is exclusive to .Net (ie. powershell). utf-8 supports requires chcp, external program, but does not fix the cmd.exe prompt. Use powershell on ConEmu to avoid corrupted text on display
-
Jan Edmund Lazo authored
Requirements: - compiled with +terminal - has patch-8.0.995 - has('gui_running') returns 1
-
Jan Edmund Lazo authored
-
Michael Smith authored
Original Patch: https://github.com/junegunn/fzf/commit/a9bf29b65ec36d9caa7298aad0322fba8cb3e130
-
Jan Edmund Lazo authored
- Sep 03, 2017
-
-
Junegunn Choi authored
Close #1040
-
Junegunn Choi authored
-
- Sep 02, 2017
-
-
Junegunn Choi authored
-
- Sep 01, 2017
-
-
Junegunn Choi authored
Close #1039
-
Mike Hearn authored
-
Junegunn Choi authored
Close #1035
-
- Aug 30, 2017
-
-
Junegunn Choi authored
Close #1031
-
- Aug 28, 2017
-
-
Jack O'Connor authored
Previously a command like `echo a && echo b` would get transformed into `echo a && echo b | fzf`, which only pipes the output of the second command. Adding parentheses around the source command avoids this issue, and works on both Unix and Windows.
-
- 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
-