Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. let templateText = editor.getText().replace(/(\r\n|\n|\r)/gm, "\\n");
  2. if (templateText) {
  3. app.setClipboard(templateText);
  4. ui.hudSuccess("Copied template text to clipboard");
  5. } else {
  6. ui.hudError("Nothing to copy");
  7. }
  8. editor.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement