diff --git a/autoload/zencoding/lang.vim b/autoload/zencoding/lang.vim new file mode 100644 index 0000000..a973599 --- /dev/null +++ b/autoload/zencoding/lang.vim @@ -0,0 +1,11 @@ +let s:exists = {} +function zencoding#lang#exists(type) + if len(a:type) == 0 + return 0 + elseif has_key(s:exists, a:type) + return s:exists[a:type] + endif + let s:exists[a:type] = len(globpath(&rtp, 'autoload/zencoding/lang/'.a:type.'.vim')) > 0 + return s:exists[a:type] +endfunction +