- Deleted neocomplcache#util functions.

This commit is contained in:
Shougo Matsushita
2012-09-30 17:09:49 +09:00
parent c07fdec557
commit 4fe36ca340
3 changed files with 11 additions and 3 deletions

View File

@@ -54,6 +54,13 @@ function! neosnippet#util#iconv(...)"{{{
return call(s:V.iconv, a:000)
endfunction"}}}
function! neosnippet#util#expand(path)"{{{
return s:V.substitute_path_separator(
\ (a:path =~ '^\~') ? substitute(a:path, '^\~', expand('~'), '') :
\ (a:path =~ '^\$\h\w*') ? substitute(a:path,
\ '^\$\h\w*', '\=eval(submatch(0))', '') :
\ a:path)
endfunction"}}}
function! neosnippet#util#set_dictionary_helper(...)"{{{
return call(s:V.set_dictionary_helper, a:000)
endfunction"}}}