extensions#whitespace: fix false positive for check_mix_indent_file() for JS file

This commit is contained in:
Tri Nguyen 2016-03-07 22:17:15 -05:00
parent e8cc5f8b84
commit 48423832d4
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ function! s:check_mixed_indent()
endfunction
function! s:check_mixed_indent_file()
if stridx(&ft, 'c') == 0 || stridx(&ft, 'cpp') == 0
if stridx(&ft, 'c') == 0 || stridx(&ft, 'cpp') == 0 || stridx(&ft, 'javascript') == 0
" for C/CPP only allow /** */ comment style with one space before the '*'
let head_spc = '\v(^ +\*@!)'
else