diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2018-08-28 04:28:43 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2018-08-28 23:43:52 +0200 |
commit | cc5ad6491f2b2c3bbd10e236b5b414e92464e6b7 (patch) | |
tree | 35549d49bc3937d392e09383c6613189d9bc572b /autoload | |
parent | 3c85c7ef65242cf80279cf9dcf843523f6d7875b (diff) | |
download | ale-cc5ad6491f2b2c3bbd10e236b5b414e92464e6b7.zip |
Add support for xmllint as a fixer.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix/registry.vim | 5 | ||||
-rw-r--r-- | autoload/ale/fixers/xmllint.vim | 27 |
2 files changed, 32 insertions, 0 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim index dfcdc98f..7e9900b1 100644 --- a/autoload/ale/fix/registry.vim +++ b/autoload/ale/fix/registry.vim @@ -225,6 +225,11 @@ let s:default_registry = { \ 'suggested_filetypes': ['dart'], \ 'description': 'Fix Dart files with dartfmt.', \ }, +\ 'xmllint': { +\ 'function': 'ale#fixers#xmllint#Fix', +\ 'suggested_filetypes': ['xml'], +\ 'description': 'Fix XML files with xmllint.', +\ }, \} " Reset the function registry to the default entries. diff --git a/autoload/ale/fixers/xmllint.vim b/autoload/ale/fixers/xmllint.vim new file mode 100644 index 00000000..9beaa48c --- /dev/null +++ b/autoload/ale/fixers/xmllint.vim @@ -0,0 +1,27 @@ +" Author: Cyril Roelandt <tipecaml@gmail.com> +" Description: Integration of xmllint with ALE. + +call ale#Set('xml_xmllint_executable', 'xmllint') +call ale#Set('xml_xmllint_options', '') +call ale#Set('xml_xmllint_indentsize', 2) + +function! ale#fixers#xmllint#Fix(buffer) abort + let l:executable = ale#Escape(ale#Var(a:buffer, 'xml_xmllint_executable')) + let l:filename = ale#Escape(bufname(a:buffer)) + let l:command = l:executable . ' --format ' . l:filename + + let l:indent = ale#Var(a:buffer, 'xml_xmllint_indentsize') + if l:indent isnot# '' + let l:env = ale#Env('XMLLINT_INDENT', repeat(' ', l:indent)) + let l:command = l:env . l:command + endif + + let l:options = ale#Var(a:buffer, 'xml_xmllint_options') + if l:options isnot# '' + let l:command .= ' ' . l:options + endif + + return { + \ 'command': l:command + \} +endfunction |