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
12 lines
291 B
VimL
Executable File
12 lines
291 B
VimL
Executable File
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
|
|
|