From 0bdf470546f1928a41ee89d5697e00fe1464902c Mon Sep 17 00:00:00 2001 From: Billie Cleek Date: Thu, 21 Mar 2019 22:08:02 -0700 Subject: [PATCH] fixup! remove g:go_metalinter in favor of g:go_metalinter_command --- doc/vim-go.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/vim-go.txt b/doc/vim-go.txt index 0d68406525..aaf67a7a0c 100644 --- a/doc/vim-go.txt +++ b/doc/vim-go.txt @@ -1515,11 +1515,12 @@ it's empty < *'g:go_metalinter_command'* -Overrides the command to be executed when |:GoMetaLinter| is called. This is -an advanced settings and is for users who want to have a complete control -over how `gometalinter` should be executed. By default it's empty. +Overrides the command to be executed when |:GoMetaLinter| is called. By +default it's `gometalinter`. `golangci-lint` is also supported. It can also be +used as an advanced setting for users who want to have more control over +the metalinter. > - let g:go_metalinter_command = "" + let g:go_metalinter_command = "gometalinter" < *'g:go_metalinter_deadline'*