From e1347da0e1716dfb8a1f9747a520b20ccd83c788 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Wed, 15 Oct 2025 15:29:19 +0100 Subject: [PATCH] add to-do list of things to do next --- todo.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 todo.md diff --git a/todo.md b/todo.md new file mode 100644 index 0000000..928b6a5 --- /dev/null +++ b/todo.md @@ -0,0 +1,24 @@ +# To-do list + +- Add tests for: + - `d0` + - `d$` + - `d^` + - `dd` + - `dn` + - `dN` + - `df` + - `dF` + - `dt` + - `dT` + - delete inside word +- Implement delete-around-word and test it +- Reimplement `%` motion and `d%` motion. + - They should both search for the next character in any pair, the same way in Vim + - Add tests for reimplemented movements and motions +- Reimplement `di` and `da` + - They should search for the next char in the specific pair, the same way in Vim + - Add tests for both +- Implement `dG` motion and test it + +Afterwards, add tests for yanking.