| 193 | } |
| 194 | |
| 195 | void NppInterface::set_selection(TextPosition from, TextPosition to) { post_msg_to_scintilla(SCI_SETSEL, from, to); } |
| 196 | |
| 197 | void NppInterface::replace_selection(const char *str) { send_msg_to_scintilla(SCI_REPLACESEL, 0, reinterpret_cast<LPARAM>(str)); } |
| 198 |
no outgoing calls
no test coverage detected