Allow backslashes in placeholder defaults

I managed to put a backslash in a placeholder default, by escaping it like \\, and then changing this pattern.

I've no idea how safe it is, the placeholder in a placeholders still seem to work, but I don't know if it will have messed anything else up.
This commit is contained in:
Dave Marshall 2012-10-16 16:04:04 +02:00
parent 04dd784a5b
commit b6f4c54716
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,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(),