Merge pull request #566 from mmppppss/master

fix bug in len() invalid
This commit is contained in:
mattn
2025-07-15 11:44:13 +09:00
committed by GitHub

View File

@@ -430,7 +430,7 @@ function! emmet#getFileType(...) abort
endfor endfor
endif endif
return len(type) == 0 ? 'html' : type return empty(type) ? 'html' : type
endfunction endfunction
function! emmet#getDollarExprs(expand) abort function! emmet#getDollarExprs(expand) abort