mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-21 09:33:44 +08:00
12 lines
259 B
VimL
12 lines
259 B
VimL
function! neoformat#formatters#matlab#enabled() abort
|
|
return ['matlabformatter']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#matlab#matlabformatter() abort
|
|
return {
|
|
\ 'exe': 'matlab_formatter.py',
|
|
\ 'stdin': 0
|
|
\ }
|
|
endfunction
|
|
|