erase selected lines.

This commit is contained in:
mattn
2011-11-24 20:58:46 +09:00
parent c1ea1e576b
commit afabf9d4a0

View File

@@ -790,6 +790,7 @@ function! zencoding#expandAbbr(mode) range
let expand = substitute(expand, '\n\s*$', '', 'g') let expand = substitute(expand, '\n\s*$', '', 'g')
let expand = line[:-len(part)-1] . substitute(expand, "\n", "\n" . indent, 'g') . rest let expand = line[:-len(part)-1] . substitute(expand, "\n", "\n" . indent, 'g') . rest
let lines = split(expand, '\n') let lines = split(expand, '\n')
silent! exe "normal! gvc"
call setline(line('.'), lines[0]) call setline(line('.'), lines[0])
if len(lines) > 1 if len(lines) > 1
call append(line('.'), lines[1:]) call append(line('.'), lines[1:])