Fix error

This commit is contained in:
Shougo Matsushita 2014-01-11 16:35:29 +09:00
parent 5dba6a034e
commit 6b3a670b5a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ function! s:initialize_script_variables() "{{{
" Set runtime dir.
let runtime_dir = neosnippet#variables#runtime_dir()
let runtime_dir += split(globpath(&runtimepath, 'neosnippets'), '\n')
if empty(runtime_dir) && !g:neosnippet#disable_runtime_snippets
if empty(runtime_dir) && empty(g:neosnippet#disable_runtime_snippets)
call neosnippet#util#print_error(
\ 'neosnippet default snippets cannot be loaded.')
call neosnippet#util#print_error(