From e9b3d8f00ea870625e8cc71e7133d189cbdbf75a Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Tue, 21 May 2013 14:29:00 +0900 Subject: [PATCH] - Improved s:check_initialize(). --- autoload/neosnippet.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autoload/neosnippet.vim b/autoload/neosnippet.vim index 1793c0d..37ae301 100644 --- a/autoload/neosnippet.vim +++ b/autoload/neosnippet.vim @@ -57,9 +57,7 @@ function! s:check_initialize() "{{{ if !exists('s:is_initialized') let s:is_initialized = 1 - call s:initialize_script_variables() - call s:initialize_others() - call s:initialize_cache() + call neosnippet#initialize() endif endfunction"}}}