mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 20:40:35 +08:00
22 lines
507 B
VimL
Vendored
22 lines
507 B
VimL
Vendored
function! neoformat#formatters#purescript#enabled() abort
|
|
return ['purstidy', 'purty']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#purescript#purstidy() abort
|
|
return {
|
|
\ 'exe': 'purs-tidy',
|
|
\ 'args': ['format'],
|
|
\ 'stdin': 1,
|
|
\ 'try_node_exe': 1,
|
|
\ }
|
|
endfunction
|
|
|
|
function! neoformat#formatters#purescript#purty() abort
|
|
return {
|
|
\ 'exe': 'purty',
|
|
\ 'args': ['-'],
|
|
\ 'stdin': 1,
|
|
\ 'try_node_exe': 1,
|
|
\ }
|
|
endfunction
|