aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-08-10 19:46:27 +0300
committerYaroslav <contact@yaroslavps.com>2020-08-10 19:46:27 +0300
commitf030afd547a56ce3d6156a0a92dddaae275ee1d4 (patch)
tree023a5751169cc6ffdec1af998d703b5b8bcdae9f /dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim
parent812bcaaf2622dc27310e8579c181394cbc68f7a2 (diff)
downloadvimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.tar.gz
vimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.zip
simplify vim rice: use vimplug for managing plugins
Diffstat (limited to 'dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim')
-rw-r--r--dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim89
1 files changed, 0 insertions, 89 deletions
diff --git a/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim b/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim
deleted file mode 100644
index a7874ec..0000000
--- a/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/rst.vim
+++ /dev/null
@@ -1,89 +0,0 @@
-" vim: ts=4 sw=4 et
-
-function! neomake#makers#ft#rst#SupersetOf() abort
- return 'text'
-endfunction
-
-" Get Sphinx source dir for the current buffer (determined by looking for
-" conf.py, typically in docs/ or doc/).
-" Caches the value in a buffer-local setting.
-function! s:get_sphinx_srcdir() abort
- let srcdir = neomake#config#get('sphinx.source_dir')
- if srcdir isnot# g:neomake#config#undefined
- return srcdir
- endif
-
- let r = ''
- let project_root = neomake#utils#get_project_root()
- let bufname = bufname('%')
- if empty(bufname)
- call neomake#log#debug('sphinx: skipping setting of source_dir for empty bufname.', {'bufnr': bufnr('%')})
- return ''
- endif
- let f = findfile('conf.py', printf('%s;%s', fnamemodify(bufname, ':p:h'), project_root))
- if !empty(f)
- let r = fnamemodify(f, ':p:h')
- endif
- call neomake#log#debug(printf('sphinx: setting b:neomake.sphinx.source_dir=%s.', string(r)), {'bufnr': bufnr('%')})
- call neomake#config#set('b:sphinx.source_dir', r)
- return r
-endfunction
-
-function! neomake#makers#ft#rst#EnabledMakers() abort
- if executable('sphinx-build') && !empty(s:get_sphinx_srcdir())
- return ['sphinx']
- endif
- return ['rstlint', 'rstcheck']
-endfunction
-
-function! neomake#makers#ft#rst#rstlint() abort
- return {
- \ 'exe': 'rst-lint',
- \ 'errorformat':
- \ '%ESEVERE %f:%l %m,'.
- \ '%EERROR %f:%l %m,'.
- \ '%WWARNING %f:%l %m,'.
- \ '%IINFO %f:%l %m,'.
- \ '%C%m',
- \ 'postprocess': function('neomake#postprocess#compress_whitespace'),
- \ 'output_stream': 'stdout',
- \ }
-endfunction
-
-function! neomake#makers#ft#rst#rstcheck() abort
- return {
- \ 'errorformat':
- \ '%I%f:%l: (INFO/1) %m,'.
- \ '%W%f:%l: (WARNING/2) %m,'.
- \ '%E%f:%l: (ERROR/3) %m,'.
- \ '%E%f:%l: (SEVERE/4) %m',
- \ }
-endfunction
-
-function! neomake#makers#ft#rst#sphinx() abort
- " TODO:
- " - project mode (after cleanup branch)
- let srcdir = s:get_sphinx_srcdir()
- if empty(srcdir)
- throw 'Neomake: sphinx: could not find conf.py (you can configure sphinx.source_dir)'
- endif
- if !exists('s:sphinx_cache')
- let s:sphinx_cache = tempname()
- endif
- " NOTE: uses '%Z%m,%-G%.%#' instead of '%C%m,%-G' to include next line in
- " multiline errors (fixed in 7.4.203).
- return {
- \ 'exe': 'sphinx-build',
- \ 'args': ['-n', '-E', '-q', '-N', '-b', 'dummy', srcdir, s:sphinx_cache],
- \ 'append_file': 0,
- \ 'errorformat':
- \ '%f:%l: %tARNING: %m,' .
- \ '%EWARNING: %f:%l: (SEVER%t/4) %m,' .
- \ '%EWARNING: %f:%l: (%tRROR/3) %m,' .
- \ '%EWARNING: %f:%l: (%tARNING/2) %m,' .
- \ '%Z%m,' .
- \ '%-G%.%#',
- \ 'output_stream': 'stderr',
- \ 'postprocess': function('neomake#postprocess#compress_whitespace'),
- \ }
-endfunction