mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
10 lines
337 B
VimL
Vendored
10 lines
337 B
VimL
Vendored
" Author: TANIGUCHI Masaya <ta2gch@gmail.com>
|
|
" Description: textlint for LaTeX files
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'textlint',
|
|
\ 'executable': function('ale#handlers#textlint#GetExecutable'),
|
|
\ 'command': function('ale#handlers#textlint#GetCommand'),
|
|
\ 'callback': 'ale#handlers#textlint#HandleTextlintOutput',
|
|
\})
|