feat: Add searching tool

This commit is contained in:
Petr Mironychev
2025-10-12 04:25:56 +02:00
parent fb5903e44f
commit 5ae6f9e3bf
4 changed files with 382 additions and 0 deletions

View File

@ -27,6 +27,7 @@
#include "ListProjectFilesTool.hpp"
#include "ReadProjectFileByNameTool.hpp"
#include "ReadVisibleFilesTool.hpp"
#include "SearchInProjectTool.hpp"
namespace QodeAssist::Tools {
@ -41,6 +42,7 @@ void ToolsFactory::registerTools()
registerTool(new ReadVisibleFilesTool(this));
registerTool(new ReadProjectFileByNameTool(this));
registerTool(new ListProjectFilesTool(this));
registerTool(new SearchInProjectTool(this));
LOG_MESSAGE(QString("Registered %1 tools").arg(m_tools.size()));
}