summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/nixpkgsfmt.vim
blob: 403ce79855580e98b912a479489607058e93fe6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
call ale#Set('nix_nixpkgsfmt_executable', 'nixpkgs-fmt')
call ale#Set('nix_nixpkgsfmt_options', '')

function! ale#fixers#nixpkgsfmt#Fix(buffer) abort
    let l:executable = ale#Var(a:buffer, 'nix_nixpkgsfmt_executable')
    let l:options = ale#Var(a:buffer, 'nix_nixpkgsfmt_options')

    return {
    \   'command': ale#Escape(l:executable)
    \       . (empty(l:options) ? '' : ' ' . l:options),
    \}
endfunction