Junegunn Choi 2 years ago
parent d56f605b63
commit b3ab6311c5
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -3,6 +3,7 @@ CHANGELOG
0.30.0
------
- Fixed cursor flickering over the screen by hiding it during rendering
- Added `--ellipsis` option. You can take advantage of it to make fzf
effectively search non-visible parts of the item.
```sh

@ -60,7 +60,7 @@ func (r *LightRenderer) csi(code string) {
func (r *LightRenderer) flush() {
if r.queued.Len() > 0 {
fmt.Fprint(os.Stderr, r.queued.String())
fmt.Fprint(os.Stderr, "\x1b[?25l"+r.queued.String()+"\x1b[?25h")
r.queued.Reset()
}
}

Loading…
Cancel
Save