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
use crateCli;
use ExitCode;
use CommandFactory;
use Parser;
use ;
// ── Completions ───────────────────────────────────────────────────────────
/// Generate shell completion scripts for the current shell.
///
/// Print the completion script to stdout. Source it from your shell's config
/// file to enable tab-completion for all carryctx commands and flags.
///
/// # Examples
///
/// ```bash
/// # Bash
/// carryctx completions bash >> ~/.bash_completion.d/carryctx
///
/// # Zsh (add to ~/.zshrc)
/// eval "$(carryctx completions zsh)"
///
/// # Fish
/// carryctx completions fish > ~/.config/fish/completions/carryctx.fish
/// ```
// ═══════════════════════════════════════════════════════════════════════════
// Handler: completions
// ═══════════════════════════════════════════════════════════════════════════