- 20 Oct, 2020 1 commit
-
-
Junegunn Choi authored
Close #2217 seq 100 | fzf # 100/100 seq 100 | fzf --multi # 100/100 (0) seq 100 | fzf --multi 5 # 100/100 (0/5)
-
- 18 Oct, 2020 2 commits
-
-
Junegunn Choi authored
Fix #2212 # Will start rendering after 200ms, update every 100ms fzf --preview 'for i in $(seq 100); do echo $i; sleep 0.01; done' # Should print "Loading .." message after 500ms fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done' # The first line should appear after 200ms fzf --preview 'date; sleep 2; date' # Should not render before enough lines for the scroll offset are ready rg --line-number --no-heading --color=always ^ | fzf --delimiter : --ansi --preview-window '+{2}-/2' \ --preview 'sleep 1; bat --style=numbers --color=always --pager=never --highlight-line={2} {1}'
-
-
- 12 Oct, 2020 1 commit
-
-
Andrew Zhou authored
Fixes error when option-like args are parsed (e.g. "-1").
-
- 10 Oct, 2020 2 commits
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- 09 Oct, 2020 3 commits
-
-
Junegunn Choi authored
# Should properly escape arguments FZF_DEFAULT_OPTS='--prompt "\$a`b\"c"' fzf-tmux --header $'$a\nb"c`d'
-
Junegunn Choi authored
Close #2203
-
Junegunn Choi authored
Fix #2203
-
- 07 Oct, 2020 1 commit
-
-
Junegunn Choi authored
-
- 06 Oct, 2020 4 commits
-
-
Elvan Owen authored
-
Junegunn Choi authored
-
Junegunn Choi authored
e.g. --preview-window sharp --preview-window cycle
-
Junegunn Choi authored
Close #2182
-
- 05 Oct, 2020 2 commits
-
-
Tinmarino authored
-
Junegunn Choi authored
-
- 03 Oct, 2020 1 commit
-
-
Junegunn Choi authored
Ideally, we could only use `print -sr` to update the command history. However, the "cd" command by ALT-C is added to the history only after we finalize the current command by pressing an additional enter key. i.e. The cd command from ALT-C is not visible when you hit Up arrow. But it appears once you hit enter key. So when the current buffer is empty, we use `zle accept-line` so that the command history is immediately updated. Close #2200
-
- 02 Oct, 2020 1 commit
-
-
octaltree authored
-
- 29 Sep, 2020 2 commits
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Fix #2017
-
- 24 Sep, 2020 1 commit
-
-
Wenxuan authored
-
- 12 Sep, 2020 1 commit
-
-
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)
-
- 08 Sep, 2020 2 commits
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- 06 Sep, 2020 1 commit
-
-
- 02 Sep, 2020 2 commits
-
-
Yuji Nakao authored
Fix the regular expression to capture the command containing asterisk.
-
Michael Kelley authored
- Update to latest tcell which has 24 bit Windows support - light renderer under Windows defaults to Dark256, if possible - Respect TCELL_TRUECOLOR - Remove tcell 1.3 references
-
- 23 Aug, 2020 4 commits
-
-
Junegunn Choi authored
Use 2-space horizontal padding so that the preview content is aligned with the candidate list when the position of the preview window is `up` or `down`.
-
Junegunn Choi authored
-
Junegunn Choi authored
Fix #2138 Fix #2029
-
Junegunn Choi authored
Related: https://github.com/junegunn/fzf.vim/issues/1092
-
- 21 Aug, 2020 1 commit
-
-
Junegunn Choi authored
-
- 02 Aug, 2020 2 commits
-
-
Junegunn Choi authored
-
Junegunn Choi authored
This is to allow line numbers in a ctags output (e.g. 123;")
-
- 28 Jul, 2020 2 commits
-
-
Junegunn Choi authored
Fix #1618
-
Junegunn Choi authored
-
- 27 Jul, 2020 1 commit
-
-
Junegunn Choi authored
-
- 26 Jul, 2020 3 commits
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #1057 Close #2120 # Initial scroll offset is set to the line number of each line of # git grep output *minus* 5 lines git grep --line-number '' | fzf --delimiter : --preview 'nl {1}' --preview-window +{2}-5
-
yuki yano authored
-