Prevent folding of expanded snippet
This commit is contained in:
parent
f46f36837e
commit
e25014e008
@ -549,6 +549,11 @@ function! neosnippet#expand(cur_text, col, trigger_name)"{{{
|
|||||||
\ '<|\1|>', 'g')
|
\ '<|\1|>', 'g')
|
||||||
|
|
||||||
" Insert snippets.
|
" Insert snippets.
|
||||||
|
if has('folding')
|
||||||
|
let foldmethod = &l:foldmethod
|
||||||
|
let &l:foldmethod = 'manual'
|
||||||
|
endif
|
||||||
|
|
||||||
let next_line = getline('.')[a:col-1 :]
|
let next_line = getline('.')[a:col-1 :]
|
||||||
let snippet_lines = split(snip_word, '\n', 1)
|
let snippet_lines = split(snip_word, '\n', 1)
|
||||||
if empty(snippet_lines)
|
if empty(snippet_lines)
|
||||||
@ -581,16 +586,17 @@ function! neosnippet#expand(cur_text, col, trigger_name)"{{{
|
|||||||
\ 'holder_cnt' : 1,
|
\ 'holder_cnt' : 1,
|
||||||
\ })
|
\ })
|
||||||
|
|
||||||
if has('folding') && foldclosed(line('.'))
|
|
||||||
" Open fold.
|
|
||||||
silent! normal! zO
|
|
||||||
endif
|
|
||||||
if next_col < col('$')
|
if next_col < col('$')
|
||||||
startinsert
|
startinsert
|
||||||
else
|
else
|
||||||
startinsert!
|
startinsert!
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if has('folding')
|
||||||
|
let &l:foldmethod = foldmethod
|
||||||
|
silent execute begin_line . ',' . end_line . 'foldopen!'
|
||||||
|
endif
|
||||||
|
|
||||||
if snip_word =~ s:get_placeholder_marker_pattern()
|
if snip_word =~ s:get_placeholder_marker_pattern()
|
||||||
call s:snippets_jump(a:cur_text, a:col)
|
call s:snippets_jump(a:cur_text, a:col)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user