mirror of
https://github.com/junegunn/fzf.git
synced 2025-08-01 20:52:06 -07:00
@@ -4,6 +4,7 @@ CHANGELOG
|
|||||||
0.35.1
|
0.35.1
|
||||||
------
|
------
|
||||||
- Fixed a bug where fzf with `--tiebreak=chunk` crashes on inverse match query
|
- Fixed a bug where fzf with `--tiebreak=chunk` crashes on inverse match query
|
||||||
|
- Fixed a bug where clicking above fzf would paste escape sequences
|
||||||
|
|
||||||
0.35.0
|
0.35.0
|
||||||
------
|
------
|
||||||
|
@@ -545,7 +545,7 @@ func (r *LightRenderer) mouseSequence(sz *int) Event {
|
|||||||
t := atoi(elems[0], -1)
|
t := atoi(elems[0], -1)
|
||||||
x := atoi(elems[1], -1) - 1
|
x := atoi(elems[1], -1) - 1
|
||||||
y := atoi(elems[2], -1) - 1 - r.yoffset
|
y := atoi(elems[2], -1) - 1 - r.yoffset
|
||||||
if t < 0 || x < 0 || y < 0 {
|
if t < 0 || x < 0 {
|
||||||
return Event{Invalid, 0, nil}
|
return Event{Invalid, 0, nil}
|
||||||
}
|
}
|
||||||
*sz += end + 1
|
*sz += end + 1
|
||||||
|
Reference in New Issue
Block a user