mirror of
https://github.com/mattn/emmet-vim.git
synced 2025-12-08 11:34:46 +08:00
In HTML-like type, `settings.html.*` is used as default setting if `settings.(type).*` is not set. But in HTML type and types extending HTML, `settings.html` is merged into `settings.(type)` and no need to use `settings.html` as explicit default. Before this change, `param<C-y>,` expands to `<param name="" value=""></param>` because `xml` type extends `html` by default, and `html` has default attributes for `param` element. With this change and `g:user_emmet_settings.xml.extends = ""`, users can disable HTML defaults in XML files. So then `param<C-y>,` expands to `<param></param>`.