From 28f2a163916c2f8b3efbb8940d0db899299ed9d1 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 11 Apr 2024 14:52:24 +0200 Subject: [PATCH] remove unecessary spaces --- .config/fish/functions/catall.fish | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/fish/functions/catall.fish b/.config/fish/functions/catall.fish index 772780e..1672632 100644 --- a/.config/fish/functions/catall.fish +++ b/.config/fish/functions/catall.fish @@ -8,11 +8,11 @@ function catall --description "Print recursively multiple files." # Check if not enough arguments provided, or help menu if set -ql _flag_help || test -z $argv[2] echo -e "Usage: $current_name exts ..." - echo -e " $current_name [-h|--help] \t\t\t - Show this help message" - echo -e " $current_name *.c \t\t - Cat all .C files" - echo -e " $current_name *.c *.h ... \t - Cat .C and .H files, etc." - echo -e "Flag:" - echo -e " [-n|-noheader] \t\t\t - Don't show the filenames before print" + echo -e " $current_name [-h|--help] \t\t - Show this help message" + echo -e " $current_name *.c \t - Cat all .C files" + echo -e " $current_name *.c *.h ... - Cat .C and .H files, etc." + echo -e "Available options:" + echo -e " -n | --noheader \t\t - Don't show the filenames before print" return 0 end