| 352 | int NppInterface::get_style_at(TextPosition position) const { return static_cast<int>(send_msg_to_scintilla(SCI_GETSTYLEAT, position)); } |
| 353 | |
| 354 | TextPosition NppInterface::get_active_document_length() const { return send_msg_to_scintilla(SCI_GETLENGTH); } |
| 355 | |
| 356 | std::string NppInterface::get_text_range(TextPosition from, TextPosition to) const { |
| 357 | if (from > to) { |
no outgoing calls
no test coverage detected