| 144 | void NppInterface::switch_to_file(const std::wstring &path) { send_msg_to_npp(NPPM_SWITCHTOFILE, 0, reinterpret_cast<LPARAM>(path.data())); } |
| 145 | |
| 146 | std::wstring NppInterface::active_file_directory() const { return get_dir_msg(NPPM_GETCURRENTDIRECTORY); } |
| 147 | |
| 148 | void NppInterface::do_command(int id) { send_msg_to_npp(WM_COMMAND, id); } |
| 149 |
nothing calls this directly
no outgoing calls
no test coverage detected