From f030afd547a56ce3d6156a0a92dddaae275ee1d4 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Mon, 10 Aug 2020 19:46:27 +0300 Subject: simplify vim rice: use vimplug for managing plugins --- .../nvim/site/autoload/neomake/makers/ft/go.vim | 84 ---------------------- 1 file changed, 84 deletions(-) delete mode 100644 dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/go.vim (limited to 'dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/go.vim') diff --git a/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/go.vim b/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/go.vim deleted file mode 100644 index ac53730..0000000 --- a/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/go.vim +++ /dev/null @@ -1,84 +0,0 @@ -" vim: ts=4 sw=4 et - -function! neomake#makers#ft#go#EnabledMakers() abort - let makers = ['go'] - if executable('golangci-lint') - call add(makers, 'golangci_lint') - elseif executable('gometalinter') - call add(makers, 'gometalinter') - else - call extend(makers, ['golint', 'govet']) - endif - return makers -endfunction - -function! neomake#makers#ft#go#go() abort - return { - \ 'args': [ - \ 'test', '-c', - \ '-o', g:neomake#compat#dev_null, - \ ], - \ 'append_file': 0, - \ 'cwd': '%:h', - \ 'serialize': 1, - \ 'serialize_abort_on_error': 1, - \ 'errorformat': - \ '%W%f:%l: warning: %m,' . - \ '%E%f:%l:%c:%m,' . - \ '%E%f:%l:%m,' . - \ '%C%\s%\+%m,' . - \ '%-G%.%#\\\[no test files],' . - \ '%-G#%.%#', - \ 'postprocess': function('neomake#postprocess#compress_whitespace'), - \ 'version_arg': 'version', - \ } -endfunction - -function! neomake#makers#ft#go#golint() abort - " golint's issues are informational, as they're stylistic (not bugs) - return { - \ 'errorformat': - \ '%I%f:%l:%c: %m,' . - \ '%-G%.%#' - \ } -endfunction - -function! neomake#makers#ft#go#govet() abort - return { - \ 'exe': 'go', - \ 'args': ['vet'], - \ 'append_file': 0, - \ 'cwd': '%:h', - \ 'errorformat': - \ '%Evet: %.%\+: %f:%l:%c: %m,' . - \ '%W%f:%l: %m,' . - \ '%-G%.%#' - \ } -endfunction - -function! neomake#makers#ft#go#gometalinter() abort - " Only run a subset of gometalinter for speed, users can override with: - " let g:neomake_go_gometalinter_args = ['--disable-all', '--enable=X', ...] - " - " All linters are only warnings, the go compiler will report errors - return { - \ 'args': ['--disable-all', '--enable=errcheck', '--enable=megacheck', '--vendor'], - \ 'append_file': 0, - \ 'cwd': '%:h', - \ 'errorformat': - \ '%f:%l:%c:%t%*[^:]: %m,' . - \ '%f:%l::%t%*[^:]: %m' - \ } -endfunction - -function! neomake#makers#ft#go#golangci_lint() abort - return { - \ 'exe': 'golangci-lint', - \ 'args': ['run', '--out-format=line-number', '--print-issued-lines=false'], - \ 'output_stream': 'stdout', - \ 'append_file': 0, - \ 'cwd': '%:h', - \ 'errorformat': - \ '%f:%l:%c: %m' - \ } -endfunction -- cgit v1.2.3