update md

This commit is contained in:
Smirnov Oleksandr 2024-03-01 23:29:56 +02:00
parent eb99191337
commit 6e0d29c47c

View file

@ -82,22 +82,22 @@ require("gopher").setup {
<b>Install plugin's go deps</b> <b>Install plugin's go deps</b>
</summary> </summary>
```vim ```vim
:GoInstallDeps :GoInstallDeps
``` ```
This will install the following tools: This will install the following tools:
- [gomodifytags](https://github.com/fatih/gomodifytags) - [gomodifytags](https://github.com/fatih/gomodifytags)
- [impl](https://github.com/josharian/impl) - [impl](https://github.com/josharian/impl)
- [gotests](https://github.com/cweill/gotests) - [gotests](https://github.com/cweill/gotests)
- [iferr](https://github.com/koron/iferr) - [iferr](https://github.com/koron/iferr)
- [dlv](github.com/go-delve/delve/cmd/dlv) - [dlv](github.com/go-delve/delve/cmd/dlv)
</details> </details>
<details> <details>
<summary> <summary>
<b>Add and remove tags for structs(via gomodifytags)</b> <b>Add and remove tags for structs via <a href="https://github.com/fatih/gomodifytags">gomodifytags</a>)</b>
</summary> </summary>
By default `json` tag will be added/removed, if not set: By default `json` tag will be added/removed, if not set:
@ -119,7 +119,7 @@ This will install the following tools:
<details> <details>
<summary> <summary>
<b>Generating tests via [gotests](https://github.com/cweill)</b> <b>Generating tests via <a href="https://github.com/cweill/gotests">gotests</a></b>
</summary> </summary>
```vim ```vim
@ -170,7 +170,7 @@ This will install the following tools:
<details> <details>
<summary> <summary>
<b>Interface implementation via [impl](https://github.com/josharian/impl)</b> <b>Interface implementation via <a href="https://github.com/josharian/impl">impl<a></b>
</summary> </summary>
Syntax of the command: Syntax of the command:
@ -206,7 +206,7 @@ This will install the following tools:
<details> <details>
<summary> <summary>
<b>Generate `if err != nil {` via [iferr](https://github.com/koron/iferr)</b> <b>Generate `if err != nil {` via <a href="https://github.com/koron/iferr">iferr</a></b>
</summary> </summary>
Set the cursor on the line with `err` and execute Set the cursor on the line with `err` and execute
@ -218,12 +218,12 @@ This will install the following tools:
<details> <details>
<summary> <summary>
<b>Setup [nvim-dap](https://github.com/mfussenegger/nvim-dap) for go in one line</b> <b>Setup <a href="https://github.com/mfussenegger/nvim-dap">nvim-dap</a> for go in one line</b>
</summary> </summary>
>[!IMPORTANT] >[!IMPORTANT]
> >
> [nvim-dap](https://github.com/mfussenegger/nvim-dap) has to be installed > [nvim-dap](https://github.com/mfussenegger/nvim-dap) has to be installed
```lua ```lua
require("gopher.dap").setup() require("gopher.dap").setup()