diff --git a/src/uu/ls/src/ls.rs b/src/uu/ls/src/ls.rs index 21aecfd27ed..e99047e5d8b 100644 --- a/src/uu/ls/src/ls.rs +++ b/src/uu/ls/src/ls.rs @@ -2675,15 +2675,7 @@ fn display_grid( .map(|s| s.to_string_lossy().into_owned()) .collect(); - // Determine whether to use tabs for separation based on whether any entry ends with '/'. - // If any entry ends with '/', it indicates that the -F flag is likely used to classify directories. - let use_tabs = names.iter().any(|name| name.ends_with('/')); - - let filling = if use_tabs { - Filling::Text("\t".to_string()) - } else { - Filling::Spaces(2) - }; + let filling = Filling::Spaces(2); let grid = Grid::new( names,