From 770ed583cfe97358c552b98e06f5538810877d7a Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 26 Jan 2018 08:59:10 +0900 Subject: [PATCH] Fix lint error --- autoload/neosnippet/parser.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autoload/neosnippet/parser.vim b/autoload/neosnippet/parser.vim index 8a5e249..0c03be8 100644 --- a/autoload/neosnippet/parser.vim +++ b/autoload/neosnippet/parser.vim @@ -14,8 +14,7 @@ function! neosnippet#parser#_parse_snippets(filename) abort endif if neosnippet#util#is_sudo() - let [snippets, sourced] = s:parse(a:filename) - return snippets + return s:parse(a:filename)[0] endif let cache_dir = neosnippet#variables#data_dir()