mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00

Added update_plugins.py which can fetch new plugins from GitHub. New plugins added: zencoding, vim-indent-object, taglist, nginx.vim
122 lines
3.3 KiB
VimL
Executable File
122 lines
3.3 KiB
VimL
Executable File
function! zencoding#lang#scss#findTokens(str)
|
|
return zencoding#lang#html#findTokens(a:str)
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#parseIntoTree(abbr, type)
|
|
if a:abbr =~ '>'
|
|
return zencoding#lang#html#parseIntoTree(a:abbr, a:type)
|
|
else
|
|
return zencoding#lang#css#parseIntoTree(a:abbr, a:type)
|
|
endif
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#toString(settings, current, type, inline, filters, itemno, indent)
|
|
let settings = a:settings
|
|
let current = a:current
|
|
let type = a:type
|
|
let inline = a:inline
|
|
let filters = a:filters
|
|
let itemno = a:itemno
|
|
let indent = a:indent
|
|
let str = ""
|
|
|
|
let current_name = substitute(current.name, '\$$', itemno+1, '')
|
|
if len(current.name) > 0
|
|
let str .= current_name
|
|
let tmp = ''
|
|
for attr in keys(current.attr)
|
|
let val = current.attr[attr]
|
|
while val =~ '\$\([^#{]\|$\)'
|
|
let val = substitute(val, '\(\$\+\)\([^{]\|$\)', '\=printf("%0".len(submatch(1))."d", itemno+1).submatch(2)', 'g')
|
|
endwhile
|
|
let attr = substitute(attr, '\$$', itemno+1, '')
|
|
if attr == 'id'
|
|
let str .= '#' . val
|
|
elseif attr == 'class'
|
|
let str .= '.' . val
|
|
else
|
|
let tmp .= attr . ': ' . val . ';'
|
|
endif
|
|
endfor
|
|
if len(tmp) > 0
|
|
let str .= " {\n"
|
|
for line in split(tmp, "\n")
|
|
let str .= indent . line . "\n"
|
|
endfor
|
|
else
|
|
let str .= " {\n"
|
|
endif
|
|
|
|
let inner = ''
|
|
for child in current.child
|
|
let inner .= zencoding#toString(child, type, inline, filters, itemno)
|
|
endfor
|
|
let inner = substitute(inner, "\n", "\n" . escape(indent, '\'), 'g')
|
|
let inner = substitute(inner, "\n" . escape(indent, '\') . "$", "", 'g')
|
|
let str .= indent . inner . "\n}\n"
|
|
else
|
|
return zencoding#lang#css#toString(settings, current, type, inline, filters, itemno, indent)
|
|
endif
|
|
return str
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#imageSize()
|
|
call zencoding#lang#css#imageSize()
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#encodeImage()
|
|
return zencoding#lang#css#encodeImage()
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#parseTag(tag)
|
|
return zencoding#lang#css#parseTag(a:tag)
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#toggleComment()
|
|
call zencoding#lang#css#toggleComment()
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#balanceTag(flag) range
|
|
if a:flag == -2 || a:flag == 2
|
|
let curpos = [0, line("'<"), col("'<"), 0]
|
|
call setpos('.', curpos)
|
|
else
|
|
let curpos = getpos('.')
|
|
endif
|
|
if a:flag < 0
|
|
let ret = searchpair('}', '', '.\zs{')
|
|
else
|
|
let ret = searchpair('{', '', '}', 'bW')
|
|
endif
|
|
if ret > 0
|
|
let pos1 = getpos('.')[1:2]
|
|
if a:flag < 0
|
|
let pos2 = searchpairpos('{', '', '}')
|
|
else
|
|
let pos2 = searchpairpos('{', '', '}')
|
|
endif
|
|
let block = [pos1, pos2]
|
|
if zencoding#util#regionIsValid(block)
|
|
call zencoding#util#selectRegion(block)
|
|
return
|
|
endif
|
|
endif
|
|
if a:flag == -2 || a:flag == 2
|
|
silent! exe "normal! gv"
|
|
else
|
|
call setpos('.', curpos)
|
|
endif
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#moveNextPrev(flag)
|
|
call zencoding#lang#css#moveNextPrev(a:flag)
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#splitJoinTag()
|
|
call zencoding#lang#css#splitJoinTag()
|
|
endfunction
|
|
|
|
function! zencoding#lang#scss#removeTag()
|
|
call zencoding#lang#ss#removeTag()
|
|
endfunction
|