assistant_tools: Rename `RegexSearchTool` module to match the others (#27001)

Marshall Bowers created

This PR renames the `RegexSearchTool` module to `regex_search_tool.rs`
to match the other tools.

Release Notes:

- N/A

Change summary

crates/assistant_tools/src/assistant_tools.rs   | 4 ++--
crates/assistant_tools/src/regex_search_tool.rs | 0 
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/assistant_tools/src/assistant_tools.rs 🔗

@@ -6,7 +6,7 @@ mod list_directory_tool;
 mod now_tool;
 mod path_search_tool;
 mod read_file_tool;
-mod regex_search;
+mod regex_search_tool;
 mod thinking_tool;
 
 use assistant_tool::ToolRegistry;
@@ -20,7 +20,7 @@ use crate::list_directory_tool::ListDirectoryTool;
 use crate::now_tool::NowTool;
 use crate::path_search_tool::PathSearchTool;
 use crate::read_file_tool::ReadFileTool;
-use crate::regex_search::RegexSearchTool;
+use crate::regex_search_tool::RegexSearchTool;
 use crate::thinking_tool::ThinkingTool;
 
 pub fn init(cx: &mut App) {