| 551 | }; |
| 552 | |
| 553 | static void copy_lines(agi::Context *c) { |
| 554 | SetClipboard(join(c->selectionController->GetSortedSelection() |
| 555 | | transformed(static_cast<std::string(*)(AssDialogue*)>([](AssDialogue *d) { return d->GetEntryData(); })), |
| 556 | "\r\n")); |
| 557 | } |
| 558 | |
| 559 | static void delete_lines(agi::Context *c, wxString const& commit_message) { |
| 560 | auto const& sel = c->selectionController->GetSelectedSet(); |
no test coverage detected