We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webapi-vim has been installed in bundle:
cd ~/.vim/bundle git clone https://github.com/mattn/webapi-vim ls emmet-vim ultisnips vim-snippets webapi-vim
Add g:user_emmet_settings in .vimrc:
.vimrc
let g:user_emmet_settings = webapi#json#decode(join(readfile(expand('/home/debian/.vim/bundle/emmet-vim/snippets.json')), "\n"))
Edit the snippets.json:
cat /home/debian/.vim/bundle/emmet-vim/snippets.json { "html": { "abbreviations": { "hello": "testing abbreviation" } } }
hello expand into <hello></hello> when edit html file instead of testing abbreviation,how to fix it?
hello
<hello></hello>
testing abbreviation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
webapi-vim has been installed in bundle:
Add g:user_emmet_settings in
.vimrc
:let g:user_emmet_settings = webapi#json#decode(join(readfile(expand('/home/debian/.vim/bundle/emmet-vim/snippets.json')), "\n"))
Edit the snippets.json:
hello
expand into<hello></hello>
when edit html file instead oftesting abbreviation
,how to fix it?The text was updated successfully, but these errors were encountered: