summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-05-220.27.10.27.1Junegunn Choi
2021-05-22Add 'unbind' actionJunegunn Choi
Fix #2486
2021-05-22[man] Clarification on --select-1 and --exit-0Junegunn Choi
2021-05-21[vim] Workaround for Neovim bug of unconditionally evaluating `unlet $ENV_VAR`Junegunn Choi
See #2495
2021-05-19[vim] Update README-VIMJunegunn Choi
2021-05-19[vim] Use terminal buffer on 'down' layout on regular Vim on terminalJunegunn Choi
When 'down' layout was used on regular Vim on terminal, fzf would open below the editor using `--height` option. This was the only case where terminal buffer was not used (the code was written when Vim didn't have builtin terminal) and this exception has been a constant source of confusion. This commit makes fzf open in a terminal buffer even in that case.
2021-05-19[vim] Use FZF_DEFAULT_COMMAND instead of STDIN pipeJunegunn Choi
So that fzf can finish immediately even when the input process doesn't handle SIGPIPE and keeps running. Fix #2481
2021-05-14Replace RuneWidth to StringWidth to handle grapheme clustersJunegunn Choi
Fix #2482
2021-04-29ADVANCED.md: tmux 3.2 is officially releasedJunegunn Choi
2021-04-28[vim] Fix screen offset of relatively positioned popup windowJunegunn Choi
Fix #2461
2021-04-17[vim] Support relative-to-window positioning of popup (#2443)Tom Picton
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2021-04-10Fix goreleaser.ymlJunegunn Choi
2021-04-09Update ADVANCED.mdJunegunn Choi
Remove unnecessary --color option
2021-04-09Update ADVANCED.mdJunegunn Choi
2021-04-09Update ADVANCED.mdJunegunn Choi
2021-04-08Update README.md: Examples pageJunegunn Choi
2021-04-07Fix typoJunegunn Choi
2021-04-07ADVANCED.md: Clarification on {q}Junegunn Choi
2021-04-07Advanced fzf examplesJunegunn Choi
2021-04-060.27.00.27.0Junegunn Choi
2021-04-06Update dependenciesJunegunn Choi
go get: upgraded github.com/lucasb-eyer/go-colorful v1.0.3 => v1.2.0 go get: upgraded github.com/mattn/go-runewidth v0.0.9 => v0.0.12 go get: upgraded github.com/mattn/go-shellwords v1.0.10 => v1.0.11 go get: added github.com/rivo/uniseg v0.2.0 go get: upgraded github.com/saracen/walker v0.1.1 => v0.1.2 go get: upgraded golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 => v0.0.0-20210220032951-036812b2e83c go get: upgraded golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 => v0.0.0-20210403161142-5e06dd20ab57 go get: upgraded golang.org/x/text v0.3.3 => v0.3.6
2021-04-06Change --preview-window delimiter from : to , for consistencyJunegunn Choi
Delimiter : was chosen when --preview-option only supported position and size attributes. e.g. up:50%
2021-04-06Fix minimum preview window heightJunegunn Choi
2021-04-06Sign and notarize macOS binariesJunegunn Choi
Close #2408
2021-04-06Apply preview-bg color to preview border of all shapesJunegunn Choi
2021-04-06More border optins for preview windowJunegunn Choi
Close #2431
2021-04-06Ignore more ANSI escape sequencesJunegunn Choi
Fix #2420
2021-04-06[vim] Compare binary versionsJunegunn Choi
Close #2410
2021-04-05[vim] Fix paste on MacVimJunegunn Choi
Close https://github.com/junegunn/fzf.vim/issues/1233
2021-04-04Speed up preview switching when doing partial renderingJunegunn Choi
Fix #2417
2021-04-04Ensure proper ESC seq handling under Windows preview mode (#2430)Michael Kelley
- Increase go routine buffer size - Add time wait for nonblock getchr() - Resolve #2429
2021-03-26Fix flaky test case: test_interrupt_executeJunegunn Choi
Try to avoid extraneous INT signal
2021-03-25Update README (--phony -> --disabled) (#2404)Philipp Schmitt
2021-03-25Automatically set /dev/tty as STDIN on execute actionJunegunn Choi
https://github.com/junegunn/fzf/issues/1360#issuecomment-788178140 # Redirect /dev/tty to suppress "Vim: Warning: Input is not from a terminal" ls | fzf --bind "enter:execute(vim {} < /dev/tty)" # With this change, we can omit "< /dev/tty" part ls | fzf --bind "enter:execute(vim {})"
2021-03-25[install] Download Darwin arm64 binary (#2400 #2401)Junegunn Choi
2021-03-20Replace golang.org/x/crypto/ssh/terminal with golang.org/x/term (#2395)Mitsuo Heijo
See https://github.com/golang/go/issues/31044
2021-03-20Test against Golang 1.14 and 1.16 (#2396)Mitsuo Heijo
1.14 for 32-bit binaries
2021-03-14Update FUNDING.ymlJunegunn Choi
2021-03-14Update FUNDING.ymlJunegunn Choi
2021-03-14Create FUNDING.ymlJunegunn Choi
2021-03-130.26.00.26.0Junegunn Choi
2021-03-13Advanced preview scroll offset expression to better support fixed headerJunegunn Choi
2021-03-12Fix regression in preview window renderingJunegunn Choi
2021-03-12Add support for preview window headerJunegunn Choi
Fix #2373 # Display top 3 lines as the fixed header fzf --preview 'bat --style=header,grid --color=always {}' --preview-window '~3'
2021-03-12Fix truncation of colored line when --preview-window wrap is setJunegunn Choi
Fix #2346
2021-03-12Fix premature truncation of colored line when --preview-window wrap is setJunegunn Choi
Fix #2346
2021-03-12Fix incorrect tab character handlingJunegunn Choi
Fix #2372
2021-03-11Speed up ANSI code processing (#2368)Charlie Vieth
This commit speeds up the parsing/processing of ANSI escape codes by roughly 7.5x. The speedup is mostly accomplished by replacing the regex with dedicated parsing logic (nextAnsiEscapeSequence()) and reducing the number of allocations in extractColor(). #### Benchmarks ``` name old time/op new time/op delta ExtractColor-16 4.89µs ± 5% 0.64µs ± 2% -86.87% (p=0.000 n=9+9) name old speed new speed delta ExtractColor-16 25.6MB/s ± 5% 194.6MB/s ± 2% +661.43% (p=0.000 n=9+9) name old alloc/op new alloc/op delta ExtractColor-16 1.37kB ± 0% 0.31kB ± 0% -77.31% (p=0.000 n=10+10) name old allocs/op new allocs/op delta ExtractColor-16 48.0 ± 0% 4.0 ± 0% -91.67% (p=0.000 n=10+10) ```
2021-03-08[fish] Make widgets work with --option= prefix (#2383)Jannik Vieten
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2021-03-08[vim] Vim 8.0 compatibilityJunegunn Choi
Fix #2367