| 229 | } |
| 230 | |
| 231 | std::wstring NppInterface::get_full_current_path() const { |
| 232 | std::vector<wchar_t> full_path(MAX_PATH); |
| 233 | send_msg_to_npp(NPPM_GETFULLCURRENTPATH, MAX_PATH, reinterpret_cast<LPARAM>(full_path.data())); |
| 234 | return full_path.data(); |
| 235 | } |
| 236 | |
| 237 | RECT NppInterface::editor_rect() const { |
| 238 | RECT out; |
no test coverage detected