lx-ls 0.8.0

The file lister with personality! 🌟
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
use clap::{Arg, ArgAction, Command};
use clap::builder::PossibleValue;
use clap::builder::styling;

use super::flags;


/// Clap styling: yellow headers, cyan literals, green placeholders, red errors.
const STYLES: styling::Styles = styling::Styles::styled()
    .header(styling::AnsiColor::Yellow.on_default().bold())
    .usage(styling::AnsiColor::Yellow.on_default().bold())
    .literal(styling::AnsiColor::Cyan.on_default().bold())
    .placeholder(styling::AnsiColor::Green.on_default())
    .error(styling::AnsiColor::Red.on_default().bold());

/// Choose help styles based on environment: respect `NO_COLOR` and
/// check whether stderr is a terminal (help is written to stderr).
fn help_styles() -> styling::Styles {
    if std::env::var_os("NO_COLOR").is_some() {
        return styling::Styles::plain();
    }
    if !std::io::IsTerminal::is_terminal(&std::io::stderr()) {
        return styling::Styles::plain();
    }
    STYLES
}


/// Return valid values for the `--sort` flag.
///
/// Generated from the sort registry (`src/fs/sort_registry.rs`) so
/// adding a new sort field doesn't require touching this file.
/// Canonical names are visible in `--help`; aliases are hidden.
///
/// `version` is a special case: it's an alias for `name` that isn't
/// a distinct registry entry, so we append it explicitly.
fn sort_values() -> Vec<PossibleValue> {
    use crate::fs::sort_registry::SortFieldDef;

    let mut values: Vec<PossibleValue> = SortFieldDef::visible_canonical_names()
        .map(PossibleValue::new)
        .collect();

    // `version` alias — not a distinct registry entry.
    values.push(PossibleValue::new("version"));

    // Hidden aliases and hidden-canonical entries from the registry.
    values.extend(
        SortFieldDef::all_hidden_names().map(|n| PossibleValue::new(n).hide(true))
    );

    values
}


/// A wrapper around clap's `ArgMatches` that provides convenience
/// methods matching those expected by the deduce functions.
pub struct MatchedFlags {
    matches: clap::ArgMatches,
}

impl MatchedFlags {
    pub fn new(matches: clap::ArgMatches) -> Self {
        Self { matches }
    }

    /// Whether the given flag was present at all.
    pub fn has(&self, flag: &str) -> bool {
        // Try bool first (SetTrue), then u8 (Count).
        if self.matches.try_get_one::<bool>(flag).ok().flatten().copied().unwrap_or(false) {
            return true;
        }
        self.matches.try_get_one::<u8>(flag).ok().flatten().copied().unwrap_or(0) > 0
    }

    /// How many times a counted flag was passed.
    pub fn count(&self, flag: &str) -> u8 {
        self.matches.get_count(flag)
    }

    /// Get the string value of a flag, if present.
    pub fn get(&self, flag: &str) -> Option<&str> {
        self.matches.get_one::<String>(flag).map(std::string::String::as_str)
    }

    /// Get a usize value of a flag, if present.
    pub fn get_usize(&self, flag: &str) -> Option<usize> {
        self.matches.get_one::<usize>(flag).copied()
    }

    /// Whether the given flag was present at all (including default values).
    pub fn is_present(&self, flag: &str) -> bool {
        self.matches.contains_id(flag) && self.matches.value_source(flag) == Some(clap::parser::ValueSource::CommandLine)
    }
}


