Duplicate & Paste allows you to paste lines from your clipboard into a single line of code to produce x
lines of repeated content from the clipboard.
Clipboard Text:
1
2
3
Editor (where | is the caret):
console.log(|);
Running the command will yield the result:
console.log(1);
console.log(2);
console.log(3);
- Duplicate & Paste from the command palette.
- Initial creation of the extension.