From efcf4377785889b027194821a0a0767335d3cfcf Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Tue, 18 Mar 2025 16:43:04 -0700 Subject: [PATCH] fixl --- users/tao/nushell/extras/alias.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/tao/nushell/extras/alias.nu b/users/tao/nushell/extras/alias.nu index 9c83a53..d4f711e 100644 --- a/users/tao/nushell/extras/alias.nu +++ b/users/tao/nushell/extras/alias.nu @@ -52,6 +52,6 @@ def --env c [path: path = "~"] { l } -def l --wrapped [...rest] { - ls ...$rest | sort-by type name -i -n +def l --wrapped [path: path = ".", ...rest] { + ls ...$rest $path | sort-by type name -i -n }