This commit is contained in:
Junegunn Choi
2023-10-15 01:52:02 +09:00
parent 3e1735b06e
commit d3311d9f43
7 changed files with 10 additions and 10 deletions

View File

@@ -3,20 +3,20 @@ CHANGELOG
0.43.0
------
- Experimental, partial support for Kitty image protocol in the preview window
- (Experimental) Added support for Kitty image protocol in the preview window
```sh
fzf --preview='
if file --mime-type {} | grep -qF image/; then
# --transfer-mode=memory is the fastest option but if you want fzf to be able
# to redraw the image on terminal resize or on 'change-preview-window',
# you need to use --transfer-mode=stream.
kitty icat --clear --transfer-mode=memory --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@0x0 {}
kitty icat --clear --transfer-mode=memory --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@0x0 {} | sed \$d
else
bat --color=always {}
fi
'
```
- `--listen` server can report program state in JSON format (`GET /`)
- (Experimental) `--listen` server can report program state in JSON format (`GET /`)
```sh
# fzf server started in "headless" mode
fzf --listen 6266 2> /dev/null