km ssh <SERVER> [COMMAND] -n [NAME]

This commit is contained in:
mbecker20
2025-10-21 23:55:36 -07:00
parent e890b1f675
commit bd79d0f1e0
2 changed files with 6 additions and 6 deletions

View File

@@ -7,9 +7,9 @@ pub struct Ssh {
/// Defaults to Periphery default.
pub command: Option<String>,
/// The terminal (name) to connect to. Default: `ssh`
#[arg(long, short = 't', default_value_t = String::from("ssh"))]
pub terminal: String,
/// The terminal name to connect to. Default: `ssh`
#[arg(long, short = 'n', default_value_t = String::from("ssh"))]
pub name: String,
/// Force fresh terminal to replace existing one.
#[arg(long, short = 'r', default_value_t = false)]