Allow empty pointer and marker

Close #3879
This commit is contained in:
Junegunn Choi
2024-06-20 01:45:06 +09:00
parent 27d1f5e0a8
commit c3cc378d89
4 changed files with 58 additions and 21 deletions

View File

@@ -10,6 +10,15 @@ CHANGELOG
```
- `$FZF_INFO` is set to the original info text
- ANSI color codes are supported
- Pointer and marker signs can be set to empty strings
```sh
# Minimal style
fzf --pointer '' --marker '' --info hidden
# When --read0 is specified, there can be multi-line entries,
# so you need to set --marker-multi-line to an empty string
find . -print0 | fzf --read0 --pointer '' --marker-multi-line '' --info hidden
```
- Better cache management and improved rendering for `--tail`
- Improved `--sync` behavior
- When `--sync` is provided, fzf will not render the interface until the initial filtering and the associated actions (bound to any of `start`, `load`, `result`, or `focus`) are complete.