đ Home
{% if current_path and current_path.strip() %}
{% set path_parts = current_path.strip('/').split('/') %}
{% for i, part in enumerate(path_parts) %}
{% set partial_path = '/files/' + '/'.join(path_parts[:i+1]) %} /
{{ part }}
{% end %}
{% end %}
/ đ Super Search
Wildcard patterns:
âĸ * - matches any characters (except /)
âĸ ** - matches any characters including subdirectories
âĸ ? - matches single character
âĸ [abc] - matches any character in brackets
âĸ [a-z] - matches character range Examples:*.py, **/*.js, test_*.txt, *.{py,js,html}
Search for text within file contents
Case-sensitive text search within matching files
Common Patterns:
Ready to super search. Enter a file pattern and search text above.