Skip to content

Commit 1d6e029

Browse files
authored
fix(ui): enable j/k step scroll in normal mode (#131)
1 parent 4cbfb83 commit 1d6e029

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,12 +806,12 @@ function AppShell({
806806
return;
807807
}
808808

809-
if (key.name === "up") {
809+
if (stepUpKey) {
810810
scrollDiff(-1, "step");
811811
return;
812812
}
813813

814-
if (key.name === "down") {
814+
if (stepDownKey) {
815815
scrollDiff(1, "step");
816816
return;
817817
}

0 commit comments

Comments
 (0)