Fix #382 escape problem

Este commit está contenido en:
Shougo Matsushita 2017-04-18 08:26:27 +09:00
padre affc71bd9f
commit 1a6653b69d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -67,7 +67,7 @@ function! neosnippet#view#_insert(snippet, options, cur_text, col) abort "{{{
\ '<|\1|>', 'g')
" Substitute escaped characters.
let snip_word = substitute(snip_word, '\\\\', '\\', 'g')
let snip_word = substitute(snip_word, '\\\(\\\|`\)', '\1', 'g')
" Insert snippets.
let next_line = getline('.')[a:col-1 :]