| 380 | } |
| 381 | |
| 382 | std::wstring MockEditorInterface::active_file_directory() const { |
| 383 | auto doc = active_document(); |
| 384 | if (!doc) |
| 385 | return L""; |
| 386 | return std::filesystem::path(doc->path).parent_path(); |
| 387 | } |
| 388 | |
| 389 | std::wstring MockEditorInterface::plugin_config_dir() const { return L""; } |
| 390 |
nothing calls this directly
no outgoing calls
no test coverage detected