blob: 5a49a6d88025426b62e3a91f17f822d1e78f7284 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
" Author: harttle <yangjvn@126.com>
" Description: fecs for HTMl files
call ale#Set('html_fecs_executable', 'fecs')
call ale#Set('html_fecs_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#linter#Define('html', {
\ 'name': 'fecs',
\ 'executable': function('ale#handlers#fecs#GetExecutable'),
\ 'command': function('ale#handlers#fecs#GetCommand'),
\ 'callback': 'ale#handlers#fecs#Handle',
\})
|