mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-21 09:33:44 +08:00
20 lines
500 B
VimL
20 lines
500 B
VimL
function! neoformat#formatters#markdown#enabled() abort
|
|
return ['remark', 'prettier']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#markdown#prettier() abort
|
|
return {
|
|
\ 'exe': 'prettier',
|
|
\ 'args': ['--stdin-filepath', '"%:p"'],
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|
|
|
|
function! neoformat#formatters#markdown#remark() abort
|
|
return {
|
|
\ 'exe': 'remark',
|
|
\ 'args': ['--no-color', '--silent'],
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|