| 319 | std::wstring NppInterface::plugin_config_dir() const { return get_dir_msg(NPPM_GETPLUGINSCONFIGDIR); } |
| 320 | |
| 321 | TextPosition NppInterface::get_line_start_position(TextPosition line) const { |
| 322 | return static_cast<int>(send_msg_to_scintilla(SCI_POSITIONFROMLINE, line)); |
| 323 | } |
| 324 | |
| 325 | TextPosition NppInterface::get_line_end_position(TextPosition line) const { |
| 326 | return static_cast<int>(send_msg_to_scintilla(SCI_GETLINEENDPOSITION, line)); |