diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/graphql.txt | 3 | ||||
-rw-r--r-- | doc/vim-go.txt | 20 | ||||
-rw-r--r-- | doc/vim-jsx-pretty-doc.txt | 1 |
3 files changed, 21 insertions, 3 deletions
diff --git a/doc/graphql.txt b/doc/graphql.txt index 3f41deaa..868c74d8 100644 --- a/doc/graphql.txt +++ b/doc/graphql.txt @@ -46,8 +46,7 @@ the list of recognized template tag names. REASONML *graphql-reasonml* GraphQL syntax support inside of ReasonML template strings using graphql-ppx -is available when vim-reasonml (https://github.com/jordwalke/vim-reasonml) is -also installed. +is available. ------------------------------------------------------------------------------ vim:tw=78:ft=help:norl: diff --git a/doc/vim-go.txt b/doc/vim-go.txt index e00dec9b..b92ab5b9 100644 --- a/doc/vim-go.txt +++ b/doc/vim-go.txt @@ -802,7 +802,7 @@ CTRL-t You can define a constant value instead of the default field based value. For example the following command will add ``valid:"1"`` to all fields. > - :GoAddTags valid=1 + :GoAddTags valid:1 < *:GoRemoveTags* :[range]GoRemoveTags [key],[option] [key1],[option1] ... @@ -1876,6 +1876,24 @@ is `v:null`. let g:go_gopls_local = v:null < + *'g:go_gopls_gofumpt'* + +Specifies whether `gopls` should use `gofumpt` for formatting. When it is +`v:null`, `gopls`' default will be used. By default it is `v:null`. +> + let g:go_gopls_gofumpt = v:null +< + + *'g:go_gopls_settings'* + +Specifies `gopls` workspace settings for `gopls` that are not yet officially +supported by vim-go. Any value in the dictionary will be overridden by values +provided in the specific options supported by vim-go (e.g. +g:go_gopls_staticcheck) or settings statically configured by vim-go to ensure +expected behavior. By default it is `v:null`. +> + let g:go_gopls_settings = v:null +< *'g:go_diagnostics_enabled'* Specifies whether `gopls` diagnostics are enabled. Only the diagnostics for diff --git a/doc/vim-jsx-pretty-doc.txt b/doc/vim-jsx-pretty-doc.txt index a561e475..cc170976 100644 --- a/doc/vim-jsx-pretty-doc.txt +++ b/doc/vim-jsx-pretty-doc.txt @@ -46,6 +46,7 @@ CONFIG *vim-jsx-pretty-config* |---------------------------------------|---------|----------------------| | g:vim_jsx_pretty_enable_jsx_highlight | 1 | jsx highlight flag | | g:vim_jsx_pretty_colorful_config | 0 | colorful config flag | + | g:vim_jsx_pretty_disable_js | 0 | js toggle flag | < - *g:vim_jsx_pretty_enable_jsx_highlight* |