- Fixed substitute marker.

This commit is contained in:
Shougo Matsushita 2012-10-06 17:16:56 +09:00
parent 88821a7d9b
commit 365357b741
2 changed files with 2 additions and 1 deletions

View File

@ -657,7 +657,7 @@ function! s:search_outof_range(col)"{{{
let pattern = s:get_placeholder_marker_pattern()
if search(pattern, 'w') > 0
call s:expand_placeholder(line('.'), 0, '\d\+', line('.'))
call s:expand_placeholder(line('.'), 0, '\\d\\+', line('.'))
return 1
endif

View File

@ -409,6 +409,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-06
- Improved indent snippet behavior.
- Fixed substitute marker.
2012-10-04
- Refactored snippets filter.