summaryrefslogtreecommitdiffstats
path: root/atuin/src/command/client.rs
diff options
context:
space:
mode:
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,