| 1 | namespace CascadeIDE.Features.Search.Application; |
| 2 | |
| 3 | /// <summary>Лимиты режима палитры «перейти к…» (<c>f:/t:/m:/x:</c>).</summary> |
| 4 | public static class CommandPaletteGoToLimits |
| 5 | { |
| 6 | public const int MaxFiles = 100; |
| 7 | public const int MaxRipgrepMatches = 80; |
| 8 | public const int RipgrepDebounceMs = 220; |
| 9 | } |
| 10 |