diff --git a/autoload/emmet.vim b/autoload/emmet.vim index bc3e57a..ef4a7ab 100644 --- a/autoload/emmet.vim +++ b/autoload/emmet.vim @@ -848,6 +848,12 @@ function! emmet#removeTag() abort return '' endfunction +function! emmet#mergeLines() abort + let type = emmet#getFileType() + call emmet#lang#{emmet#lang#type(type)}#mergeLines() + return '' +endfunction + function! emmet#anchorizeURL(flag) abort let mx = 'https\=:\/\/[-!#$%&*+,./:;=?@0-9a-zA-Z_~]\+' let pos1 = searchpos(mx, 'bcnW')