From 4406b25c0fb0d9cf3e6349f7406f061e719c0d0f Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Wed, 19 Mar 2025 16:06:07 +0200 Subject: [PATCH] docgen --- doc/gopher.nvim.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/gopher.nvim.txt b/doc/gopher.nvim.txt index 4c3fd65..8835b27 100644 --- a/doc/gopher.nvim.txt +++ b/doc/gopher.nvim.txt @@ -129,6 +129,25 @@ Example: Name string `yaml:name` } < +------------------------------------------------------------------------------ + *struct_tags.add()* + `struct_tags.add`({...}) +tags to a struct under the cursor +Parameters ~ +{...} `(string)` Tags to add to the struct fields. If not provided, it will use [config.tag.default_tag] + +------------------------------------------------------------------------------ + *struct_tags.remove()* + `struct_tags.remove`({...}) +tags from a struct under the cursor +Parameters ~ +{...} `(string)` Tags to add to the struct fields. If not provided, it will use [config.tag.default_tag] + +------------------------------------------------------------------------------ + *struct_tags.clear()* + `struct_tags.clear`() +all tags from a struct under the cursor + ============================================================================== ------------------------------------------------------------------------------