diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-04-16 23:49:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-16 23:49:45 +0100 |
commit | 430bff7532c13f7eb0920dca0bbc796c45912f28 (patch) | |
tree | 227dd2f6aab2c64d41bf2b3e3ee6391e64db8589 | |
parent | 2643f9f11950ca02824f57b235c7c182c30bca78 (diff) | |
parent | ffda9077aaae4bea8f4d314541db808b5670ac44 (diff) | |
download | ale-430bff7532c13f7eb0920dca0bbc796c45912f28.zip |
Merge pull request #479 from adriaanzon/patch-1
Fix htmlhint variable names
-rw-r--r-- | ale_linters/html/htmlhint.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/html/htmlhint.vim b/ale_linters/html/htmlhint.vim index 2d65dddc..b0172f68 100644 --- a/ale_linters/html/htmlhint.vim +++ b/ale_linters/html/htmlhint.vim @@ -2,9 +2,9 @@ " Description: HTMLHint for checking html files " CLI options -let g:html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix') -let g:html_htmlhint_executable = get(g:, 'ale_html_htmlhint_executable', 'htmlhint') -let g:html_htmlhint_use_global = get(g:, 'ale_html_htmlhint_use_global', 0) +let g:ale_html_htmlhint_options = get(g:, 'ale_html_htmlhint_options', '--format=unix') +let g:ale_html_htmlhint_executable = get(g:, 'ale_html_htmlhint_executable', 'htmlhint') +let g:ale_html_htmlhint_use_global = get(g:, 'ale_html_htmlhint_use_global', 0) function! ale_linters#html#htmlhint#GetExecutable(buffer) abort if ale#Var(a:buffer, 'html_htmlhint_use_global') |