mirror of
https://github.com/amix/vimrc
synced 2025-07-12 14:15:00 +08:00
.
This commit is contained in:
0
sources_non_forked/ale/ale_linters/markdown/alex.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/alex.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/languagetool.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/languagetool.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/markdownlint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/markdownlint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/mdl.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/mdl.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/proselint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/proselint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/redpen.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/redpen.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/remark_lint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/remark_lint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/textlint.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/textlint.vim
Normal file → Executable file
19
sources_non_forked/ale/ale_linters/markdown/vale.vim
Normal file → Executable file
19
sources_non_forked/ale/ale_linters/markdown/vale.vim
Normal file → Executable file
@ -1,9 +1,24 @@
|
||||
" Author: chew-z https://github.com/chew-z
|
||||
" Description: vale for Markdown files
|
||||
|
||||
call ale#Set('markdown_vale_executable', 'vale')
|
||||
call ale#Set('markdown_vale_input_file', '%t')
|
||||
call ale#Set('markdown_vale_options', '')
|
||||
|
||||
function! ale_linters#markdown#vale#GetCommand(buffer) abort
|
||||
let l:executable = ale#Var(a:buffer, 'markdown_vale_executable')
|
||||
let l:input_file = ale#Var(a:buffer, 'markdown_vale_input_file')
|
||||
|
||||
" Defaults to `vale --output=JSON %t`
|
||||
return ale#Escape(l:executable)
|
||||
\ . ' --output=JSON '
|
||||
\ . ale#Var(a:buffer, 'markdown_vale_options')
|
||||
\ . ' ' . l:input_file
|
||||
endfunction
|
||||
|
||||
call ale#linter#Define('markdown', {
|
||||
\ 'name': 'vale',
|
||||
\ 'executable': 'vale',
|
||||
\ 'command': 'vale --output=JSON %t',
|
||||
\ 'executable': {b -> ale#Var(b, 'markdown_vale_executable')},
|
||||
\ 'command': function('ale_linters#markdown#vale#GetCommand'),
|
||||
\ 'callback': 'ale#handlers#vale#Handle',
|
||||
\})
|
||||
|
0
sources_non_forked/ale/ale_linters/markdown/writegood.vim
Normal file → Executable file
0
sources_non_forked/ale/ale_linters/markdown/writegood.vim
Normal file → Executable file
Reference in New Issue
Block a user