CM6 Snippets Quesion

I use snippet to do autocomplete.

The template:

"for (let ${index} = 0; ${index} < ${end}; ${index}++) {\n\t${}\n}"

will show three cursor at the same time.

But I have some methods, which have the same default values for some parameters, like this:

Thing.create({
  name: ${1: 'thing'},
  param2: ${2: true},
  param3: ${3: true},
  param4: ${4:0},
  param5: ${5:0}
})

I can not move the cursor one by one(That’s what I want), even I set different order.
Is there any way?

This was a bug in the library. This patch should help.

Thanks :grin: :grin: :grin: