- Improved escape placeholder.

This commit is contained in:
Shougo Matsushita 2012-10-17 08:27:52 +09:00
commit e17f326239
2 changed files with 2 additions and 1 deletions

View File

@ -686,7 +686,7 @@ function! s:expand_placeholder(start, end, holder_cnt, line)"{{{
\ s:get_placeholder_marker_default_pattern(),
\ '\\d\\+', a:holder_cnt, '')
let default = substitute(
\ matchstr(current_line, default_pattern), '\\\ze.', '', 'g')
\ matchstr(current_line, default_pattern), '\\\ze[^\\]', '', 'g')
" Substitute marker.
let default = substitute(default,
\ s:get_placeholder_marker_substitute_pattern(),

View File

@ -411,6 +411,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-17
- Fixed alias problem.
- Improved escape placeholder.
2012-10-15
- Improved lua snip.