mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-14 22:33:47 -05:00
Fix offset-up and offset-down with --layout=reverse-list
Related: 3df06a1c68
This commit is contained in:
@@ -6339,7 +6339,7 @@ func (t *Terminal) Loop() error {
|
|||||||
if a.t == actOffsetDown {
|
if a.t == actOffsetDown {
|
||||||
diff = -1
|
diff = -1
|
||||||
}
|
}
|
||||||
if t.layout == layoutReverse {
|
if t.layout != layoutDefault {
|
||||||
diff *= -1
|
diff *= -1
|
||||||
}
|
}
|
||||||
t.offset += diff
|
t.offset += diff
|
||||||
@@ -6347,7 +6347,7 @@ func (t *Terminal) Loop() error {
|
|||||||
t.constrain()
|
t.constrain()
|
||||||
if before != t.offset {
|
if before != t.offset {
|
||||||
t.offset = before
|
t.offset = before
|
||||||
if t.layout == layoutReverse {
|
if t.layout != layoutDefault {
|
||||||
diff *= -1
|
diff *= -1
|
||||||
}
|
}
|
||||||
t.vmove(diff, false)
|
t.vmove(diff, false)
|
||||||
|
|||||||
Reference in New Issue
Block a user