From 9df3ad16cbbd4e687f9677f770ccb66a16a2aa4a Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Mon, 28 Oct 2013 13:47:23 +0900 Subject: [PATCH] - Fixed #187 initialization. --- autoload/neosnippet.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"}}}