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 31, 2020
-
-
Junegunn Choi authored
-
- Oct 30, 2020
-
-
Junegunn Choi authored
The output may contain some unexpected warning messages from the shell if it's not properly configured. While such extra messages should be properly addressed by the user, we can ignore them by checking the last line of the output instead of the first line. Related: https://github.com/junegunn/fzf.vim/commit/bd3a021ec11617c56e6aa95578fee619445b029d
-
- Oct 29, 2020
-
-
Junegunn Choi authored
-
- Oct 27, 2020
-
-
Junegunn Choi authored
-
nekowasabi authored
-
Junegunn Choi authored
- Oct 26, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Instead of drawing the window border in Vim using an extra window, extend the --border option so that we do can it natively. Close #2223 Fix #2184
-
- Sep 12, 2020
-
-
Junegunn Choi authored
The new default is { 'window' : { 'width': 0.9, 'height': 0.6, 'highlight': 'Normal' } } The default highlight group for the border of the popup window is 'Comment', but 'Normal' seems to be a safer choice. If you prefer the previous default, add this to your Vim configuration file: let g:fzf_layout = { 'down': '40%' } (fzf will fall back to this if popup window is not supported)
-
- Sep 08, 2020
-
-
Junegunn Choi authored
-
- Sep 06, 2020
-
- Jul 26, 2020
-
-
yuki yano authored
-
- Jul 15, 2020
-
-
Yanlin Sun authored
Preserve current directory in case current directory is changed by others after the call of s:open Co-authored-by:
Junegunn Choi <junegunn.c@gmail.com>
-
- Jun 29, 2020
-
-
Junegunn Choi authored
Fix #2093 And we'll phase out height specification with `~` prefix.
-
- Jun 21, 2020
-
- Jun 20, 2020
-
-
Junegunn Choi authored
Fix #2087
-
- May 17, 2020
-
-
lacygoill authored
* No need to restore &wfw and &wfh when using popup window Co-authored-by:
lacygoill <lacygoill@lacygoill.me> Co-authored-by:
Junegunn Choi <junegunn.c@gmail.com>
-
- May 15, 2020
-
-
ichizok authored
Fix #2038
-
- Apr 05, 2020
-
-
Junegunn Choi authored
e.g. if exists('$TMUX') let g:fzf_layout = { 'tmux': '-p90%,60%' } else let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } endif
-
- Mar 30, 2020
-
-
lacygoill authored
Invoking fzf from an existing Vim popup terminal is a special case. It requires some new code to avoid E994 from being raised and the user being stuck in a non-closable popup window. Fix #1916
-
- Mar 03, 2020
-
-
Junegunn Choi authored
Fix #1418 e.g. call fzf#run({'source': [1, 2, 3], 'down': '~50%', 'options': "--border --header $'1\n2'"})
-
- Mar 01, 2020
-
- Feb 16, 2020
-
-
Junegunn Choi authored
Close #1874
-
- Feb 14, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Feb 13, 2020
-
-
Junegunn Choi authored
e.g. let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } } let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } } let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } } let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
-
Junegunn Choi authored
Revert the change introduced in #552. It seems that the startup time difference between bash and fish is not much of an issue now. > time bash -c 'date' Thu Feb 13 21:15:03 KST 2020 real 0m0.008s user 0m0.003s sys 0m0.003s > time fish -c 'date' Thu Feb 13 21:15:05 KST 2020 real 0m0.014s user 0m0.007s sys 0m0.006s When we explicitly *pipe* $FZF_DEFAULT_COMMAND instead of making fzf internally start the process ($FZF_DEFAULT_COMMAND | fzf), fzf may hang if the input process doesn't quickly process SIGPIPE and abort. Also, fzf#vim#grep temporarily swaps $FZF_DEFAULT_COMMAND instead of setting 'sink' so fzf can kill the default command on 'reload'. https://github.com/junegunn/fzf.vim/issues/927 However, because of the "pipe conversion", the trick wasn't working as expected. https://github.com/junegunn/fzf.vim/blob/467c3277884240f7b5430f8f4d600e3415c38f3b/autoload/fzf/vim.vim#L720-L726 We can go even further and always set $FZF_DEFAULT_COMMAND instead of piping source command.
-
- Feb 12, 2020
-
-
Junegunn Choi authored
Credits to @jiangjianshan
-
- Feb 10, 2020
-
-
Kyoichiro Yamada authored
Close #1856 Close #1857
-
- Feb 06, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close https://github.com/junegunn/fzf.vim/issues/942
-
- Feb 05, 2020
-
-
Junegunn Choi authored
-
- Feb 03, 2020
-
-
Junegunn Choi authored
e.g. let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } Based on the code from https://github.com/junegunn/fzf.vim/issues/821#issuecomment-581273191 by @lacygoill.
-
- Jan 07, 2020
-
-
Jan Edmund Lazo authored
-
- Dec 16, 2019
-
-
Jan Edmund Lazo authored
-
- Dec 15, 2019
-
-
Jan Edmund Lazo authored
Truecolor does not work on default Windows terminal. It is a problem in neovim GUIs. https://github.com/sainnhe/edge/issues/5#issuecomment-565748240
-
msr1k authored
* Add MSYS2 support as a vim plugin Add &shellcmdflag and TERM environment variable treatment. - Make &shellcmdflag `/C` when &shell turns into `cmd.exe` - Delete %TERM% environment variable before fzf execution * Change shellescape default value depending on s:is_win flag * Make TERM environment empty only when gui is running * Stop checking &shell in fzf#shellescape function This funcion's behavior is controlled by only if it is Windows or not. So there is no need to check &shell. * Take neovim into consideration when to set shellcmdflag * Add &shellxquote control
-
- Dec 12, 2019
-
-
Junegunn Choi authored
Backport https://github.com/junegunn/vim-plug/pull/913
-
- Nov 11, 2019
-
-
Marco Hinz authored
In recent Nvim versions, an "Error running ..." message is shown even for normal use cases, such as: :Files <c-\><c-n> :close Closing the window will :bwipeout! the terminal buffer, because fzf sets bufhiden=wipe. When deleting the terminal buffer while fzf is still running, Nvim sends SIGHUP. This happens for quite some time already, but the bug only manifests since this commit: https://github.com/neovim/neovim/commit/939d9053b It's The Right Thing to do when the application exited due to a signal. Before that commit, no "Error running ..." message was shown, because 1 (instead of 128 + 1 == SIGHUP) was returned which the exit handler in fzf.vim treats as "NO MATCH".
-