Skip to content

Commit 581c03c

Browse files
s1n7axgithub-actions[bot]
authored andcommitted
chore(doc): automatic vimdoc update
1 parent 1cbc391 commit 581c03c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

doc/nvim-java.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2025 December 10
1+
*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2026 February 05
22

33
==============================================================================
44
Table of Contents *nvim-java-table-of-contents*
@@ -131,6 +131,8 @@ TEST ~
131131
- `JavaTestDebugCurrentClass` - Debug the test class in the active buffer
132132
- `JavaTestRunCurrentMethod` - Run the test method on the cursor
133133
- `JavaTestDebugCurrentMethod` - Debug the test method on the cursor
134+
- `JavaTestRunAllTests` - Run all tests in the workspace
135+
- `JavaTestDebugAllTests` - Debug all tests in the workspace
134136
- `JavaTestViewLastReport` - Open the last test report in a popup window
135137

136138

@@ -235,6 +237,18 @@ TEST ~
235237
require('java').test.debug_current_method()
236238
<
237239

240+
- `run_all_tests` - Run all tests in the workspace
241+
242+
>lua
243+
require('java').test.run_all_tests()
244+
<
245+
246+
- `debug_all_tests` - Debug all tests in the workspace
247+
248+
>lua
249+
require('java').test.debug_all_tests()
250+
<
251+
238252
- `view_report` - Open the last test report in a popup window
239253

240254
>lua

0 commit comments

Comments
 (0)