I have a console log snippet for Sublime Text 3.
{
"keys": ["alt+super+l"],
"command": "insert_snippet",
"args": {
"contents": "console.log('$1', $2)"
},
"context": [
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
]
}
I would like for there to be multiple cursors, so that, when I call the key for this snippet, the cursor is at both the $1 and the $2 locations, as I often just want to log the variable name and the variable value in the console. How do I manage this?