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
feat: implement Ping All feature with right-aligned status indicators
Add comprehensive ping functionality:
- Add 'G' shortcut to ping all servers simultaneously
- Add right-aligned status indicators on server list
- Show ping latency with adaptive formatting (<100ms as "##ms", >=100ms as "#.#s")
- Responsive design adapts to window width changes
- Color-coded status: green (up), red (down), orange (checking)
- Update single server ping (g) to also show status
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 • 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 • g/G Ping (All) • r Refresh • a Add • e Edit • t Tags • d Delete • p Pin/Unpin • s Sort[-]")
0 commit comments