Fix unused variables error

This commit is contained in:
Shougo Matsushita 2015-12-12 18:30:19 +09:00
parent 43438178b0
commit 2e188180fd
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ function! neosnippet#handlers#_complete_done() "{{{
let snippet .= '${0}'
endif
let [cur_text, col, expr] = neosnippet#mappings#_pre_trigger()
let [cur_text, col, _] = neosnippet#mappings#_pre_trigger()
call neosnippet#view#_insert(snippet, {}, cur_text, col)
endfunction"}}}