You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: resolve OR search (regex pipe operator) not working in search_code_advanced
- Fix ag search strategy to properly convert glob patterns to regex
- Pattern "*.py" now correctly converts to "\.py$" for ag's -G parameter
- Pattern "test_*.js" now correctly converts to "^test_.*\.js$"
- Ensures consistent file filtering behavior across all search tools
- Resolves issue where ag would incorrectly match files due to glob/regex mismatch
0 commit comments