Add mergeLines()

This commit is contained in:
Yasuhiro Matsumoto
2019-06-20 00:05:36 +09:00
parent 9f854c868e
commit 3f53d7b637

View File

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