| 197 | void NppInterface::replace_selection(const char *str) { send_msg_to_scintilla(SCI_REPLACESEL, 0, reinterpret_cast<LPARAM>(str)); } |
| 198 | |
| 199 | void NppInterface::set_indicator_style(int indicator_index, int style) { |
| 200 | send_msg_to_scintilla(SCI_INDICSETSTYLE, indicator_index, style); |
| 201 | } |
| 202 | |
| 203 | void NppInterface::set_indicator_foreground(int indicator_index, int style) { |
| 204 | send_msg_to_scintilla(SCI_INDICSETFORE, indicator_index, style); |
no outgoing calls
no test coverage detected