Use runtimepath and pathogen#split to find jasmine directory and load local snippets

This commit is contained in:
Christopher H. Laco 2011-01-31 16:40:38 -05:00
parent 8e581a11c1
commit 68048232a7
1 changed files with 13 additions and 1 deletions

View File

@ -3,7 +3,19 @@ if exists("b:did_ftplugin")
endif
if !exists("g:loaded_jasmine_snippets")
call ExtractSnips("~/.vim/bundle/jasmine/snippets", "jasmine")
if exists("g:loaded_pathogen")
if !exists("g:jasmine_snippets_dir")
for dir in pathogen#split(&rtp)
if dir =~ "jasmine$" && isdirectory(dir."/snippets")
let g:jasmine_snippets_dir = dir."/snippets"
endif
endfor
endif
call ExtractSnips(g:jasmine_snippets_dir, "jasmine")
end
let g:loaded_jasmine_snippets = 1
endif