bugfix typo

This commit is contained in:
Kartik K. Agaram 2022-05-17 18:58:42 -07:00
parent 12681b6307
commit 359056eb7e
1 changed files with 1 additions and 1 deletions

View File

@ -578,7 +578,7 @@ function keychord_pressed(chord)
cursor_line = cursor_line-1
cursor_pos = nearest_cursor_pos(lines[cursor_line].data, old_x, cursor_pos)
else
cursor_line = cursor_line+1
cursor_line = cursor_line-1
end
end
elseif chord == 'down' then