mv zencoding/xxx.vim to zencoding/lang/xxx.vim

This commit is contained in:
mattn
2012-05-30 19:02:10 +09:00
parent b18d8ce9ab
commit 98f716c4d1
5 changed files with 43 additions and 37 deletions

View File

@@ -1,8 +1,8 @@
function! zencoding#css#findTokens(str)
function! zencoding#lang#css#findTokens(str)
return substitute(a:str, '^.*[;{]\s*', '', '')
endfunction
function! zencoding#css#parseIntoTree(abbr, type)
function! zencoding#lang#css#parseIntoTree(abbr, type)
let abbr = a:abbr
let type = a:type
@@ -49,6 +49,6 @@ function! zencoding#css#parseIntoTree(abbr, type)
return root
endfunction
function! zencoding#css#toString(settings, current, type, inline, filters, itemno, indent)
function! zencoding#lang#css#toString(settings, current, type, inline, filters, itemno, indent)
return ''
endfunction

View File

@@ -1,12 +1,12 @@
function! zencoding#haml#findTokens(str)
function! zencoding#lang#haml#findTokens(str)
return zencoding#html#findTokens(a:str)
endfunction
function! zencoding#haml#parseIntoTree(abbr, type)
return zencoding#html#parseIntoTree(a:abbr, a:type)
function! zencoding#lang#haml#parseIntoTree(abbr, type)
return zencoding#lang#html#parseIntoTree(a:abbr, a:type)
endfunction
function! zencoding#haml#toString(settings, current, type, inline, filters, itemno, indent)
function! zencoding#lang#haml#toString(settings, current, type, inline, filters, itemno, indent)
let settings = a:settings
let current = a:current
let type = a:type

View File

@@ -5,7 +5,7 @@ let s:mx = '\([+>]\|<\+\)\{-}\s*\((*\)\{-}\s*\([@#.]\{-}[a-zA-Z\!][a-zA-Z0-9:_\!
\ .'\%(\.{[{}a-zA-Z0-9_\-\$]\+\|'
\ .'\.[a-zA-Z0-9_\-\$]\+\)\)*\)\%(\({[^}]\+}\+\)\)\{0,1}\%(\*\([0-9]\+\)\)\{0,1}\(\%()\%(\*[0-9]\+\)\{0,1}\)*\)'
function! zencoding#html#findTokens(str)
function! zencoding#lang#html#findTokens(str)
let str = a:str
let [pos, last_pos] = [0, 0]
while len(str) > 0
@@ -22,7 +22,7 @@ function! zencoding#html#findTokens(str)
return a:str[last_pos :-1]
endfunction
function! zencoding#html#parseIntoTree(abbr, type)
function! zencoding#lang#html#parseIntoTree(abbr, type)
let abbr = a:abbr
let type = a:type
@@ -271,7 +271,7 @@ function! zencoding#html#parseIntoTree(abbr, type)
return root
endfunction
function! zencoding#html#toString(settings, current, type, inline, filters, itemno, indent)
function! zencoding#lang#html#toString(settings, current, type, inline, filters, itemno, indent)
let settings = a:settings
let current = a:current
let type = a:type
@@ -282,10 +282,10 @@ function! zencoding#html#toString(settings, current, type, inline, filters, item
let str = ""
if zencoding#useFilter(filters, 'haml')
return zencoding#haml#toString(settings, current, type, inline, filters, itemno, indent)
return zencoding#lang#haml#toString(settings, current, type, inline, filters, itemno, indent)
endif
if zencoding#useFilter(filters, 'slim')
return zencoding#slim#toString(settings, current, type, inline, filters, itemno, indent)
return zencoding#lang#slim#toString(settings, current, type, inline, filters, itemno, indent)
endif
let comment_indent = ''

View File

@@ -1,12 +1,12 @@
function! zencoding#slim#findTokens(str)
return zencoding#html#findTokens(a:str)
function! zencoding#lang#slim#findTokens(str)
return zencoding#lang#html#findTokens(a:str)
endfunction
function! zencoding#slim#parseIntoTree(abbr, type)
return zencoding#html#parseIntoTree(a:abbr, a:type)
function! zencoding#lang#slim#parseIntoTree(abbr, type)
return zencoding#lang#html#parseIntoTree(a:abbr, a:type)
endfunction
function! zencoding#slim#toString(settings, current, type, inline, filters, itemno, indent)
function! zencoding#lang#slim#toString(settings, current, type, inline, filters, itemno, indent)
let settings = a:settings
let current = a:current
let type = a:type