summaryrefslogtreecommitdiffstats
path: root/atuin/src/command/client.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-04-15 08:33:26 +0100
committerGitHub <noreply@github.com>2024-04-15 08:33:26 +0100
commit50a73f055288d72eeeb128233e2a04bc88a5d5e8 (patch)
treecdc31c700bc68283f72de033f971c63d7bbba8e4 /atuin/src/command/client.rs
parentc41998e98a073f4cce26134c0642c403d71b74a2 (diff)
docs: add missing cli help text (#1945)
Diffstat (limited to 'atuin/src/command/client.rs')
-rw-r--r--atuin/src/command/client.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/atuin/src/command/client.rs b/atuin/src/command/client.rs
index ccd554bf..23040695 100644
--- a/atuin/src/command/client.rs
+++ b/atuin/src/command/client.rs
@@ -45,18 +45,23 @@ pub enum Cmd {
#[command(flatten)]
Sync(sync::Cmd),
+ /// Manage your sync account
#[cfg(feature = "sync")]
Account(account::Cmd),
+ /// Get or set small key-value pairs
#[command(subcommand)]
Kv(kv::Cmd),
+ /// Manage the atuin data store
#[command(subcommand)]
Store(store::Cmd),
+ /// Manage your dotfiles with Atuin
#[command(subcommand)]
Dotfiles(dotfiles::Cmd),
+ /// Print Atuin's shell init script
#[command()]
Init(init::Cmd),
@@ -64,6 +69,7 @@ pub enum Cmd {
#[command()]
Info,
+ /// Run the doctor to check for common issues
#[command()]
Doctor,