Fix :NeoSnippetClearMarkers behavior
This commit is contained in:
parent
103d701267
commit
cf1211c242
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: commands.vim
|
" FILE: commands.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 01 Jan 2014.
|
" Last Modified: 20 Jan 2014.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -158,6 +158,7 @@ function! neosnippet#commands#_clear_markers() "{{{
|
|||||||
try
|
try
|
||||||
while neosnippet#view#_search_snippet_range(
|
while neosnippet#view#_search_snippet_range(
|
||||||
\ begin, end, expand_info.holder_cnt, 0)
|
\ begin, end, expand_info.holder_cnt, 0)
|
||||||
|
|
||||||
" Next count.
|
" Next count.
|
||||||
let expand_info.holder_cnt += 1
|
let expand_info.holder_cnt += 1
|
||||||
let found = 1
|
let found = 1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: view.vim
|
" FILE: view.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 25 Dec 2013.
|
" Last Modified: 20 Jan 2014.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -298,6 +298,10 @@ function! s:expand_placeholder(start, end, holder_cnt, line, ...) "{{{
|
|||||||
let default = substitute(
|
let default = substitute(
|
||||||
\ matchstr(current_line, default_pattern),
|
\ matchstr(current_line, default_pattern),
|
||||||
\ '\\\ze[^\\]', '', 'g')
|
\ '\\\ze[^\\]', '', 'g')
|
||||||
|
if !is_select && default =~ '^#:'
|
||||||
|
" Delete comments.
|
||||||
|
let default = ''
|
||||||
|
endif
|
||||||
|
|
||||||
let is_target = (default =~ '^TARGET\>' && neosnippet.target != '')
|
let is_target = (default =~ '^TARGET\>' && neosnippet.target != '')
|
||||||
let default = substitute(default, '^TARGET:\?', neosnippet.target, '')
|
let default = substitute(default, '^TARGET:\?', neosnippet.target, '')
|
||||||
|
Loading…
Reference in New Issue
Block a user