displayRef returns the ref as shown to the user: local config paths are shortened with "~", everything else is unchanged.
(ref string)
| 783 | // displayRef returns the ref as shown to the user: local config paths are |
| 784 | // shortened with "~", everything else is unchanged. |
| 785 | func displayRef(ref string) string { |
| 786 | if isLocalConfigRef(ref) { |
| 787 | return path.ShortenHome(ref) |
| 788 | } |
| 789 | return ref |
| 790 | } |
| 791 | |
| 792 | func (m *agentPickerModel) renderCard(choice agentChoice, cardWidth int, selected bool) string { |
| 793 | marker := " " |
no test coverage detected