summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/xmllint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/fixers/xmllint.vim')
-rw-r--r--autoload/ale/fixers/xmllint.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/ale/fixers/xmllint.vim b/autoload/ale/fixers/xmllint.vim
index 9beaa48c..b14ffd36 100644
--- a/autoload/ale/fixers/xmllint.vim
+++ b/autoload/ale/fixers/xmllint.vim
@@ -11,12 +11,14 @@ function! ale#fixers#xmllint#Fix(buffer) abort
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