Filtering
By the end of this guide, you will:
-
TODO: Write learning objectives
⚠️ This page is a stub. Help us write it! See the Documentation Plan and Style Guide.
User Stories
Story 10: Filter Files by Name
As a terminal user
I want to filter the file list by typing a pattern
So that I can quickly find specific files
Acceptance Criteria
-
fkey opens filter input -
User types pattern (supports * and ? wildcards)
-
File list updates to show only matching items
-
Status bar shows filter pattern and match count
-
Esc clears filter
-
Filter is case-insensitive
Notes
-
Introduces text input mode
-
Introduces filtering logic
-
Introduces wildcard matching
-
Introduces mode switching (normal vs input)