Merge pull request #197 from LeafCage/fix_folding_marker_snip

fix: folding markerが含まれるsnippetで他の窓のfoldingが閉じられる問題
This commit is contained in:
Shougo 2013-12-12 01:52:16 -08:00
commit 370f7cdae5
1 changed files with 1 additions and 1 deletions

View File

@ -93,10 +93,10 @@ function! neosnippet#view#_expand(cur_text, col, trigger_name) "{{{
let expand_stack = neosnippet#variables#expand_stack()
try
call setline('.', snippet_lines[0])
if len(snippet_lines) > 1
call append('.', snippet_lines[1:])
endif
call setline('.', snippet_lines[0])
if begin_line != end_line || snippet.options.indent
call s:indent_snippet(begin_line, end_line)