mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
10 lines
292 B
VimL
10 lines
292 B
VimL
" Author: rhysd https://rhysd.github.io
|
|
" Description: Redpen, a proofreading tool (http://redpen.cc)
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'redpen',
|
|
\ 'executable': 'redpen',
|
|
\ 'command': 'redpen -f latex -r json %t',
|
|
\ 'callback': 'ale#handlers#redpen#HandleRedpenOutput',
|
|
\})
|