Skip to content

Commit faefb12

Browse files
committed
🐛 fix: remove --grid options for lF, lD and ll
1 parent 89a2a3d commit faefb12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotposh/Config/posh-eza.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ function Invoke-EzaDir {
2525
[Parameter(ValueFromRemainingArguments = $true)]
2626
[string[]]$Path
2727
)
28-
eza.exe --icons --header --hyperlink --group --grid --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lDa --show-symlinks --time-style=relative @Path
28+
eza.exe --icons --header --hyperlink --group --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lDa --show-symlinks --time-style=relative @Path
2929
}
3030
function Invoke-EzaFile {
3131
[alias('lF')]
3232
param(
3333
[Parameter(ValueFromRemainingArguments = $true)]
3434
[string[]]$Path
3535
)
36-
eza.exe --icons --header --hyperlink --group --grid --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lfa --show-symlinks --time-style=relative @Path
36+
eza.exe --icons --header --hyperlink --group --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lfa --show-symlinks --time-style=relative @Path
3737
}
3838
function Invoke-EzaList {
3939
[alias('ll')]
4040
param(
4141
[Parameter(ValueFromRemainingArguments = $true)]
4242
[string[]]$Path
4343
)
44-
eza.exe --icons --header --hyperlink --group --grid --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lbhHigUmuSa --time-style=relative --sort=modified --reverse @Path
44+
eza.exe --icons --header --hyperlink --group --git -I='*NTUSER.DAT*|*ntuser.dat*' --group-directories-first -lbhHigUmuSa --time-style=relative --sort=modified --reverse @Path
4545
}
4646
function Invoke-EzaOneline {
4747
[alias('lo')]

0 commit comments

Comments
 (0)