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
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ Even as a learning project, it already has some pretty handy features:
24
24
***Dig Deeper**: Use `-r` to recurse into subdirectories, or `-L` to cap the depth.
25
25
***Filters**: Quickly isolate just directories (`-d`) or just files (`-D`).
26
26
***Extension Filter**: Hide extensions you don't want to see with `-e` / `--ext` (for example: `--ext zig,md,ts`).
27
+
***Name Match Filter**: Only show entries whose names contain specific text with `-m` / `--match` (for example: `--match test`).
27
28
***Summary Report**: Use `-R` to see a quick count of files and folders after listing.
28
29
***Git Integration**: Use `-g` with `-l` to show Git status indicators in detailed view (`M` modified, `A` added, `D` deleted, `R` renamed, `?` untracked). Note: this only works in detailed mode (`-l`), not in grid mode.
29
30
@@ -77,7 +78,8 @@ zl [OPTIONS] [PATH]
77
78
|`-p`, `--pure`| Clean output without colors or icons (useful for pipes). |
78
79
|`-d`, `--dir`| Only show directories. |
79
80
|`-D`, `--no_dir`| Only show files (hide directories). |
80
-
|`-e`, `--ext <str>...`| Hide files by extension. Comma-separated is supported, e.g. `--ext zig,go,ts`. |
81
+
|`-e`, `--ext <str>...`| Hide files by extension, e.g. `--ext zig,go,ts`. |
82
+
|`-m`, `--match <str>...`| Only show names that contain the given text, e.g. `--match test`. |
81
83
|`-R`, `--report`| Show a brief summary of file and folder counts. |
82
84
|`-g`, `--git`| Show Git status indicators (requires `-l` to work). |
0 commit comments