From c8263b0fc46f1e29f26a3bd42a143fea800d2fca Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Thu, 10 Oct 2019 09:00:24 +0200 Subject: [PATCH] Update go_addtags_transform documentation according to gomodifytags --- doc/vim-go.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/vim-go.txt b/doc/vim-go.txt index 63a0687d3a..caf78271f1 100644 --- a/doc/vim-go.txt +++ b/doc/vim-go.txt @@ -1797,7 +1797,7 @@ default it's 60 seconds. Must be in milliseconds. Sets the `transform` option for `gomodifytags` when using |:GoAddTags| or if it's being used for snippet expansion of single fields. Possible options are: -`snakecase`, `camelcase`. For the following case, if `snakecase` is used the +`snakecase`, `camelcase`, `lispcase`, `pascalcase`, `keep`. For the following case, if `snakecase` is used the field will be transformed to: > type T struct { @@ -1812,7 +1812,7 @@ If "camelcase" is used: } < By default "snakecase" is used. Current values are: ["snakecase", -"camelcase"]. +"camelcase", "lispcase", "pascalcase", "keep"]. > let g:go_addtags_transform = 'snakecase' <