Improve completed snippet behavior

This commit is contained in:
Shougo Matsushita 2015-08-25 20:40:08 +09:00
parent c76a668f40
commit 19dc3db526
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ function! neosnippet#handlers#_complete_done() "{{{
return
endif
if has_key(neosnippet#helpers#get_snippets(), v:completed_item.word)
let snippets = neosnippet#helpers#get_snippets()
if has_key(snippets, v:completed_item.word)
\ && !get(snippets[v:completed_item.word], 'oneshot', 0)
" Don't overwrite exists snippets
return
endif