summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-11-09Add --padding optionJunegunn Choi
Close #2241
2020-11-09Remove print statement for debuggingJunegunn Choi
2020-11-05[vim] Fix double path separator issue on WindowsJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/1141
2020-11-030.24.20.24.2Junegunn Choi
2020-11-03Allow preview window height shorter than 3Junegunn Choi
Fix #2231
2020-11-03Fix regression where lines are skipped in the preview windowJunegunn Choi
Fix #2239
2020-11-03Use default bg color when fg is set to -1 with reverse attributeJunegunn Choi
2020-10-31[vim] Set maxwidth and maxheight when creating a popupJunegunn Choi
For me, this fixes invalid popup size problem on Windows GVim
2020-10-31[vim] Remove dead codeJunegunn Choi
2020-10-31Revert "Prefer LightRenderer on Windows if it's available"Junegunn Choi
This reverts commit 7915e365b364af4c4287e35f4697f6e3cfe33284 due to https://github.com/junegunn/fzf.vim/issues/1152#issuecomment-719696495.
2020-10-31Prefer LightRenderer on Windows if it's availableJunegunn Choi
Fix #1766
2020-10-30[vim] See the last line of "fzf --version" outputJunegunn Choi
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
2020-10-290.24.10.24.1Junegunn Choi
2020-10-29Assign default number version (without patch version)Junegunn Choi
So that you can still build and use fzf even when the precise version number is not injected via -ldflags.
2020-10-29[vim] Allow 'border': 'no' to be consistent with --color=noJunegunn Choi
2020-10-29Fix nil error on --color=bwJunegunn Choi
Fix #2229
2020-10-28Make build flags consistentJunegunn Choi
2020-10-28Make Makefile fail when git information is not availableJunegunn Choi
2020-10-28[install] Pass version number to go get commandJunegunn Choi
Related: https://github.com/junegunn/fzf.vim/issues/1150#issuecomment-717735149
2020-10-28Panic when fzf was built without version information0.24.0-1Junegunn Choi
So that the package maintainers would immediately know that the build is incorrect. But is there a way to make build simply fail? Related: https://github.com/junegunn/fzf.vim/issues/1150
2020-10-270.24.00.24.0Junegunn Choi
2020-10-27Merge branch 'devel' into masterJunegunn Choi
2020-10-27Fix: barbled multibyte text(exe. Japanese). (#2224)Junegunn Choi
* Fix: barbled multibyte text(exe. Japanese). * fixup Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2020-10-27fixupJunegunn Choi
2020-10-27Fix error when preview command failed to startJunegunn Choi
2020-10-27Fix: barbled multibyte text(exe. Japanese).nekowasabi
2020-10-270.24.0-rc10.24.0-rc1Junegunn Choi
2020-10-27[vim] Download latest binary to meet version requirementJunegunn Choi
2020-10-26[vim] Add 'none' option for popup borderJunegunn Choi
2020-10-26Add more --border optionsJunegunn Choi
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
2020-10-26Update --color example in CHANGELOGJunegunn Choi
New color name: input
2020-10-26Update --color docsJunegunn Choi
2020-10-25Fix preview window of tcell rendererJunegunn Choi
2020-10-25Add support for text styling using --colorJunegunn Choi
Close #1663
2020-10-24Use 64-bit integer for preview versionJunegunn Choi
2020-10-23Fix regression where empty preview content is not displayedJunegunn Choi
2020-10-23Do not assume that each character takes at least 1 columnJunegunn Choi
Fixes #2163, though this is not a proper fix to the problem.
2020-10-23Update go-runewidthJunegunn Choi
2020-10-23Clarify that additional installation steps may be requiredJunegunn Choi
Close #2211
2020-10-23Support ANSI escape sequence for clearing display in preview windowJunegunn Choi
fzf --preview 'for i in $(seq 100000); do (( i % 200 == 0 )) && printf "\033[2J" echo "$i" sleep 0.01 done'
2020-10-23Fix Travis CI buildJunegunn Choi
2020-10-23Fix test casesJunegunn Choi
We were not properly waiting for truthy-ness in until blocks. Need Minitest with https://github.com/seattlerb/minitest/commit/21d9e804b63c619f602f3f4ece6c71b48974707a
2020-10-20Always show the number of selected entries to indicate if --multi is enabledJunegunn Choi
Close #2217 seq 100 | fzf # 100/100 seq 100 | fzf --multi # 100/100 (0) seq 100 | fzf --multi 5 # 100/100 (0/5)
2020-10-18Implement streaming preview window (#2215)Junegunn Choi
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}'
2020-10-18README-VIM: g:fzf_action doesn't work with custom sinkJunegunn Choi
Fix https://github.com/junegunn/fzf.vim/issues/1131
2020-10-12[fish] Fix parser handling of option-like args (#2208)Andrew Zhou
Fixes error when option-like args are parsed (e.g. "-1").
2020-10-110.23.10.23.1Junegunn Choi
2020-10-11Add --preview-window=default for resetting the optionsJunegunn Choi
2020-10-09Simplify fzf-tmux scriptJunegunn Choi
# Should properly escape arguments FZF_DEFAULT_OPTS='--prompt "\$a`b\"c"' fzf-tmux --header $'$a\nb"c`d'
2020-10-09Add nowrap, nocycle, nohidden for --preview-windowJunegunn Choi
Close #2203