Better spacing for grid

This commit is contained in:
Thomas Forgione 2023-11-08 14:47:17 +01:00
parent 82a15a3303
commit b71c844ac4
1 changed files with 2 additions and 2 deletions

View File

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