Remove empty line after ls

This commit is contained in:
Thomas Forgione 2023-11-09 14:35:06 +01:00
parent d4af33f802
commit 1cf87aced8
1 changed files with 2 additions and 0 deletions

View File

@ -98,12 +98,14 @@ def l [dir?: string] {
_ls (if $dir == null { "" } else { $dir })
| sort-by type name -i
| grid -c -s " "
| cat
}
def ls [dir?: string] {
_ls (if $dir == null { "" } else { $dir })
| sort-by type name -i
| grid -c -s " "
| cat
}
def la [dir?: string] {