Skip to content

Commit 95ad8a6

Browse files
committed
chore: update help menu
1 parent ac49512 commit 95ad8a6

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

cmd/root.go

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,24 @@ import (
88
var rootCmd = &cobra.Command{
99
Use: "managedssh",
1010
Short: "A beautiful SSH connection manager",
11-
Long: "ManagedSSH — manage, organize, and connect to your SSH hosts from a slick terminal UI.",
11+
Long: `ManagedSSH - manage, organize, and connect to your SSH hosts from a slick terminal UI.
12+
13+
Interface Controls:
14+
q quit
15+
l lock vault
16+
c change master key
17+
/ focus search
18+
esc clear search or cancel current context
19+
j / k move selection (arrow keys also supported)
20+
a add host
21+
e edit selected host
22+
y duplicate selected host
23+
d delete selected host (with confirmation)
24+
h run health check for all saved hosts
25+
enter connect to selected host
26+
x export backup
27+
i import backup`,
28+
Args: cobra.NoArgs,
1229
RunE: func(cmd *cobra.Command, args []string) error {
1330
return tui.Start()
1431
},

0 commit comments

Comments
 (0)