I am currently exploring tabstops within snippets inside of VSCode. There is a situation where I'd like to issue a tabstop, but a default snippet is overtaking my action.
The following is the behavior that my snippet attempts to accomplish. To begin, my cursor is within the boundaries of an array [0,1,1], and I issue a tabstop to advance outside the array. However, when I do this, my data gets converted to this <div 0,1,1="">, which is not what I want.
Here is the VSCode snippet that I've created:
"prefix": "pat",
"body": [
"${1}: [$2],",
""
],
"description": "pat"
}