diff --git a/src/components/chat-view/ChatView.tsx b/src/components/chat-view/ChatView.tsx index e6422d2..610e330 100644 --- a/src/components/chat-view/ChatView.tsx +++ b/src/components/chat-view/ChatView.tsx @@ -29,10 +29,10 @@ import { LLMBaseUrlNotSetException, LLMModelNotSetException, } from '../../core/llm/exception' -import { matchSearchUsingCorePlugin } from '../../core/search/match/coreplugin-match' -import { matchSearchUsingOmnisearch } from '../../core/search/match/omnisearch-match' -import { regexSearchUsingRipgrep } from '../../core/search/regex/ripgrep-regex' -import { regexSearchUsingCorePlugin } from '../../core/search/regex/coreplugin-regex' +import { matchSearchUsingCorePlugin } from '../../core/file-search/match/coreplugin-match' +import { matchSearchUsingOmnisearch } from '../../core/file-search/match/omnisearch-match' +import { regexSearchUsingRipgrep } from '../../core/file-search/regex/ripgrep-regex' +import { regexSearchUsingCorePlugin } from '../../core/file-search/regex/coreplugin-regex' import { useChatHistory } from '../../hooks/use-chat-history' import { useCustomModes } from '../../hooks/use-custom-mode' import { t } from '../../lang/helpers' diff --git a/src/core/search/match/coreplugin-match.ts b/src/core/file-search/match/coreplugin-match.ts similarity index 100% rename from src/core/search/match/coreplugin-match.ts rename to src/core/file-search/match/coreplugin-match.ts diff --git a/src/core/search/match/omnisearch-match.ts b/src/core/file-search/match/omnisearch-match.ts similarity index 100% rename from src/core/search/match/omnisearch-match.ts rename to src/core/file-search/match/omnisearch-match.ts diff --git a/src/core/search/regex/coreplugin-regex.ts b/src/core/file-search/regex/coreplugin-regex.ts similarity index 100% rename from src/core/search/regex/coreplugin-regex.ts rename to src/core/file-search/regex/coreplugin-regex.ts diff --git a/src/core/search/regex/ripgrep-regex.ts b/src/core/file-search/regex/ripgrep-regex.ts similarity index 100% rename from src/core/search/regex/ripgrep-regex.ts rename to src/core/file-search/regex/ripgrep-regex.ts diff --git a/src/core/search/search-common.ts b/src/core/file-search/search-common.ts similarity index 100% rename from src/core/search/search-common.ts rename to src/core/file-search/search-common.ts