diff options
| author | Jassiel Ovando <jassielovando@protonmail.com> | 2025-07-09 08:41:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-09 12:41:40 +0000 |
| commit | 1bbb58c43f6f5d94be4b2609728039a9922c75f8 (patch) | |
| tree | 77740e36cd889b6a1dfa14ce84be2ac781b02e2f /crates/typst-cli/src/main.rs | |
| parent | 1dc4c248d1022dc9f3b6e3e899857404f6c680a1 (diff) | |
Add completions subcommand (#6568)
Diffstat (limited to 'crates/typst-cli/src/main.rs')
| -rw-r--r-- | crates/typst-cli/src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/typst-cli/src/main.rs b/crates/typst-cli/src/main.rs index 14f8a665..6a3b337d 100644 --- a/crates/typst-cli/src/main.rs +++ b/crates/typst-cli/src/main.rs @@ -1,5 +1,6 @@ mod args; mod compile; +mod completions; mod download; mod fonts; mod greet; @@ -71,6 +72,7 @@ fn dispatch() -> HintedStrResult<()> { Command::Query(command) => crate::query::query(command)?, Command::Fonts(command) => crate::fonts::fonts(command), Command::Update(command) => crate::update::update(command)?, + Command::Completions(command) => crate::completions::completions(command), } Ok(()) |
