Prepend dashes
Shared by georgec
Prepends each line of the selected text by a dash and a space.
Script
const text = editor.getSelectedText();
var lines = text.split("\n");
lines = lines.map(function(l) {
return '- '+l;
});
editor.replaceSelection(lines.join("\n"));