emmet-vim icon indicating copy to clipboard operation
emmet-vim copied to clipboard

how to make emmet-vim working on multiple filetype

Open kopimaniz opened this issue 4 years ago • 1 comments

emmet-vim not working on multiple file type, for example :set filetype=php.html

kopimaniz avatar Jul 24 '20 06:07 kopimaniz

I've used autocmd FileType html,css,blade,php,javascript,js,xml,php.css.html EmmetInstall in my vimrc. it works for my php file with php.css.html file type.

Or don't use these two line.

let g:user_emmet_install_global = 0
autocmd FileType html,css EmmetInstall

Or can use this line: let g:user_emmet_install_global = 1

FahimAnayet avatar May 13 '21 00:05 FahimAnayet