diff --git a/fcore/normal-mode/normal-mode.sml b/fcore/normal-mode/normal-mode.sml index 7730459..6ba5a41 100644 --- a/fcore/normal-mode/normal-mode.sml +++ b/fcore/normal-mode/normal-mode.sml @@ -194,6 +194,7 @@ struct if String.size str = 0 then NormalMove.moveToEnd app else NormalMove.moveToLine (app, count) | #"%" => NormalMove.moveToMatchingPair app + | #"D" => NormalDelete.deleteToEndOfLine (app, time) | #"x" => NormalDelete.removeChr (app, count, time) | #"J" => NormalDelete.removeLineBreaks (app, count, time) | #"/" => switchToNormalSearchMode (app, false) diff --git a/todo.md b/todo.md index ec1205f..3c4f2f6 100644 --- a/todo.md +++ b/todo.md @@ -16,4 +16,4 @@ - They should search for the next char in the specific pair, the same way in Vim - Add tests for both -Afterwards, add tests for yanking. + Afterwards, add tests for yanking.