m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -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 7288daff07
commit f4937c1df9

View File

@@ -6332,7 +6332,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
@@ -6340,7 +6340,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)