function! zencoding#lang#slim#findTokens(str) return zencoding#lang#html#findTokens(a:str) endfunction function! zencoding#lang#slim#parseIntoTree(abbr, type) return zencoding#lang#html#parseIntoTree(a:abbr, a:type) endfunction function! zencoding#lang#slim#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 dollar_expr = zencoding#getResource(type, 'dollar_expr', 1) let str = "" let comment_indent = '' let comment = '' let current_name = current.name if dollar_expr let current_name = substitute(current.name, '\$$', itemno+1, '') endif if len(current.name) > 0 let str .= current_name for attr in current.attrs_order if !has_key(current.attr, attr) continue endif let val = current.attr[attr] if dollar_expr while val =~ '\$\([^#{]\|$\)' let val = substitute(val, '\(\$\+\)\([^{]\|$\)', '\=printf("%0".len(submatch(1))."d", itemno+1).submatch(2)', 'g') endwhile endif let attr = substitute(attr, '\$$', itemno+1, '') let str .= ' ' . attr . '="' . val . '"' endfor let inner = '' if len(current.value) > 0 let str .= "\n" let text = current.value[1:-2] if dollar_expr let text = substitute(text, '\%(\\\)\@\ 0 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 .= "\n" . indent . inner endif else let str = current.value[1:-2] if dollar_expr let str = substitute(str, '\%(\\\)\@\ 0 let match = matchstr(attrs, mx) if len(match) == 0 break endif let attr_match = matchlist(match, mx) let name = attr_match[1] let value = len(attr_match[2]) ? attr_match[2] : attr_match[3] let current.attr[name] = value let current.attrs_order += [name] let attrs = attrs[stridx(attrs, match) + len(match):] endwhile return current endfunction function! zencoding#lang#slim#toggleComment() let line = getline('.') let space = matchstr(line, '^\s*') if line =~ '^\s*/' call setline('.', space . line[len(space)+1:]) elseif line =~ '^\s*[a-z]' call setline('.', space . '/' . line[len(space):]) endif endfunction function! zencoding#lang#slim#balanceTag(flag) range let block = zencoding#util#getVisualBlock() if a:flag == -2 || a:flag == 2 let curpos = [0, line("'<"), col("'<"), 0] else let curpos = getpos('.') endif let n = curpos[1] let ml = len(matchstr(getline(n), '^\s*')) if a:flag > 0 if a:flag == 1 || !zencoding#util#regionIsValid(block) let n = line('.') else while n > 0 let l = len(matchstr(getline(n), '^\s*\ze[a-z]')) if l > 0 && l < ml let ml = l break endif let n -= 1 endwhile endif let sn = n if n == 0 let ml = 0 endif while n < line('$') let l = len(matchstr(getline(n), '^\s*[a-z]')) if l > 0 && l <= ml let n -= 1 break endif let n += 1 endwhile call setpos('.', [0, n, 1, 0]) normal! V call setpos('.', [0, sn, 1, 0]) else while n > 0 let l = len(matchstr(getline(n), '^\s*\ze[a-z]')) if l > 0 && l > ml let ml = l break endif let n += 1 endwhile let sn = n if n == 0 let ml = 0 endif while n < line('$') let l = len(matchstr(getline(n), '^\s*[a-z]')) if l > 0 && l <= ml let n -= 1 break endif let n += 1 endwhile call setpos('.', [0, n, 1, 0]) normal! V call setpos('.', [0, sn, 1, 0]) endif endfunction function! zencoding#lang#slim#moveNextPrev(flag) let pos = search('""\|\(^\s*|\s*\zs\)', a:flag ? 'Wpb' : 'Wp') if pos == 2 startinsert! elseif pos != 0 silent! normal! l startinsert endif endfunction function! zencoding#lang#slim#splitJoinTag() let n = line('.') while n > 0 if getline(n) =~ '^\s*\ze[a-z]' let sn = n let n += 1 if getline(n) =~ '^\s*|' while n <= line('$') if getline(n) !~ '^\s*|' break endif exe n "delete" endwhile call setpos('.', [0, sn, 1, 0]) else let spaces = matchstr(getline(sn), '^\s*') call append(sn, spaces . ' | ') call setpos('.', [0, sn+1, 1, 0]) startinsert! endif break endif let n -= 1 endwhile endfunction function! zencoding#lang#slim#removeTag() let n = line('.') let ml = 0 while n > 0 if getline(n) =~ '^\s*\ze[a-z]' let ml = len(matchstr(getline(n), '^\s*[a-z]')) break endif let n -= 1 endwhile let sn = n while n < line('$') let l = len(matchstr(getline(n), '^\s*[a-z]')) if l > 0 && l <= ml let n -= 1 break endif let n += 1 endwhile if sn == n exe "delete" else exe sn "," (n-1) "delete" endif endfunction