/// Build the Clap `Command` that defines all lx flags.
pub fn build_command() -> Command {
    Command::new("lx")
        .version(env!("CARGO_PKG_VERSION"))
        .about(env!("CARGO_PKG_DESCRIPTION"))
        .styles(help_styles())
        .max_term_width(80)
        .disable_help_flag(true)
        .disable_version_flag(true)
        .args_override_self(true)
        .help_template("{name} {version}\n{about-section}\n\
                        {usage-heading}\n{tab}{usage}\n\n\
                        {all-args}{after-help}")
        .after_help("\
Column overrides:\n  \
  Every Long view column flag has a matching --no-FLAG suppressor,\n  \
  e.g. --inode pairs with --no-inode, -M pairs with --no-M\n\
\n\
Environment:\n  \
  NO_COLOR        Disable all colour output (no-color.org)\n  \
  LX_CONFIG       Explicit path to config file\n  \
  LS_COLORS       File-type colour scheme\n  \
  TIME_STYLE      Default timestamp style")

        // ── Display mode ──────────────────────────────────────────

        .arg(Arg::new(flags::ONE_LINE)
            .short('1').long("oneline")
            .help("Display one entry per line")
            .help_heading("Display")
            .action(ArgAction::Count)
            .overrides_with_all([flags::LONG, flags::GRID]))
        .arg(Arg::new(flags::LONG)
            .short('l').long("long")
            .help("Long view — repeat for more detail: -ll, -lll")
            .help_heading("Display")
            .action(ArgAction::Count)
            .overrides_with(flags::ONE_LINE))
        .arg(Arg::new(flags::GRID)
            .short('G').long("grid")
            .help("Display entries as a grid (default)")
            .help_heading("Display")
            .action(ArgAction::Count)
            .overrides_with(flags::ONE_LINE))
        .arg(Arg::new(flags::ACROSS)
            .short('x').long("across")
            .help("Sort the grid across, rather than downwards")
            .help_heading("Display")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::RECURSE)
            .short('R').long("recurse")
            .help("Recurse into directories")
            .help_heading("Display")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::TREE)
            .short('T').long("tree")
            .help("Recurse into directories as a tree")
            .help_heading("Display")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::LEVEL)
            .short('L').long("level")
            .help("Limit the depth of recursion")
            .help_heading("Display")
            .action(ArgAction::Set)
            .value_name("DEPTH")
            .value_parser(clap::value_parser!(usize)))
        .arg(Arg::new(flags::CLASSIFY)
            .long("classify")
            .help("Display file kind indicators [always, auto, never]")
            .help_heading("Display")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("always"),
                PossibleValue::new("auto"),
                PossibleValue::new("never"),
            ])
            .num_args(0..=1)
            .require_equals(true)
            .default_missing_value("auto"))
        .arg(Arg::new(flags::COUNT)
            .short('C').long("count")
            .help("Print item count to stderr (-CZ includes total size)")
            .help_heading("Display")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_COUNT))

        // ── Long view columns ─────────────────────────────────────

        // Display modifiers
        .arg(Arg::new(flags::HEADER)
            .short('h').long("header")
            .help("Add a header row")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_HEADER))

        // Column-add flags — canonical column order, modifiers after enabler flags
        .arg(Arg::new(flags::INODE)
            .short('i').long("inode")
            .help("Show inode numbers")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::OCTAL)
            .short('o').long("octal")
            .alias("octal-permissions")
            .help("Show permissions in octal format\n[aliases: --octal-permissions]")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_OCTAL))
        .arg(Arg::new(flags::SHOW_PERMISSIONS)
            .short('M').long("permissions").visible_alias("mode")
            .help("Show the permissions column")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_PERMISSIONS))
        .arg(Arg::new(flags::FILE_FLAGS)
            .short('O').long("flags")
            .help("Show file flags (macOS/BSD chflags)")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::LINKS)
            .short('H').long("links")
            .help("Show hard link counts")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::SHOW_FILESIZE)
            .short('z').long("filesize").visible_alias("size")
            .help("Show the file size column")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_FILESIZE))
        .arg(Arg::new(flags::SIZE_STYLE)
            .long("size-style")
            .help("How to display file sizes\n[decimal (default), binary, bytes]")
            .help_heading("Long view")
            .action(ArgAction::Set)
            .value_name("STYLE")
            .value_parser(["decimal", "binary", "bytes"])
            .hide_possible_values(true)
            .overrides_with_all([flags::BINARY, flags::BYTES, flags::DECIMAL]))
        .arg(Arg::new(flags::DECIMAL)
            .short('K').long("decimal")
            .help("Decimal size prefixes (k, M, G)\n[short for --size-style=decimal]")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with_all([flags::BINARY, flags::BYTES, flags::SIZE_STYLE]))
        .arg(Arg::new(flags::BINARY)
            .short('B').long("binary")
            .help("Binary size prefixes (KiB, MiB)\n[short for --size-style=binary]")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with_all([flags::BYTES, flags::DECIMAL, flags::SIZE_STYLE]))
        .arg(Arg::new(flags::BYTES)
            .short('b').long("bytes")
            .help("Raw byte counts [short for --size-style=bytes]")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with_all([flags::BINARY, flags::DECIMAL, flags::SIZE_STYLE]))
        .arg(Arg::new(flags::TOTAL_SIZE)
            .short('Z').long("total-size")
            .help("Show directory content sizes (recursive)")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_TOTAL_SIZE))
        .arg(Arg::new(flags::BLOCKS)
            .short('S').long("blocks")
            .help("Show file system block counts")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::SHOW_USER)
            .short('u').long("user")
            .help("Show the user column")
            .help_heading("Long view")
            .action(ArgAction::Count)
            .overrides_with(flags::NO_USER))
        .arg(Arg::new(flags::UID)
            .long("uid")
            .help("Show the numeric user ID column")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::GROUP)
            .short('g').long("group")
            .help("Show the group column")
            .help_heading("Long view")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::GID)
            .long("gid")
            .help("Show the numeric group ID column")
            .help_heading("Long view")
            .action(ArgAction::Count))

        // Extras
        .arg(Arg::new(flags::EXTENDED)
            .short('@').long("extended")
            .help("Show extended attributes and sizes")
            .help_heading("Long view")
            .action(ArgAction::Count))

        // ── Filtering and sorting ─────────────────────────────────

        .arg(Arg::new(flags::ALL)
            .short('a').long("all")
            .help("Show hidden and dot files (-aa for . and ..)")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::LIST_DIRS)
            .short('d').long("list-dirs")
            .help("List directories as regular files")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::ONLY_DIRS)
            .short('D').long("only-dirs")
            .help("List only directories, not files")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::ONLY_FILES)
            .short('f').long("only-files")
            .help("List only regular files, not directories")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::IGNORE_GLOB)
            .short('I').long("ignore")
            .visible_alias("ignore-glob")
            .help("Glob patterns (pipe-separated) of files to hide")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Set)
            .value_name("GLOB"))
        .arg(Arg::new(flags::SYMLINKS)
            .long("symlinks")
            .help("How to handle symlinks [show, hide, follow]")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Set)
            .value_name("MODE")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("show"),
                PossibleValue::new("hide"),
                PossibleValue::new("follow"),
            ]))
        .arg(Arg::new(flags::PRUNE)
            .short('P').long("prune")
            .visible_alias("prune-glob")
            .help("Glob patterns of directories to show but not recurse")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Set)
            .value_name("GLOB"))
        .arg(Arg::new(flags::REVERSE)
            .short('r').long("reverse")
            .help("Reverse the sort order")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::SORT)
            .short('s').long("sort")
            // NOTE: this list is hand-curated to keep the --help
            // output grouped by category.  The authoritative list
            // of accepted values is in src/fs/sort_registry.rs;
            // if you add a new sort field there, add it here too.
            // `clap` uses the registry (via sort_values()) for
            // validation and error-message suggestions, so a new
            // field will still *work* without updating this text —
            // it just won't appear in --help until you do.
            .help("Sort field\n\
                   [name, Name, extension, Extension, version,\n \
                   size, blocks, links, permissions, flags,\n \
                   user, User, group, Group, uid, gid,\n \
                   modified, changed, accessed, created,\n \
                   vcs, type, inode, none]")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Set)
            .value_name("FIELD")
            .hide_possible_values(true)
            .value_parser(sort_values()))
        .arg(Arg::new(flags::GROUP_DIRS)
            .long("group-dirs")
            .help("Group directories before or after other files\n[first, last, none]")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .overrides_with_all([flags::DIRS_FIRST, flags::DIRS_LAST])
            .value_parser([
                PossibleValue::new("first"),
                PossibleValue::new("last"),
                PossibleValue::new("none"),
            ]))
        .arg(Arg::new(flags::DIRS_FIRST)
            .short('F')
            .long("dirs-first")
            .alias("group-directories-first")
            .help("Directories first [short for --group-dirs=first]")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::SetTrue)
            .overrides_with_all([flags::GROUP_DIRS, flags::DIRS_LAST]))
        .arg(Arg::new(flags::DIRS_LAST)
            .short('J')
            .long("dirs-last")
            .alias("group-directories-last")
            .help("Directories last [short for --group-dirs=last]")
            .help_heading("Filtering & Sorting")
            .action(ArgAction::SetTrue)
            .overrides_with_all([flags::GROUP_DIRS, flags::DIRS_FIRST]))

        // ── Column / format / personality ─────────────────────────

        .arg(Arg::new(flags::PERSONALITY)
            .short('p').long("personality")
            .help("Apply a named personality (columns + flags) 🌟\n[ll, lll, la, tree, ...]")
            .help_heading("Personalities & Formats")
            .action(ArgAction::Set)
            .value_name("NAME"))
        .arg(Arg::new(flags::COLUMNS)
            .long("columns")
            .help("Explicit column list (comma-separated)")
            .help_heading("Personalities & Formats")
            .action(ArgAction::Set)
            .value_name("COLS"))
        .arg(Arg::new(flags::FORMAT)
            .long("format")
            .help("Named column format [long, long2, long3, ...]")
            .help_heading("Personalities & Formats")
            .action(ArgAction::Set)
            .value_name("NAME")
            .hide_possible_values(true)
            .value_parser({
                let names = crate::options::view::format_names();
                names.into_iter()
                    .map(|s| { let leaked: &'static str = Box::leak(s.into_boxed_str()); PossibleValue::new(leaked) })
                    .collect::<Vec<_>>()
            }))

        // ── Timestamps ────────────────────────────────────────────

        .arg(Arg::new(flags::TIME_TIER)
            .short('t')
            .help("Show timestamps — compounds like -l:\n\
                   -t adds modified, -tt adds changed,\n\
                   -ttt adds created and accessed")
            .help_heading("Timestamps")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::MODIFIED)
            .short('m').long("modified")
            .help("Show the modified timestamp column")
            .help_heading("Timestamps")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::CHANGED)
            .short('c').long("changed")
            .help("Show the changed timestamp column")
            .help_heading("Timestamps")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::ACCESSED)
            .long("accessed")
            .help("Show the accessed timestamp column")
            .help_heading("Timestamps")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::CREATED)
            .long("created")
            .help("Show the created timestamp column")
            .help_heading("Timestamps")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::TIME_STYLE)
            .long("time-style")
            .help("How to format timestamps\n\
            [default, iso, long-iso, full-iso,\n \
            relative, +FORMAT]")
            .help_heading("Timestamps")
            .action(ArgAction::Set)
            .value_name("STYLE"))
        .arg(Arg::new(flags::NO_TIME)
            .long("no-time").alias("no-timestamps")
            .help("Clear all timestamp columns from the base format\n\
                   (`--no-time --accessed` shows only accessed)")
            .help_heading("Timestamps")
            .action(ArgAction::Count))

        // ── Column overrides (suppressions) ───────────────────────
        //
        // Every column-add flag has a matching --no-FLAG suppressor
        // defined below.  All of them are hidden from --help because
        // they're mechanical negations of the positive flags; the
        // convention is documented once in the after_help block.
        // They remain fully functional and documented in lx(1).

        .arg(Arg::new(flags::NO_PERMISSIONS)
            .long("no-permissions").alias("no-mode").alias("no-M")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::SHOW_PERMISSIONS))
        .arg(Arg::new(flags::NO_FILESIZE)
            .long("no-filesize").alias("no-size").alias("no-z")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::SHOW_FILESIZE))
        .arg(Arg::new(flags::NO_USER)
            .long("no-user").alias("no-u")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::SHOW_USER))
        .arg(Arg::new(flags::NO_ICONS)
            .long("no-icons")
            .hide(true)
            .action(ArgAction::Count))
        .arg(Arg::new(flags::NO_INODE)
            .long("no-inode").alias("no-i")
            .hide(true)
            .action(ArgAction::Count))
        .arg(Arg::new(flags::NO_GROUP)
            .long("no-group").alias("no-g")
            .hide(true)
            .action(ArgAction::Count))
        .arg(Arg::new(flags::NO_UID)
            .long("no-uid")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::UID))
        .arg(Arg::new(flags::NO_GID)
            .long("no-gid")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::GID))
        .arg(Arg::new(flags::NO_LINKS)
            .long("no-links").alias("no-H")
            .hide(true)
            .action(ArgAction::Count))
        .arg(Arg::new(flags::NO_BLOCKS)
            .long("no-blocks").alias("no-S")
            .hide(true)
            .action(ArgAction::Count))
        .arg(Arg::new(flags::NO_OCTAL)
            .long("no-octal").alias("no-o")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::OCTAL))
        .arg(Arg::new(flags::NO_HEADER)
            .long("no-header").alias("no-h")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::HEADER))
        .arg(Arg::new(flags::NO_COUNT)
            .long("no-count").alias("no-C")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::COUNT))
        .arg(Arg::new(flags::NO_TOTAL_SIZE)
            .long("no-total-size").alias("no-Z")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::TOTAL_SIZE))
        .arg(Arg::new(flags::NO_MODIFIED)
            .long("no-modified").alias("no-m")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::MODIFIED))
        .arg(Arg::new(flags::NO_CHANGED)
            .long("no-changed").alias("no-c")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::CHANGED))
        .arg(Arg::new(flags::NO_ACCESSED)
            .long("no-accessed")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::ACCESSED))
        .arg(Arg::new(flags::NO_CREATED)
            .long("no-created")
            .hide(true)
            .action(ArgAction::Count)
            .overrides_with(flags::CREATED))

        // ── VCS ───────────────────────────────────────────────────

        .arg(Arg::new(flags::VCS)
            .long("vcs")
            .help("VCS backend [auto, git, jj, none]")
            .help_heading("VCS")
            .action(ArgAction::Set)
            .value_name("BACKEND")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("auto"),
                PossibleValue::new("git"),
                PossibleValue::new("jj"),
                PossibleValue::new("none"),
            ]))
        .arg(Arg::new(flags::VCS_STATUS)
            .long("vcs-status")
            .help("Show per-file VCS status column")
            .help_heading("VCS")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::VCS_IGNORE)
            .long("vcs-ignore")
            .help("Hide VCS-ignored files and metadata directories")
            .help_heading("VCS")
            .action(ArgAction::Count))
        .arg(Arg::new(flags::VCS_REPOS)
            .long("vcs-repos")
            .help("Show per-directory VCS repo indicator")
            .help_heading("VCS")
            .action(ArgAction::Count))

        // ── Appearance ────────────────────────────────────────────

        .arg(Arg::new(flags::COLOR)
            .long("colour").visible_alias("color")
            .help("When to use terminal colours\n[always, auto, never]")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("always"),
                PossibleValue::new("auto"),
                PossibleValue::new("never"),
                PossibleValue::new("automatic").hide(true),
            ]))
        .arg(Arg::new(flags::COLOR_SCALE)
            .long("colour-scale").visible_alias("color-scale")
            .help("Colour file sizes on a scale\n[16, 256, none]")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("MODE")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("16"),
                PossibleValue::new("256"),
                PossibleValue::new("none"),
            ])
            .num_args(0..=1)
            .require_equals(true)
            .default_missing_value("16"))
        .arg(Arg::new(flags::ICONS)
            .long("icons")
            .help("Display icons next to file names\n[always, auto, never]")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .value_parser([
                PossibleValue::new("always"),
                PossibleValue::new("auto"),
                PossibleValue::new("never"),
            ])
            .num_args(0..=1)
            .require_equals(true)
            .default_missing_value("auto"))
        .arg(Arg::new("theme")
            .long("theme")
            .help("Use a named colour theme")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("NAME"))
        .arg(Arg::new("hyperlink")
            .long("hyperlink")
            .help("File names as clickable hyperlinks\n[always, auto, never]")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .default_missing_value("always")
            .require_equals(true)
            .num_args(0..=1)
            .value_parser(["always", "auto", "never"]))
        .arg(Arg::new("quotes")
            .long("quotes")
            .help("Quote file names containing spaces\n[always, auto, never]")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("WHEN")
            .hide_possible_values(true)
            .default_missing_value("always")
            .require_equals(true)
            .num_args(0..=1)
            .value_parser(["always", "auto", "never"]))
        .arg(Arg::new("width")
            .long("width")
            .short('w')
            .help("Override terminal width")
            .help_heading("Appearance")
            .action(ArgAction::Set)
            .value_name("COLS")
            .value_parser(clap::value_parser!(usize)))
        .arg(Arg::new("absolute")
            .short('A')
            .long("absolute")
            .help("Show absolute file paths")
            .help_heading("Appearance")
            .action(ArgAction::SetTrue))

        // ── Configuration ─────────────────────────────────────────

        .arg(Arg::new("show-config")
            .long("show-config")
            .help("Show the active configuration and exit")
            .help_heading("Configuration")
            .action(ArgAction::SetTrue))
        .arg(Arg::new("dump-class")
            .long("dump-class")
            .help("Dump class definitions as TOML")
            .help_heading("Configuration")
            .value_name("NAME")
            .default_missing_value("")
            .num_args(0..=1)
            .require_equals(true))
        .arg(Arg::new("dump-format")
            .long("dump-format")
            .help("Dump format definitions as TOML")
            .help_heading("Configuration")
            .value_name("NAME")
            .default_missing_value("")
            .num_args(0..=1)
            .require_equals(true))
        .arg(Arg::new("dump-personality")
            .long("dump-personality")
            .help("Dump personality definitions as TOML")
            .help_heading("Configuration")
            .value_name("NAME")
            .default_missing_value("")
            .num_args(0..=1)
            .require_equals(true))
        .arg(Arg::new("dump-theme")
            .long("dump-theme")
            .help("Dump theme definitions as TOML")
            .help_heading("Configuration")
            .value_name("NAME")
            .default_missing_value("")
            .num_args(0..=1)
            .require_equals(true))
        .arg(Arg::new("dump-style")
            .long("dump-style")
            .help("Dump style definitions as TOML")
            .help_heading("Configuration")
            .value_name("NAME")
            .default_missing_value("")
            .num_args(0..=1)
            .require_equals(true))
        .arg(Arg::new("init-config")
            .long("init-config")
            .help("Generate a default config file")
            .help_heading("Configuration")
            .action(ArgAction::SetTrue))
        .arg(Arg::new("upgrade-config")
            .long("upgrade-config")
            .help("Upgrade a legacy config file")
            .help_heading("Configuration")
            .action(ArgAction::SetTrue))
        .arg(Arg::new("completions")
            .long("completions")
            .help("Generate shell completions\n[bash, zsh, fish, elvish, powershell]")
            .help_heading("Shell completions")
            .action(ArgAction::Set)
            .value_name("SHELL")
            .hide_possible_values(true)
            .value_parser(clap::value_parser!(clap_complete::Shell)))

        // ── Help & version ────────────────────────────────────────

        .arg(Arg::new("help")
            .short('?').long("help")
            .help("Print help information")
            .action(ArgAction::HelpShort))
        .arg(Arg::new("version")
            .short('v').long("version")
            .help("Print version information")
            .action(ArgAction::Version))

        // Positional arguments (files/directories)
        .arg(Arg::new("FILE")
            .action(ArgAction::Append)
            .value_parser(clap::value_parser!(std::ffi::OsString)))
}