forked from VimPlug/emmet-vim
new feature, add code pretty.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
"=============================================================================
|
||||
" zencoding.vim
|
||||
" Author: Yasuhiro Matsumoto <mattn.jp@gmail.com>
|
||||
" Last Change: 04-Jun-2012.
|
||||
" Last Change: 07-Jun-2012.
|
||||
|
||||
let s:save_cpo = &cpo
|
||||
set cpo&vim
|
||||
@@ -520,6 +520,27 @@ function! zencoding#anchorizeURL(flag)
|
||||
call zencoding#util#setContent(block, expand)
|
||||
endfunction
|
||||
|
||||
function! zencoding#codePretty() range
|
||||
let type = input('FileType: ', '', 'filetype')
|
||||
if len(type) == 0
|
||||
return
|
||||
endif
|
||||
let block = zencoding#util#getVisualBlock()
|
||||
let content = zencoding#util#getContent(block)
|
||||
silent! 1new
|
||||
let &l:filetype = type
|
||||
call setline(1, split(content, "\n"))
|
||||
let old_lazyredraw = &lazyredraw
|
||||
set lazyredraw
|
||||
silent! TOhtml
|
||||
let &lazyredraw = old_lazyredraw
|
||||
let content = join(getline(1, '$'), "\n")
|
||||
silent! bw!
|
||||
silent! bw!
|
||||
let content = matchstr(content, '<body[^>]*>[\s\n]*\zs.*\ze</body>')
|
||||
call zencoding#util#setContent(block, content)
|
||||
endfunction
|
||||
|
||||
function! zencoding#ExpandWord(abbr, type, orig)
|
||||
let mx = '|\(\%(html\|haml\|slim\|e\|c\|fc\|xsl\|t\)\s*,\{0,1}\s*\)*$'
|
||||
let str = a:abbr
|
||||
|
||||
Reference in New Issue
Block a user