From e93928a70b6bc0d7b680bdd41727ceaf2d4d319b Mon Sep 17 00:00:00 2001 From: Smirnov Oleksandr Date: Sat, 2 Mar 2024 01:28:54 +0200 Subject: [PATCH] maybe it can help? --- README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 7331012..d308478 100644 --- a/README.md +++ b/README.md @@ -54,24 +54,24 @@ require("gopher").setup { ``` >[!NOTE] -> ->
-> -> For named tests to work you have to install gotests from develop branch. Next code snippets could be placed into the build step in the Lazy plugin declaration -> -> -> ```lua -> -- using mason-tool-installer -> require("mason-tool-installer").setup { -> ensure_installed = { -> { "gotests", version = "develop" }, -> } -> } -> -> -- using `vim.fn.jobstart` -> vim.fn.jobstart("go install github.com/cweill/gotests/...@develop") -> ``` ->
+ +
+ + For named tests to work you have to install gotests from develop branch. Next code snippets could be placed into the build step in the Lazy plugin declaration + + + ```lua + -- using mason-tool-installer + require("mason-tool-installer").setup { + ensure_installed = { + { "gotests", version = "develop" }, + } + } + + -- using `vim.fn.jobstart` + vim.fn.jobstart("go install github.com/cweill/gotests/...@develop") + ``` +
## Features @@ -113,7 +113,7 @@ require("gopher").setup { ```lua --- or you can use lua api require("gopher").tags.add "xml" - require("gopher").tags.rm "proto" + require("gopher").tags.rm "proto" ```