summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/css_beautify.vim
blob: 14a837c4383ceb5f2ff2d01d8ca53e368684b962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" Author: https://github.com/Spixmaster
" Description: Format CSS using css-beautify from js-beautify.

call ale#Set('css_css_beautify_executable', 'css-beautify')
call ale#Set('css_css_beautify_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#Set('css_css_beautify_options', '')

function! ale#fixers#css_beautify#Fix(buffer) abort
    let l:executable = ale#python#FindExecutable(
    \   a:buffer,
    \   'css_css_beautify',
    \   ['css-beautify']
    \)

    let l:options = ale#Var(a:buffer, 'css_css_beautify_options')

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