m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 15:23:48 -05:00

Disable mouse if failed to query cursor position

This commit is contained in:
Junegunn Choi
2017-01-23 12:15:31 +09:00
parent e1291aa6d2
commit 12a43b5e62

View File

@@ -191,7 +191,8 @@ func (r *LightRenderer) Init() {
if r.fullscreen {
r.smcup()
} else {
_, x := r.findOffset()
y, x := r.findOffset()
r.mouse = r.mouse && y >= 0
if x > 0 {
r.upOneLine = true
r.makeSpace()