summaryrefslogtreecommitdiffstats
path: root/src/constants.go
AgeCommit message (Collapse)Author
2024-04-01Improve ingestion performance (by around 20%)Junegunn Choi
2024-02-15Replace "default find command" with built-in directory traversalJunegunn Choi
2023-09-24Remove unnecessary escaping in the default commandJunegunn Choi
2021-03-07Kill input command on terminateJunegunn Choi
Fix #2381 Close #2382
2020-10-270.24.0-rc10.24.0-rc1Junegunn Choi
2020-10-27[vim] Download latest binary to meet version requirementJunegunn Choi
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-110.23.10.23.1Junegunn Choi
2020-10-070.23.00.23.0Junegunn Choi
2020-08-020.22.00.22.0Junegunn Choi
2020-04-030.21.10.21.1Junegunn Choi
2020-03-120.21.00.21.0Junegunn Choi
2020-02-04[windows] Use native walker since output of DOS command is not UTF-8 encoded ↵mattn
(#1847) Makes scanning 300x faster on Windows
2020-01-15Draw spinner with Unicode charactersJunegunn Choi
2019-12-180.20.00.20.0Junegunn Choi
2019-11-150.19.00.19.0Junegunn Choi
2019-11-02--multi to take optional argument to limit the number of selectionJunegunn Choi
Close #1718 Related #688
2019-03-310.18.00.18.0Junegunn Choi
2018-10-070.17.50.17.5Junegunn Choi
2018-09-28Kill running preview process after 500ms when focus has changedJunegunn Choi
Close #1383 Close #1384
2018-06-25Allow search query longer than the screen widthJunegunn Choi
By implementing horizontal scrolling of the prompt line. Maximum length is hard-coded to 300-chars. Close #1312 Fix #1225
2018-06-100.17.40.17.4Junegunn Choi
2018-01-17Update Windows default command to print relative paths (#1200)Jan Edmund Lazo
2017-12-030.17.30.17.3Junegunn Choi
2017-12-03Revert "0.17.2"Junegunn Choi
This reverts commit 2f1edeff78e275662667abc616287e7b9909c1c0.
2017-12-030.17.2Junegunn Choi
2017-12-01Revert default command: find with -fstype requiredJunegunn Choi
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
2017-10-160.17.10.17.1Junegunn Choi
2017-09-28Update FZF_DEFAULT_COMMANDJunegunn Choi
- Use bash for `set -o pipefail` - Fall back to simpler find command when the original command failed Related: #1061
2017-08-270.17.00.17.0Junegunn Choi
2017-08-16Make Reader event notification asynchronousJunegunn Choi
Instead of notifying the event coordinator (EventBox) whenever a new line is arrived, start a background goroutine that periodically does the task. Atomic.StoreInt32 is much cheaper than mutex synchronization that happens during EventBox update.
2017-08-020.16.110.16.11Junegunn Choi
2017-07-210.16.100.16.10Junegunn Choi
2017-07-210.16.90.16.9Junegunn Choi
2017-06-050.16.80.16.8Junegunn Choi
2017-06-04Use find as the default command on Cygwin environmentJunegunn Choi
2017-04-300.16.70.16.7Junegunn Choi
2017-03-050.16.60.16.6Junegunn Choi
2017-02-190.16.50.16.5Junegunn Choi
2017-02-18Properly truncate long query stringJunegunn Choi
2017-02-050.16.40.16.4Junegunn Choi
2017-01-300.16.30.16.3Junegunn Choi
2017-01-240.16.20.16.2Junegunn Choi
2017-01-22Drop ncurses dependencyJunegunn Choi
Close #818
2017-01-160.16.10.16.1Junegunn Choi
2017-01-160.16.0Junegunn Choi
2017-01-08Prepare for 0.16.0 releaseJunegunn Choi
2016-11-260.15.90.15.9Junegunn Choi
2016-11-190.15.80.15.8Junegunn Choi
2016-11-090.15.70.15.7Junegunn Choi