summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-12-01 14:04:21 +0800
committer魏曹先生 <1992414357@qq.com>2025-12-01 14:04:21 +0800
commit8e0ae42cbc049180353d8a05f6e7d56402634b4c (patch)
treec3930dc2ea5c159bbb0f0ba2e63c4a57d741645d
parente7a6200bb6ee8403b4cdfd53d7c5ad7fc5200d00 (diff)
add: comments of Completion Helpers
-rw-r--r--src/bin/jv.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/jv.rs b/src/bin/jv.rs
index d9baeb8..26e7d19 100644
--- a/src/bin/jv.rs
+++ b/src/bin/jv.rs
@@ -198,18 +198,23 @@ enum JustEnoughVcsWorkspaceCommand {
Login(LoginArgs),
// Completion Helpers
+ /// Display History IP Address
#[command(name = "_ip_history")]
GetHistoryIpAddress,
+ /// Display Workspace Directory
#[command(name = "_workspace_dir")]
GetWorkspaceDir,
+ /// Display Current Account
#[command(name = "_account")]
GetCurrentAccount,
+ /// Display Current Upstream Vault
#[command(name = "_upstream")]
GetCurrentUpstream,
+ /// Display Current Sheet
#[command(name = "_sheet")]
GetCurrentSheet,
}