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

emmet for vim: http://emmet.io/

Results 119 emmet-vim issues
Sort by recently updated
recently updated
newest added

I have been using Emmet for html, and it expands on command but i have to keep all abbreviations in mind all the time. I have pyright too and it...

Many snippets from [Emmet cheatsheet](https://docs.emmet.io/cheatsheet-a5.pdf) are missing from [default settings](https://github.com/mattn/emmet-vim/blob/def5d57a1ae5afb1b96ebe83c4652d1c03640f4d/autoload/emmet.vim#L2037). E.g. `xsl` snippet is supposed to expand into ``` ``` but it's not present in configuration.

1.) Cursor placement * body { background: #d1d3d4; font-family: 'Bitter', serif; } Type: C-y / Result: body { background: #d1d3d4; font-family: 'Bitter', serif; } 2.) Cursor placement * b*ody {...

I personally have these mappings: ``` imap (emmet-expand-abbr) nmap ]e (emmet-move-next) nmap [e (emmet-move-prev) ``` And never use the emmet leader, and want to free up that mapping for something...

Hi, I'm really sure this is a dumb issue to be opened but I couldn't really find anything! I'm just trying to comment out a number of ``'s inside a...

I have installed emmet-vim and all worked good. When I added this in vimrc: `let g:user_emmet_install_global = 0 autocmd FileType html,css EmmetInstall` there appeared next error: `Error detected while processing...

I'm using nvim and have loaded mattn/emmet-vim with vim plug. It works well with all files it's supposed to. However, for Jekyll's liquid files I'd like to use the same...

A feature I find missing in this plugin is changing tag type. Let's say I have a ``: ```html

Hey, I noticed that when using the remove tag function on elements that have inner elements does not always delete all of the inner elements. For example: ``` ``` Trying...