begin reimplementing motion to move cursor up (vi's 'k' command), although it is in progress and buggy

This commit is contained in:
2025-09-19 04:59:40 +01:00
parent e4e3961d41
commit 4c1a76ae67
2 changed files with 78 additions and 1 deletions

View File

@@ -148,7 +148,7 @@ struct
case chr of
#"h" => MoveViH.move (app, count)
| #"j" => MoveViJ.move (app, count)
| #"k" => MoveViK.move (app, count)
| #"k" => NormalMove.moveCursorUp (app, count)
| #"l" => MoveViL.move (app, count)
| #"w" => MoveToNextWord.move (app, count)
| #"W" => MoveToNextWORD.move (app, count)