diff --git a/autoload/neosnippet.vim b/autoload/neosnippet.vim index b2d774e..71ab447 100644 --- a/autoload/neosnippet.vim +++ b/autoload/neosnippet.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: neosnippet.vim " AUTHOR: Shougo Matsushita -" Last Modified: 26 Sep 2013. +" Last Modified: 28 Oct 2013. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -46,6 +46,8 @@ let s:neosnippet_options = [ "}}} function! neosnippet#initialize() "{{{ + let s:is_initialized = 1 + call s:initialize_script_variables() call s:initialize_others() call s:initialize_cache() @@ -53,8 +55,6 @@ endfunction"}}} function! s:check_initialize() "{{{ if !exists('s:is_initialized') - let s:is_initialized = 1 - call neosnippet#initialize() endif endfunction"}}}