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 },
]
}
このスニペットのキーを呼び出すときに、カーソルが $1 と $2 の両方の場所にあるように、複数のカーソルが必要です。変数名と変数値をコンソール。どうすればこれを管理できますか?