feat: Add multiply reading to read files tool

This commit is contained in:
Petr Mironychev
2025-10-23 15:47:10 +02:00
parent cab8718979
commit dfac209c23
5 changed files with 304 additions and 207 deletions

View File

@ -29,7 +29,7 @@
#include "FindSymbolTool.hpp"
#include "GetIssuesListTool.hpp"
#include "ListProjectFilesTool.hpp"
#include "ReadFileByPathTool.hpp"
#include "ReadFilesByPathTool.hpp"
#include "ReadVisibleFilesTool.hpp"
#include "SearchInProjectTool.hpp"
@ -44,7 +44,7 @@ ToolsFactory::ToolsFactory(QObject *parent)
void ToolsFactory::registerTools()
{
registerTool(new ReadVisibleFilesTool(this));
registerTool(new ReadProjectFileByPathTool(this));
registerTool(new ReadFilesByPathTool(this));
registerTool(new ListProjectFilesTool(this));
registerTool(new SearchInProjectTool(this));
registerTool(new GetIssuesListTool(this));