Commit Graph

120 Commits

Author SHA1 Message Date
Junegunn Choi e8405f40fe
Refactor the code so that fzf can be used as a library (#3769) 2024-05-07 01:06:42 +09:00
Junegunn Choi 41b3511ad9
Improve ingestion performance (by around 20%) 2024-04-01 23:38:46 +09:00
Junegunn Choi 208e556332
Replace "default find command" with built-in directory traversal 2024-02-15 16:55:43 +09:00
Junegunn Choi 76364ea767 Remove unnecessary escaping in the default command 2023-09-24 13:23:40 +09:00
Junegunn Choi e2e8d94b14
Kill input command on terminate
Fix #2381
Close #2382
2021-03-07 11:30:26 +09:00
Junegunn Choi 552414978e
0.24.0-rc1 2020-10-27 11:07:27 +09:00
Junegunn Choi 607081bbaa
[vim] Download latest binary to meet version requirement 2020-10-27 01:01:58 +09:00
Junegunn Choi faf68dbc5c
Implement streaming preview window (#2215)
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-18 17:03:33 +09:00
Junegunn Choi fc7630a66d
0.23.1 2020-10-11 02:04:07 +09:00
Junegunn Choi dba14d2630
0.23.0 2020-10-07 19:18:50 +09:00
Junegunn Choi e2ae1b249c
0.22.0 2020-08-02 15:56:02 +09:00
Junegunn Choi 334a4fa159
0.21.1 2020-04-03 17:33:29 +09:00
Junegunn Choi b0673c3563
0.21.0 2020-03-12 13:15:45 +09:00
mattn 311b78ae82
[windows] Use native walker since output of DOS command is not UTF-8 encoded (#1847)
Makes scanning 300x faster on Windows
2020-02-04 12:31:00 +09:00
Junegunn Choi 6e3af646b2
Draw spinner with Unicode characters 2020-01-15 10:43:09 +09:00
Junegunn Choi 30577b0c17
0.20.0 2019-12-18 01:07:25 +09:00
Junegunn Choi 9a41fd5327
0.19.0 2019-11-15 22:54:55 +09:00
Junegunn Choi 072066c49c
--multi to take optional argument to limit the number of selection
Close #1718
Related #688
2019-11-02 14:25:12 +09:00
Junegunn Choi ff951341c9
0.18.0 2019-03-31 11:22:38 +09:00
Junegunn Choi b46227dcb6
0.17.5 2018-10-07 01:46:29 +09:00
Junegunn Choi 0d748a0699
Kill running preview process after 500ms when focus has changed
Close #1383
Close #1384
2018-09-28 10:33:52 +09:00
Junegunn Choi 0edbcbdf19
Allow search query longer than the screen width
By implementing horizontal scrolling of the prompt line.
Maximum length is hard-coded to 300-chars.

Close #1312
Fix #1225
2018-06-25 19:07:47 +09:00
Junegunn Choi f0fe79dd3b
0.17.4 2018-06-10 10:35:52 +09:00
Jan Edmund Lazo 7f0caf0683 Update Windows default command to print relative paths (#1200) 2018-01-17 22:02:50 +09:00
Junegunn Choi 390b49653b
0.17.3 2017-12-03 23:55:24 +09:00
Junegunn Choi 04aa2992e7
Revert "0.17.2"
This reverts commit 2f1edeff78.
2017-12-03 23:42:38 +09:00
Junegunn Choi 2f1edeff78
0.17.2 2017-12-03 23:34:37 +09:00
Junegunn Choi 85a75ee035
Revert default command: find with -fstype required
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-12-01 01:40:42 +09:00
Junegunn Choi 0b33dc6ce1
0.17.1 2017-10-16 01:58:57 +09:00
Junegunn Choi ee40212e97
Update FZF_DEFAULT_COMMAND
- Use bash for `set -o pipefail`
- Fall back to simpler find command when the original command failed

Related: #1061
2017-09-28 23:05:02 +09:00
Junegunn Choi e89eebb7ba
0.17.0 2017-08-27 03:32:21 +09:00
Junegunn Choi 487c8fe88f
Make Reader event notification asynchronous
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-16 03:33:48 +09:00
Junegunn Choi ecb6b234cc
0.16.11 2017-08-02 02:50:28 +09:00
Junegunn Choi 6dbc108da2
0.16.10 2017-07-21 18:41:11 +09:00
Junegunn Choi 18a1aeaa91
0.16.9 2017-07-21 00:08:55 +09:00
Junegunn Choi b49f22cdf9
0.16.8 2017-06-05 23:21:50 +09:00
Junegunn Choi bf0cb4bfe2
Use find as the default command on Cygwin environment 2017-06-04 16:23:47 +09:00
Junegunn Choi 2d61691bb2
0.16.7 2017-04-30 11:54:40 +09:00
Junegunn Choi e03e91477b
0.16.6 2017-03-05 03:05:06 +09:00
Junegunn Choi e87a85a179
0.16.5 2017-02-19 01:40:25 +09:00
Junegunn Choi 309e1d8619
Properly truncate long query string 2017-02-18 23:17:29 +09:00
Junegunn Choi ee5aeb80a4
0.16.4 2017-02-05 16:17:54 +09:00
Junegunn Choi d85a69a709
0.16.3 2017-01-30 01:53:17 +09:00
Junegunn Choi f2ce233a6d
0.16.2 2017-01-24 00:37:47 +09:00
Junegunn Choi ff248d566d
Drop ncurses dependency
Close #818
2017-01-22 14:13:37 +09:00
Junegunn Choi 62ab8ece5e
0.16.1 2017-01-16 12:27:40 +09:00
Junegunn Choi 4bece04207
0.16.0 2017-01-16 02:39:37 +09:00
Junegunn Choi a30999a785
Prepare for 0.16.0 release 2017-01-08 02:09:56 +09:00
Junegunn Choi a71c471405
0.15.9 2016-11-26 12:36:24 +09:00
Junegunn Choi 6a65006f55
0.15.8 2016-11-19 23:13:26 +09:00