Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion doc/nvim-java.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2025 December 10
*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2026 February 05

==============================================================================
Table of Contents *nvim-java-table-of-contents*
Expand Down Expand Up @@ -131,6 +131,8 @@ TEST ~
- `JavaTestDebugCurrentClass` - Debug the test class in the active buffer
- `JavaTestRunCurrentMethod` - Run the test method on the cursor
- `JavaTestDebugCurrentMethod` - Debug the test method on the cursor
- `JavaTestRunAllTests` - Run all tests in the workspace
- `JavaTestDebugAllTests` - Debug all tests in the workspace
- `JavaTestViewLastReport` - Open the last test report in a popup window


Expand Down Expand Up @@ -235,6 +237,18 @@ TEST ~
require('java').test.debug_current_method()
<

- `run_all_tests` - Run all tests in the workspace

>lua
require('java').test.run_all_tests()
<

- `debug_all_tests` - Debug all tests in the workspace

>lua
require('java').test.debug_all_tests()
<

- `view_report` - Open the last test report in a popup window

>lua
Expand Down