Is there a way to paste a text from clipboard aligned with cursor position:
function myFunction() {
console.log('a');
<<PASTING HERE>>
}
By default I get:
function myFunction() {
console.log('a');
console.log('b');
console.log('c');
console.log('d');
}
But I want to see the last two lines aligned with two spaces too. (OF course, I can select text and align it by tab but it's additional action)