| 736 | } |
| 737 | |
| 738 | void ZepEditor::RegisterSyntaxFactory(const std::vector<std::string>& mappings, SyntaxProvider provider) { |
| 739 | for (auto& m : mappings) { |
| 740 | m_mapSyntax[string_tolower(m)] = provider; |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | // Inform clients of an event in the buffer |
| 745 | bool ZepEditor::Broadcast(std::shared_ptr<ZepMessage> message) { |
no test coverage detected