From 66a2d623e5aa98d37ce7bd9d6f78f5792178f1a5 Mon Sep 17 00:00:00 2001 From: Nick Jensen Date: Thu, 17 Oct 2024 09:33:12 +1300 Subject: [PATCH] Fix incorrect help tag --- autoload/OmniSharp/testrunner.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/OmniSharp/testrunner.vim b/autoload/OmniSharp/testrunner.vim index 44514609d..b46802abc 100644 --- a/autoload/OmniSharp/testrunner.vim +++ b/autoload/OmniSharp/testrunner.vim @@ -310,7 +310,7 @@ function! s:buffer.paintbanner() abort call add(lines, '`' . repeat(self.delimiter(), 80)) call add(lines, '` OmniSharp Test Runner') call add(lines, '` ' . repeat(self.delimiter(), 76)) - call add(lines, '` Toggle this menu (:help omnisharp-test-runner for more)') + call add(lines, '` Toggle this menu (:help omnisharp-testrunner for more)') call add(lines, '` Run test or tests in file under cursor') call add(lines, '` Debug test under cursor') call add(lines, '` Navigate to test or stack trace')