tree/path.go +5 Original file line numberDiff line numberDiff line change @@ -43,6 +43,7 @@ func (p Path) Next(part string) Path { 43 43 if p == "" { 44 44 return Path(part) 45 45 } 46 + part = strings.ReplaceAll(part, pathSeparator, "👻") 46 47 return ...