You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: rename "Add from SSH" to "Paste SSH" for better UX clarity
- Rename feature from "Add from SSH" to "Paste SSH" to better reflect the action
- Move "Paste SSH" next to "Copy SSH" in all UI elements for logical grouping
- Update function name from handleAddFromSSH() to handlePasteCommand()
- Clarify in README as "Paste SSH (as new server)" to indicate the outcome
The new naming creates a clear conceptual pairing with "Copy SSH":
- "Copy SSH" exports existing server config to clipboard
- "Paste SSH" imports SSH command from clipboard to create new server
This change improves discoverability and makes the feature's purpose
immediately obvious to users, following the familiar copy/paste paradigm.
Copy file name to clipboardExpand all lines: internal/adapters/ui/hint_bar.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,6 @@ import (
22
22
funcNewHintBar() *tview.TextView {
23
23
hint:=tview.NewTextView().SetDynamicColors(true)
24
24
hint.SetBackgroundColor(tcell.Color233)
25
-
hint.SetText("[#BBBBBB]Press [::b]/[-:-:b] to search… • ↑↓ Navigate • Enter SSH • c Copy SSH • g Ping • r Refresh • a Add • v Add from SSH • e Edit • t Tags • d Delete • p Pin/Unpin • s Sort[-]")
25
+
hint.SetText("[#BBBBBB]Press [::b]/[-:-:b] to search… • ↑↓ Navigate • Enter SSH • c Copy SSH • v Paste SSH • g Ping • r Refresh • a Add • e Edit • t Tags • d Delete • p Pin/Unpin • s Sort[-]")
0 commit comments