mirror of
https://github.com/mattn/emmet-vim.git
synced 2025-12-06 10:44:24 +08:00
Compare commits
2 Commits
7d19d812a3
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e983971449 | ||
|
|
56199c129a |
@@ -430,7 +430,7 @@ function! emmet#getFileType(...) abort
|
||||
endfor
|
||||
endif
|
||||
|
||||
return len(type) == 0 ? 'html' : type
|
||||
return empty(type) ? 'html' : type
|
||||
endfunction
|
||||
|
||||
function! emmet#getDollarExprs(expand) abort
|
||||
@@ -1917,11 +1917,7 @@ let s:emmet_settings = {
|
||||
\ 'cap': 'caption',
|
||||
\ 'colg': 'colgroup',
|
||||
\ 'fst': 'fieldset',
|
||||
\ 'fst:disabled': 'fieldset',
|
||||
\ 'btn': 'button',
|
||||
\ 'btn:d': 'button',
|
||||
\ 'btn:r': 'button',
|
||||
\ 'btn:s': 'button',
|
||||
\ 'btn:': 'button',
|
||||
\ 'optg': 'optgroup',
|
||||
\ 'opt': 'option',
|
||||
\ 'pic': 'picture',
|
||||
@@ -1937,7 +1933,6 @@ let s:emmet_settings = {
|
||||
\ 'sty': 'style',
|
||||
\ 'prog': 'progress',
|
||||
\ 'fset': 'fieldset',
|
||||
\ 'fset:d': 'fieldset',
|
||||
\ 'datag': 'datagrid',
|
||||
\ 'datal': 'datalist',
|
||||
\ 'kg': 'keygen',
|
||||
|
||||
Reference in New Issue
Block a user