(path string)
| 336 | } |
| 337 | |
| 338 | func undecoratedDeletedPath(path string) (string, bool) { |
| 339 | if strings.HasPrefix(path, "<<") && strings.HasSuffix(path, ">>") { |
| 340 | return strings.TrimSuffix(strings.TrimPrefix(path, "<<"), ">>"), true |
| 341 | } |
| 342 | return path, false |
| 343 | } |
| 344 | |
| 345 | func renderLsResults(out io.Writer, entries []files.IsMetadata, opts listOptions) error { |
| 346 | w := new(tabwriter.Writer) |
no outgoing calls
no test coverage detected