Skip to content

Commit

Permalink
[README] updated README file
Browse files Browse the repository at this point in the history
  • Loading branch information
vladevelops committed Oct 14, 2024
1 parent 9bbb90a commit 26946d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ vim.keymap.set("n", "<leader>tf", function()
gtestler.execute_favorite_test()
end, { desc = "Run favorite test" })

vim.keymap.set("n", "<leader>tn", function()
gtestler.jump_to_next_test()
end, { desc = "Jump to next test" })

vim.keymap.set("n", "<leader>tp", function()
gtestler.jump_to_previous_test()
end, { desc = "Jump to previous test" })

```

## Help
Expand Down
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
- [x] run test in the list window
- [x] jump to test under the cursor
- [x] delete test in normal mode
- [ ] show buffer with all the available test in current folder
- [ ] show all tests in whole project
- [ ] restore favorite
- [x] jump to first test in buffer even if not added
- [ ] highlight tests already in list
Expand Down

0 comments on commit 26946d4

Please sign in to comment.