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

Fix offset-up and offset-down with --layout=reverse-list

Related: 3df06a1c68
This commit is contained in:
Junegunn Choi
2025-10-08 11:14:40 +09:00
parent d19ce0ad8d
commit dd46a256c0

View File

@@ -6339,7 +6339,7 @@ func (t *Terminal) Loop() error {
if a.t == actOffsetDown {
diff = -1
}
if t.layout == layoutReverse {
if t.layout != layoutDefault {
diff *= -1
}
t.offset += diff
@@ -6347,7 +6347,7 @@ func (t *Terminal) Loop() error {
t.constrain()
if before != t.offset {
t.offset = before
if t.layout == layoutReverse {
if t.layout != layoutDefault {
diff *= -1
}
t.vmove(diff, false)