Merge pull request #5634 from cakebaker/ls_use_show_dir_name

ls: use show_dir_name to output dir name
This commit is contained in:
Terts Diepraam 2023-12-11 14:38:47 +01:00 committed by GitHub
commit 181cfc885b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1961,7 +1961,8 @@ pub fn list(locs: Vec<&Path>, config: &Config) -> UResult<()> {
if config.dired {
dired::indent(&mut out)?;
}
writeln!(out, "{}:", path_data.p_buf.display())?;
show_dir_name(&path_data.p_buf, &mut out);
writeln!(out)?;
if config.dired {
// First directory displayed
let dir_len = path_data.display_name.len();