From 581c03c7236109e74c6270b58e6f994f61050368 Mon Sep 17 00:00:00 2001 From: s1n7ax <18459807+s1n7ax@users.noreply.github.com> Date: Thu, 5 Feb 2026 02:09:02 +0000 Subject: [PATCH] chore(doc): automatic vimdoc update --- doc/nvim-java.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/nvim-java.txt b/doc/nvim-java.txt index b90a1b7..709c13b 100644 --- a/doc/nvim-java.txt +++ b/doc/nvim-java.txt @@ -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* @@ -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 @@ -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