mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.39k stars 411 forks source link

what is missing? I put in vimrc emmet code and nothing... #556

Open jazei-AR opened 2 months ago

jazei-AR commented 2 months ago

Hi, I paste in vimrc the code: let g:user_emmet_settings = { \ 'variables' : { \ 'lang' : "es-AR", \ },'snippets': { \ 'html:5': "<!DOCTYPE html>\n" \ ."<html lang=\"${lang}\">\n" \ ."\n" \ ."\t<meta charset=\"${charset}\">\n" \ ."\t\n" \ ."\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n" \ ."\n" \ ."\n\t${child}|\n\n" \ ."", \ }, }

but nothing change: the html is output in this way: !DOCTYPE html> html lang="es-AR"> head>

<title></title>

/head> body>

/body> Edited for show tags.

without meta viewport!

need anything more? snippet missing?

thank you and regards!