From 6bbc55a2c2a238a2992fa6c560343566d1ff8161 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Thu, 17 Feb 2022 20:52:14 +0530 Subject: [PATCH] fish: functions/l/ll: Drop the -h option exa prints human readable sizes by default, so the -h option no longer applies. --- fish/.config/fish/functions/l.fish | 2 +- fish/.config/fish/functions/ll.fish | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fish/.config/fish/functions/l.fish b/fish/.config/fish/functions/l.fish index dd21781..9f3ee3e 100644 --- a/fish/.config/fish/functions/l.fish +++ b/fish/.config/fish/functions/l.fish @@ -1,3 +1,3 @@ function l -w exa - exa -lh $argv + exa -l $argv end diff --git a/fish/.config/fish/functions/ll.fish b/fish/.config/fish/functions/ll.fish index 0012253..78622b4 100644 --- a/fish/.config/fish/functions/ll.fish +++ b/fish/.config/fish/functions/ll.fish @@ -1,3 +1,3 @@ function ll -w exa - exa -lah $argv + exa -la $argv end