I would like to add a new line right after the line where I selected a variable name. This line should than contain the selection.
Example:
var variable = getValue();
I select the word "variable", press CMD+J to apply a live template or CMD+Alt+T to surround the selection with a live template and get something like this:
var value = getValue();
console.log('[value]', value);