From 3378bf8652762ea30f4365db470c7f678ef9a5c0 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Sun, 30 Sep 2012 15:19:06 -0700 Subject: [PATCH] bugfix: neosnippet#caching_snippets doesn't exist. --- plugin/neosnippet.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/neosnippet.vim b/plugin/neosnippet.vim index fe465be..c7f557a 100644 --- a/plugin/neosnippet.vim +++ b/plugin/neosnippet.vim @@ -84,7 +84,7 @@ augroup neosnippet"{{{ autocmd FileType * call neosnippet#caching() " Recaching events autocmd BufWritePost *.snip,*.snippets - \ call neosnippet#caching_snippets(expand(':t:r')) + \ call neosnippet#make_cache(expand(':t:r')) augroup END"}}} " Commands."{{{