diff --git a/editor/find_in_files.cpp b/editor/find_in_files.cpp index 606f210ce3b..22d4cf04504 100644 --- a/editor/find_in_files.cpp +++ b/editor/find_in_files.cpp @@ -233,6 +233,11 @@ void FindInFiles::_scan_dir(String path, PoolStringArray &out_folders) { break; } + // If there is a .gdignore file in the directory, don't bother searching it + if (file == ".gdignore") { + break; + } + // Ignore special dirs (such as .git and .import) if (file == "." || file == ".." || file.begins_with(".")) { continue;