garbas / vim-snipmate

snipMate.vim aims to be a concise vim script that implements some of TextMate's snippets features in Vim.
www.vim.org/scripts/script.php?script_id=2540
2.01k stars 181 forks source link

Nested placeholders are not correctly updated in mirrors #301

Open ajzafar opened 5 months ago

ajzafar commented 5 months ago

Given a snippet like

snippet test
    ${1:foo ${2:bar}}
    $1

when $2 is edited, $1 is not updated until $1 is revisited.

Discovered when investigating #265.