diff --git a/config/fish/conf.d/fish-exa.fish b/config/fish/conf.d/fish-exa.fish deleted file mode 100644 index 5ec5878..0000000 --- a/config/fish/conf.d/fish-exa.fish +++ /dev/null @@ -1,95 +0,0 @@ -function __fish_exa_install --on-event fish-exa_install - function _set - if not set --query --universal --export $argv[1] - set --universal --export $argv[1] $argv[2..-1] - end - end - - # Prefer eza as exa is unmaintained - if type -q eza - set -Ux __FISH_EXA_BINARY eza - else - set -Ux __FISH_EXA_BINARY exa - end - - set -Ux __FISH_EXA_BASE_ALIASES l ll lg le lt lc lo - set -Ux __FISH_EXA_EXPANDED a d i id aa ad ai aid aad aai aaid - set -Ux __FISH_EXA_EXPANDED_OPT_NAME LA LD LI LID LAA LAD LAI LAID LAAD LAAI LAAID - set -Ux __FISH_EXA_OPT_NAMES - set -Ux __FISH_EXA_ALIASES - set -Ux __FISH_EXA_SORT_OPTIONS name .name size ext mod old acc cr inode - - _set EXA_STANDARD_OPTIONS "--group" "--header" "--group-directories-first" - - # Base aliases - _set EXA_L_OPTIONS - _set EXA_LL_OPTIONS "--long" - _set EXA_LG_OPTIONS "--git" "--git-ignore" "--long" - _set EXA_LE_OPTIONS "--extended" "--long" - _set EXA_LT_OPTIONS "--tree" "--level" - _set EXA_LC_OPTIONS "--across" - _set EXA_LO_OPTIONS "--oneline" - - # Extended aliases - _set EXA_LI_OPTIONS "--icons" - _set EXA_LD_OPTIONS "--only-dirs" - _set EXA_LID_OPTIONS "--icons" "--only-dirs" - _set EXA_LA_OPTIONS "--all" "--binary" - _set EXA_LAD_OPTIONS "--all" "--binary" "--only-dirs" - _set EXA_LAI_OPTIONS "--all" "--binary" "--icons" - _set EXA_LAID_OPTIONS "--all" "--binary" "--icons" "--only-dirs" - _set EXA_LAA_OPTIONS "--all" "--all" "--binary" - _set EXA_LAAD_OPTIONS "--all" "--all" "--binary" "--only-dirs" - _set EXA_LAAI_OPTIONS "--all" "--all" "--binary" "--icons" - _set EXA_LAAID_OPTIONS "--all" "--all" "--binary" "--icons" "--only-dirs" - - for a in $__FISH_EXA_BASE_ALIASES - set -l opt_name (string join '_' "EXA" (string upper $a) "OPTIONS") - if test $a = "ll" - alias --save "$a" "exa_git" - else - alias --save "$a" "$__FISH_EXA_BINARY \$EXA_STANDARD_OPTIONS \$$opt_name" - end - set -a __FISH_EXA_OPT_NAMES "$opt_name" - set -a __FISH_EXA_ALIASES "$a" - - for i in (seq (count $__FISH_EXA_EXPANDED)) - set -l name "$a$__FISH_EXA_EXPANDED[$i]" - # --tree is useless given --all --all - if test $name = "ltaa"; or test $name = "ltaac" - continue - end - set -l exp_opt_name (string join '_' "EXA" $__FISH_EXA_EXPANDED_OPT_NAME[$i] "OPTIONS") - if string match --quiet 'll*' "$name" - alias --save "$name" "exa_git \$$exp_opt_name" - else - alias --save "$name" "$__FISH_EXA_BINARY \$EXA_STANDARD_OPTIONS \$$exp_opt_name \$$opt_name" - end - set -a __FISH_EXA_ALIASES "$name" - - if not contains $exp_opt_name $__FISH_EXA_OPT_NAMES - set -a __FISH_EXA_OPT_NAMES $exp_opt_name - end - end - end -end - -function __fish_exa_update --on-event fish-exa_update - __fish_exa_uninstall - __fish_exa_install -end - -function __fish_exa_uninstall --on-event fish-exa_uninstall - for a in $__FISH_EXA_ALIASES - functions --erase $a - funcsave $a - end - - set --erase __FISH_EXA_BASE_ALIASES - set --erase __FISH_EXA_ALIASES - set --erase __FISH_EXA_EXPANDED - set --erase __FISH_EXA_EXPANDED_OPT_NAME - set --erase __FISH_EXA_OPT_NAMES - set --erase __FISH_EXA_SORT_OPTIONS - set --erase __FISH_EXA_BINARY -end diff --git a/config/fish/conf.d/fish-eza.fish b/config/fish/conf.d/fish-eza.fish new file mode 100644 index 0000000..545ef78 --- /dev/null +++ b/config/fish/conf.d/fish-eza.fish @@ -0,0 +1,87 @@ +function __fish_eza_install --on-event fish-eza_install + set -Ux __FISH_EZA_BASE_ALIASES l ll lg le lt lc lo + set -Ux __FISH_EZA_EXPANDED a d i id aa ad ai aid aad aai aaid + set -Ux __FISH_EZA_EXPANDED_OPT_NAME LA LD LI LID LAA LAD LAI LAID LAAD LAAI LAAID + set -Ux __FISH_EZA_OPT_NAMES + set -Ux __FISH_EZA_ALIASES + set -Ux __FISH_EZA_SORT_OPTIONS name .name size ext mod old acc cr inode + + set -Ux EZA_STANDARD_OPTIONS "--group" "--header" "--group-directories-first" + + # Base aliases + set -Ux EZA_L_OPTIONS + set -Ux EZA_LL_OPTIONS "--long" + set -Ux EZA_LG_OPTIONS "--git" "--git-ignore" "--long" + set -Ux EZA_LE_OPTIONS "--extended" "--long" + set -Ux EZA_LT_OPTIONS "--tree" "--level" + set -Ux EZA_LC_OPTIONS "--across" + set -Ux EZA_LO_OPTIONS "--oneline" + + # Extended aliases + set -Ux EZA_LI_OPTIONS "--icons" + set -Ux EZA_LD_OPTIONS "--only-dirs" + set -Ux EZA_LID_OPTIONS "--icons" "--only-dirs" + set -Ux EZA_LA_OPTIONS "--all" "--binary" + set -Ux EZA_LAD_OPTIONS "--all" "--binary" "--only-dirs" + set -Ux EZA_LAI_OPTIONS "--all" "--binary" "--icons" + set -Ux EZA_LAID_OPTIONS "--all" "--binary" "--icons" "--only-dirs" + set -Ux EZA_LAA_OPTIONS "--all" "--all" "--binary" + set -Ux EZA_LAAD_OPTIONS "--all" "--all" "--binary" "--only-dirs" + set -Ux EZA_LAAI_OPTIONS "--all" "--all" "--binary" "--icons" + set -Ux EZA_LAAID_OPTIONS "--all" "--all" "--binary" "--icons" "--only-dirs" + + for a in $__FISH_EZA_BASE_ALIASES + set -l opt_name (string join '_' "EZA" (string upper $a) "OPTIONS") + if test $a = "ll" + alias --save "$a" "eza_git" + else + alias --save "$a" "eza \$EZA_STANDARD_OPTIONS \$$opt_name" + end + set -a __FISH_EZA_OPT_NAMES "$opt_name" + set -a __FISH_EZA_ALIASES "$a" + + for i in (seq (count $__FISH_EZA_EXPANDED)) + set -l name "$a$__FISH_EZA_EXPANDED[$i]" + # --tree is useless given --all --all + if test $name = "ltaa"; or test $name = "ltaac" + continue + end + set -l exp_opt_name (string join '_' "EZA" $__FISH_EZA_EXPANDED_OPT_NAME[$i] "OPTIONS") + if string match --quiet 'll*' "$name" + alias --save "$name" "eza_git \$$exp_opt_name" + else + alias --save "$name" "eza \$EZA_STANDARD_OPTIONS \$$exp_opt_name \$$opt_name" + end + set -a __FISH_EZA_ALIASES "$name" + + if not contains $exp_opt_name $__FISH_EZA_OPT_NAMES + set -a __FISH_EZA_OPT_NAMES $exp_opt_name + end + end + end +end + +function __fish_eza_update --on-event fish-eza_update + __fish_eza_uninstall + __fish_eza_install +end + +function __fish_eza_uninstall --on-event fish-eza_uninstall + set --erase EZA_STANDARD_OPTIONS + + for a in $__FISH_EZA_ALIASES + functions --erase $a + funcsave $a + end + + for opt in $__FISH_EZA_OPT_NAMES + set --erase $opt + end + + set --erase __FISH_EZA_BASE_ALIASES + set --erase __FISH_EZA_ALIASES + set --erase __FISH_EZA_EXPANDED + set --erase __FISH_EZA_EXPANDED_OPT_NAME + set --erase __FISH_EZA_OPT_NAMES + set --erase __FISH_EZA_SORT_OPTIONS +end diff --git a/config/fish/fish_plugins b/config/fish/fish_plugins index e7a6d50..a9a4473 100644 --- a/config/fish/fish_plugins +++ b/config/fish/fish_plugins @@ -7,4 +7,4 @@ ehfive/fish-bash2env jgusta/paths danhper/fish-ssh-agent halostatue/fish-brew@v3 -gazorby/fish-exa +plttn/fish-eza diff --git a/config/fish/functions/exa_git.fish b/config/fish/functions/exa_git.fish deleted file mode 100644 index 10fa9cc..0000000 --- a/config/fish/functions/exa_git.fish +++ /dev/null @@ -1,7 +0,0 @@ -function exa_git -d "Use exa and its git options if in a git repo" - if git rev-parse --is-inside-work-tree &>/dev/null - $__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} --git $argv - else - $__FISH_EXA_BINARY $EXA_STANDARD_OPTIONS {$EXA_LL_OPTIONS} $argv - end -end diff --git a/config/fish/functions/eza_git.fish b/config/fish/functions/eza_git.fish new file mode 100644 index 0000000..881039b --- /dev/null +++ b/config/fish/functions/eza_git.fish @@ -0,0 +1,7 @@ +function eza_git -d "Use exa and its git options if in a git repo" + if git rev-parse --is-inside-work-tree &>/dev/null + eza $EZA_STANDARD_OPTIONS {$EZA_LL_OPTIONS} --git $argv + else + eza $EZA_STANDARD_OPTIONS {$EZA_LL_OPTIONS} $argv + end +end diff --git a/config/fish/functions/l.fish b/config/fish/functions/l.fish index d479e57..dc0c767 100644 --- a/config/fish/functions/l.fish +++ b/config/fish/functions/l.fish @@ -1,4 +1,4 @@ -function l --wraps='eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS' --description 'alias l eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS $argv +function l --wraps='exa $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS' --wraps='eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS' --description 'alias l eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/la.fish b/config/fish/functions/la.fish index 1c9f993..9c63021 100644 --- a/config/fish/functions/la.fish +++ b/config/fish/functions/la.fish @@ -1,4 +1,4 @@ -function la --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS' --description 'alias la eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_L_OPTIONS $argv +function la --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS' --description 'alias la eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/laa.fish b/config/fish/functions/laa.fish index ae383ff..111b584 100644 --- a/config/fish/functions/laa.fish +++ b/config/fish/functions/laa.fish @@ -1,4 +1,4 @@ -function laa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS' --description 'alias laa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_L_OPTIONS $argv +function laa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS' --description 'alias laa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/laad.fish b/config/fish/functions/laad.fish index 236d3db..4ba2306 100644 --- a/config/fish/functions/laad.fish +++ b/config/fish/functions/laad.fish @@ -1,4 +1,4 @@ -function laad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS' --description 'alias laad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_L_OPTIONS $argv +function laad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS' --description 'alias laad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/laai.fish b/config/fish/functions/laai.fish index 3fc1fce..8bc8463 100644 --- a/config/fish/functions/laai.fish +++ b/config/fish/functions/laai.fish @@ -1,4 +1,4 @@ -function laai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS' --description 'alias laai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_L_OPTIONS $argv +function laai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS' --description 'alias laai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/laaid.fish b/config/fish/functions/laaid.fish index 6f034a5..61f9388 100644 --- a/config/fish/functions/laaid.fish +++ b/config/fish/functions/laaid.fish @@ -1,4 +1,4 @@ -function laaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS' --description 'alias laaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_L_OPTIONS $argv +function laaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS' --description 'alias laaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/lad.fish b/config/fish/functions/lad.fish index 3af0c90..7ab9591 100644 --- a/config/fish/functions/lad.fish +++ b/config/fish/functions/lad.fish @@ -1,4 +1,4 @@ -function lad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS' --description 'alias lad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_L_OPTIONS $argv +function lad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS' --description 'alias lad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/lai.fish b/config/fish/functions/lai.fish index 90ce5e2..9157092 100644 --- a/config/fish/functions/lai.fish +++ b/config/fish/functions/lai.fish @@ -1,4 +1,4 @@ -function lai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS' --description 'alias lai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_L_OPTIONS $argv +function lai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS' --description 'alias lai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/laid.fish b/config/fish/functions/laid.fish index 6601f36..147960d 100644 --- a/config/fish/functions/laid.fish +++ b/config/fish/functions/laid.fish @@ -1,4 +1,4 @@ -function laid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS' --description 'alias laid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_L_OPTIONS $argv +function laid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS' --description 'alias laid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/lc.fish b/config/fish/functions/lc.fish index 20e57e7..40bfaaf 100644 --- a/config/fish/functions/lc.fish +++ b/config/fish/functions/lc.fish @@ -1,4 +1,4 @@ -function lc --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lc eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LC_OPTIONS $argv +function lc --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lc eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lca.fish b/config/fish/functions/lca.fish index 5112880..790361a 100644 --- a/config/fish/functions/lca.fish +++ b/config/fish/functions/lca.fish @@ -1,4 +1,4 @@ -function lca --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS' --description 'alias lca eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LC_OPTIONS $argv +function lca --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS' --description 'alias lca eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcaa.fish b/config/fish/functions/lcaa.fish index e6af325..01bf276 100644 --- a/config/fish/functions/lcaa.fish +++ b/config/fish/functions/lcaa.fish @@ -1,4 +1,4 @@ -function lcaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LC_OPTIONS $argv +function lcaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcaad.fish b/config/fish/functions/lcaad.fish index 854a549..fdc5c00 100644 --- a/config/fish/functions/lcaad.fish +++ b/config/fish/functions/lcaad.fish @@ -1,4 +1,4 @@ -function lcaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LC_OPTIONS $argv +function lcaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcaai.fish b/config/fish/functions/lcaai.fish index 1dcc58c..9795ae4 100644 --- a/config/fish/functions/lcaai.fish +++ b/config/fish/functions/lcaai.fish @@ -1,4 +1,4 @@ -function lcaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LC_OPTIONS $argv +function lcaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcaaid.fish b/config/fish/functions/lcaaid.fish index ec43967..5f92bc1 100644 --- a/config/fish/functions/lcaaid.fish +++ b/config/fish/functions/lcaaid.fish @@ -1,4 +1,4 @@ -function lcaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LC_OPTIONS $argv +function lcaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcad.fish b/config/fish/functions/lcad.fish index dae56f8..0437cbc 100644 --- a/config/fish/functions/lcad.fish +++ b/config/fish/functions/lcad.fish @@ -1,4 +1,4 @@ -function lcad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LC_OPTIONS $argv +function lcad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcai.fish b/config/fish/functions/lcai.fish index 6074354..b01f565 100644 --- a/config/fish/functions/lcai.fish +++ b/config/fish/functions/lcai.fish @@ -1,4 +1,4 @@ -function lcai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LC_OPTIONS $argv +function lcai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcaid.fish b/config/fish/functions/lcaid.fish index 1e9d873..ecd3049 100644 --- a/config/fish/functions/lcaid.fish +++ b/config/fish/functions/lcaid.fish @@ -1,4 +1,4 @@ -function lcaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LC_OPTIONS $argv +function lcaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcd.fish b/config/fish/functions/lcd.fish index 7ff2379..b70e118 100644 --- a/config/fish/functions/lcd.fish +++ b/config/fish/functions/lcd.fish @@ -1,4 +1,4 @@ -function lcd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LC_OPTIONS $argv +function lcd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lci.fish b/config/fish/functions/lci.fish index 69131ba..a256365 100644 --- a/config/fish/functions/lci.fish +++ b/config/fish/functions/lci.fish @@ -1,4 +1,4 @@ -function lci --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS' --description 'alias lci eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LC_OPTIONS $argv +function lci --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lci eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/lcid.fish b/config/fish/functions/lcid.fish index 8394d90..d4f9037 100644 --- a/config/fish/functions/lcid.fish +++ b/config/fish/functions/lcid.fish @@ -1,4 +1,4 @@ -function lcid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS' --description 'alias lcid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LC_OPTIONS $argv +function lcid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS $argv end diff --git a/config/fish/functions/ld.fish b/config/fish/functions/ld.fish index 41d9fec..98d5cff 100644 --- a/config/fish/functions/ld.fish +++ b/config/fish/functions/ld.fish @@ -1,4 +1,4 @@ -function ld --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS' --description 'alias ld eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_L_OPTIONS $argv +function ld --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS' --description 'alias ld eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/le.fish b/config/fish/functions/le.fish index 4d78950..5466d6d 100644 --- a/config/fish/functions/le.fish +++ b/config/fish/functions/le.fish @@ -1,4 +1,4 @@ -function le --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS' --description 'alias le eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LE_OPTIONS $argv +function le --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS' --description 'alias le eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/lea.fish b/config/fish/functions/lea.fish index b56079b..e420c97 100644 --- a/config/fish/functions/lea.fish +++ b/config/fish/functions/lea.fish @@ -1,4 +1,4 @@ -function lea --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS' --description 'alias lea eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LE_OPTIONS $argv +function lea --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS' --description 'alias lea eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leaa.fish b/config/fish/functions/leaa.fish index cfbe91e..0efd6a4 100644 --- a/config/fish/functions/leaa.fish +++ b/config/fish/functions/leaa.fish @@ -1,4 +1,4 @@ -function leaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LE_OPTIONS $argv +function leaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leaad.fish b/config/fish/functions/leaad.fish index d197bfd..97c11de 100644 --- a/config/fish/functions/leaad.fish +++ b/config/fish/functions/leaad.fish @@ -1,4 +1,4 @@ -function leaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LE_OPTIONS $argv +function leaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leaai.fish b/config/fish/functions/leaai.fish index 4171483..165b450 100644 --- a/config/fish/functions/leaai.fish +++ b/config/fish/functions/leaai.fish @@ -1,4 +1,4 @@ -function leaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LE_OPTIONS $argv +function leaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leaaid.fish b/config/fish/functions/leaaid.fish index e56286c..bfd8ba8 100644 --- a/config/fish/functions/leaaid.fish +++ b/config/fish/functions/leaaid.fish @@ -1,4 +1,4 @@ -function leaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LE_OPTIONS $argv +function leaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/lead.fish b/config/fish/functions/lead.fish index b06f950..634a16d 100644 --- a/config/fish/functions/lead.fish +++ b/config/fish/functions/lead.fish @@ -1,4 +1,4 @@ -function lead --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS' --description 'alias lead eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LE_OPTIONS $argv +function lead --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS' --description 'alias lead eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leai.fish b/config/fish/functions/leai.fish index ee9c629..26333e5 100644 --- a/config/fish/functions/leai.fish +++ b/config/fish/functions/leai.fish @@ -1,4 +1,4 @@ -function leai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS' --description 'alias leai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LE_OPTIONS $argv +function leai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS' --description 'alias leai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leaid.fish b/config/fish/functions/leaid.fish index ae370da..b98bd10 100644 --- a/config/fish/functions/leaid.fish +++ b/config/fish/functions/leaid.fish @@ -1,4 +1,4 @@ -function leaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LE_OPTIONS $argv +function leaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/led.fish b/config/fish/functions/led.fish index d28c2a4..c95e800 100644 --- a/config/fish/functions/led.fish +++ b/config/fish/functions/led.fish @@ -1,4 +1,4 @@ -function led --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS' --description 'alias led eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LE_OPTIONS $argv +function led --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS' --description 'alias led eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/lei.fish b/config/fish/functions/lei.fish index b9587ea..85d12fc 100644 --- a/config/fish/functions/lei.fish +++ b/config/fish/functions/lei.fish @@ -1,4 +1,4 @@ -function lei --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS' --description 'alias lei eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LE_OPTIONS $argv +function lei --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS' --description 'alias lei eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/leid.fish b/config/fish/functions/leid.fish index 37f0d17..3e7ac68 100644 --- a/config/fish/functions/leid.fish +++ b/config/fish/functions/leid.fish @@ -1,4 +1,4 @@ -function leid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS' --description 'alias leid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LE_OPTIONS $argv +function leid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS $argv end diff --git a/config/fish/functions/lg.fish b/config/fish/functions/lg.fish index f2c09ce..27afc08 100644 --- a/config/fish/functions/lg.fish +++ b/config/fish/functions/lg.fish @@ -1,4 +1,4 @@ -function lg --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lg eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LG_OPTIONS $argv +function lg --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lg eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lga.fish b/config/fish/functions/lga.fish index a97bc85..787a627 100644 --- a/config/fish/functions/lga.fish +++ b/config/fish/functions/lga.fish @@ -1,4 +1,4 @@ -function lga --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS' --description 'alias lga eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LG_OPTIONS $argv +function lga --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS' --description 'alias lga eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgaa.fish b/config/fish/functions/lgaa.fish index b237663..f60bc8d 100644 --- a/config/fish/functions/lgaa.fish +++ b/config/fish/functions/lgaa.fish @@ -1,4 +1,4 @@ -function lgaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LG_OPTIONS $argv +function lgaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgaad.fish b/config/fish/functions/lgaad.fish index ee2ab04..493954d 100644 --- a/config/fish/functions/lgaad.fish +++ b/config/fish/functions/lgaad.fish @@ -1,4 +1,4 @@ -function lgaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LG_OPTIONS $argv +function lgaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgaai.fish b/config/fish/functions/lgaai.fish index d0c7418..53e5cd6 100644 --- a/config/fish/functions/lgaai.fish +++ b/config/fish/functions/lgaai.fish @@ -1,4 +1,4 @@ -function lgaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LG_OPTIONS $argv +function lgaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgaaid.fish b/config/fish/functions/lgaaid.fish index f3112b4..413f7fc 100644 --- a/config/fish/functions/lgaaid.fish +++ b/config/fish/functions/lgaaid.fish @@ -1,4 +1,4 @@ -function lgaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LG_OPTIONS $argv +function lgaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgad.fish b/config/fish/functions/lgad.fish index 774db06..7b83594 100644 --- a/config/fish/functions/lgad.fish +++ b/config/fish/functions/lgad.fish @@ -1,4 +1,4 @@ -function lgad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LG_OPTIONS $argv +function lgad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgai.fish b/config/fish/functions/lgai.fish index 41a3478..abbe1fd 100644 --- a/config/fish/functions/lgai.fish +++ b/config/fish/functions/lgai.fish @@ -1,4 +1,4 @@ -function lgai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LG_OPTIONS $argv +function lgai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgaid.fish b/config/fish/functions/lgaid.fish index 1eb2777..e0dd347 100644 --- a/config/fish/functions/lgaid.fish +++ b/config/fish/functions/lgaid.fish @@ -1,4 +1,4 @@ -function lgaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LG_OPTIONS $argv +function lgaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgd.fish b/config/fish/functions/lgd.fish index 1a88bfa..6ec6772 100644 --- a/config/fish/functions/lgd.fish +++ b/config/fish/functions/lgd.fish @@ -1,4 +1,4 @@ -function lgd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LG_OPTIONS $argv +function lgd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgi.fish b/config/fish/functions/lgi.fish index f2e6541..f1fcde2 100644 --- a/config/fish/functions/lgi.fish +++ b/config/fish/functions/lgi.fish @@ -1,4 +1,4 @@ -function lgi --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgi eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LG_OPTIONS $argv +function lgi --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgi eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/lgid.fish b/config/fish/functions/lgid.fish index fd83d86..9cd0818 100644 --- a/config/fish/functions/lgid.fish +++ b/config/fish/functions/lgid.fish @@ -1,4 +1,4 @@ -function lgid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS' --description 'alias lgid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LG_OPTIONS $argv +function lgid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS $argv end diff --git a/config/fish/functions/li.fish b/config/fish/functions/li.fish index 5d2c087..b72a072 100644 --- a/config/fish/functions/li.fish +++ b/config/fish/functions/li.fish @@ -1,4 +1,4 @@ -function li --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS' --description 'alias li eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_L_OPTIONS $argv +function li --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS' --description 'alias li eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/lid.fish b/config/fish/functions/lid.fish index 6c439d1..9af6102 100644 --- a/config/fish/functions/lid.fish +++ b/config/fish/functions/lid.fish @@ -1,4 +1,4 @@ -function lid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS' --description 'alias lid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_L_OPTIONS $argv +function lid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS' --description 'alias lid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS $argv end diff --git a/config/fish/functions/ll.fish b/config/fish/functions/ll.fish index 79ddc13..80df346 100644 --- a/config/fish/functions/ll.fish +++ b/config/fish/functions/ll.fish @@ -1,4 +1,4 @@ -function ll --wraps=exa_git --description 'alias ll exa_git' - exa_git $argv +function ll --wraps=eza_git --description 'alias ll eza_git' + eza_git $argv end diff --git a/config/fish/functions/lla.fish b/config/fish/functions/lla.fish index 85f5f13..c21107e 100644 --- a/config/fish/functions/lla.fish +++ b/config/fish/functions/lla.fish @@ -1,4 +1,4 @@ -function lla --wraps='exa_git $EXA_LA_OPTIONS' --description 'alias lla exa_git $EXA_LA_OPTIONS' - exa_git $EXA_LA_OPTIONS $argv +function lla --wraps='eza_git $EZA_LA_OPTIONS' --description 'alias lla eza_git $EZA_LA_OPTIONS' + eza_git $EZA_LA_OPTIONS $argv end diff --git a/config/fish/functions/llaa.fish b/config/fish/functions/llaa.fish index fb364b7..f31e123 100644 --- a/config/fish/functions/llaa.fish +++ b/config/fish/functions/llaa.fish @@ -1,4 +1,4 @@ -function llaa --wraps='exa_git $EXA_LAA_OPTIONS' --description 'alias llaa exa_git $EXA_LAA_OPTIONS' - exa_git $EXA_LAA_OPTIONS $argv +function llaa --wraps='eza_git $EZA_LAA_OPTIONS' --description 'alias llaa eza_git $EZA_LAA_OPTIONS' + eza_git $EZA_LAA_OPTIONS $argv end diff --git a/config/fish/functions/llaad.fish b/config/fish/functions/llaad.fish index b28e0a2..48bc72d 100644 --- a/config/fish/functions/llaad.fish +++ b/config/fish/functions/llaad.fish @@ -1,4 +1,4 @@ -function llaad --wraps='exa_git $EXA_LAAD_OPTIONS' --description 'alias llaad exa_git $EXA_LAAD_OPTIONS' - exa_git $EXA_LAAD_OPTIONS $argv +function llaad --wraps='eza_git $EZA_LAAD_OPTIONS' --description 'alias llaad eza_git $EZA_LAAD_OPTIONS' + eza_git $EZA_LAAD_OPTIONS $argv end diff --git a/config/fish/functions/llaai.fish b/config/fish/functions/llaai.fish index d3500f9..4fe7d9d 100644 --- a/config/fish/functions/llaai.fish +++ b/config/fish/functions/llaai.fish @@ -1,4 +1,4 @@ -function llaai --wraps='exa_git $EXA_LAAI_OPTIONS' --description 'alias llaai exa_git $EXA_LAAI_OPTIONS' - exa_git $EXA_LAAI_OPTIONS $argv +function llaai --wraps='eza_git $EZA_LAAI_OPTIONS' --description 'alias llaai eza_git $EZA_LAAI_OPTIONS' + eza_git $EZA_LAAI_OPTIONS $argv end diff --git a/config/fish/functions/llaaid.fish b/config/fish/functions/llaaid.fish index 5324e09..d207f82 100644 --- a/config/fish/functions/llaaid.fish +++ b/config/fish/functions/llaaid.fish @@ -1,4 +1,4 @@ -function llaaid --wraps='exa_git $EXA_LAAID_OPTIONS' --description 'alias llaaid exa_git $EXA_LAAID_OPTIONS' - exa_git $EXA_LAAID_OPTIONS $argv +function llaaid --wraps='eza_git $EZA_LAAID_OPTIONS' --description 'alias llaaid eza_git $EZA_LAAID_OPTIONS' + eza_git $EZA_LAAID_OPTIONS $argv end diff --git a/config/fish/functions/llad.fish b/config/fish/functions/llad.fish index d264b6e..f263797 100644 --- a/config/fish/functions/llad.fish +++ b/config/fish/functions/llad.fish @@ -1,4 +1,4 @@ -function llad --wraps='exa_git $EXA_LAD_OPTIONS' --description 'alias llad exa_git $EXA_LAD_OPTIONS' - exa_git $EXA_LAD_OPTIONS $argv +function llad --wraps='eza_git $EZA_LAD_OPTIONS' --description 'alias llad eza_git $EZA_LAD_OPTIONS' + eza_git $EZA_LAD_OPTIONS $argv end diff --git a/config/fish/functions/llai.fish b/config/fish/functions/llai.fish index 8afda30..a2fd140 100644 --- a/config/fish/functions/llai.fish +++ b/config/fish/functions/llai.fish @@ -1,4 +1,4 @@ -function llai --wraps='exa_git $EXA_LAI_OPTIONS' --description 'alias llai exa_git $EXA_LAI_OPTIONS' - exa_git $EXA_LAI_OPTIONS $argv +function llai --wraps='eza_git $EZA_LAI_OPTIONS' --description 'alias llai eza_git $EZA_LAI_OPTIONS' + eza_git $EZA_LAI_OPTIONS $argv end diff --git a/config/fish/functions/llaid.fish b/config/fish/functions/llaid.fish index e3ba5a3..81539d7 100644 --- a/config/fish/functions/llaid.fish +++ b/config/fish/functions/llaid.fish @@ -1,4 +1,4 @@ -function llaid --wraps='exa_git $EXA_LAID_OPTIONS' --description 'alias llaid exa_git $EXA_LAID_OPTIONS' - exa_git $EXA_LAID_OPTIONS $argv +function llaid --wraps='eza_git $EZA_LAID_OPTIONS' --description 'alias llaid eza_git $EZA_LAID_OPTIONS' + eza_git $EZA_LAID_OPTIONS $argv end diff --git a/config/fish/functions/lld.fish b/config/fish/functions/lld.fish index 77048a3..ff35776 100644 --- a/config/fish/functions/lld.fish +++ b/config/fish/functions/lld.fish @@ -1,4 +1,4 @@ -function lld --wraps='exa_git $EXA_LD_OPTIONS' --description 'alias lld exa_git $EXA_LD_OPTIONS' - exa_git $EXA_LD_OPTIONS $argv +function lld --wraps='eza_git $EZA_LD_OPTIONS' --description 'alias lld eza_git $EZA_LD_OPTIONS' + eza_git $EZA_LD_OPTIONS $argv end diff --git a/config/fish/functions/lli.fish b/config/fish/functions/lli.fish index 5faea07..7ce50c8 100644 --- a/config/fish/functions/lli.fish +++ b/config/fish/functions/lli.fish @@ -1,4 +1,4 @@ -function lli --wraps='exa_git $EXA_LI_OPTIONS' --description 'alias lli exa_git $EXA_LI_OPTIONS' - exa_git $EXA_LI_OPTIONS $argv +function lli --wraps='eza_git $EZA_LI_OPTIONS' --description 'alias lli eza_git $EZA_LI_OPTIONS' + eza_git $EZA_LI_OPTIONS $argv end diff --git a/config/fish/functions/llid.fish b/config/fish/functions/llid.fish index 6e280af..c5ac800 100644 --- a/config/fish/functions/llid.fish +++ b/config/fish/functions/llid.fish @@ -1,4 +1,4 @@ -function llid --wraps='exa_git $EXA_LID_OPTIONS' --description 'alias llid exa_git $EXA_LID_OPTIONS' - exa_git $EXA_LID_OPTIONS $argv +function llid --wraps='eza_git $EZA_LID_OPTIONS' --description 'alias llid eza_git $EZA_LID_OPTIONS' + eza_git $EZA_LID_OPTIONS $argv end diff --git a/config/fish/functions/lo.fish b/config/fish/functions/lo.fish index c0d7708..fd14a97 100644 --- a/config/fish/functions/lo.fish +++ b/config/fish/functions/lo.fish @@ -1,4 +1,4 @@ -function lo --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS' --description 'alias lo eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LO_OPTIONS $argv +function lo --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS' --description 'alias lo eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loa.fish b/config/fish/functions/loa.fish index d345abe..2f04e5f 100644 --- a/config/fish/functions/loa.fish +++ b/config/fish/functions/loa.fish @@ -1,4 +1,4 @@ -function loa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS' --description 'alias loa eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LO_OPTIONS $argv +function loa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS' --description 'alias loa eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loaa.fish b/config/fish/functions/loaa.fish index e4b2a90..8aab5af 100644 --- a/config/fish/functions/loaa.fish +++ b/config/fish/functions/loaa.fish @@ -1,4 +1,4 @@ -function loaa --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaa eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAA_OPTIONS $EXA_LO_OPTIONS $argv +function loaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loaad.fish b/config/fish/functions/loaad.fish index 01d071d..c447ca4 100644 --- a/config/fish/functions/loaad.fish +++ b/config/fish/functions/loaad.fish @@ -1,4 +1,4 @@ -function loaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LO_OPTIONS $argv +function loaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loaai.fish b/config/fish/functions/loaai.fish index 6e7e41c..bc97184 100644 --- a/config/fish/functions/loaai.fish +++ b/config/fish/functions/loaai.fish @@ -1,4 +1,4 @@ -function loaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LO_OPTIONS $argv +function loaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loaaid.fish b/config/fish/functions/loaaid.fish index 8fe79be..140ae18 100644 --- a/config/fish/functions/loaaid.fish +++ b/config/fish/functions/loaaid.fish @@ -1,4 +1,4 @@ -function loaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LO_OPTIONS $argv +function loaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/load.fish b/config/fish/functions/load.fish index 8196545..a31d878 100644 --- a/config/fish/functions/load.fish +++ b/config/fish/functions/load.fish @@ -1,4 +1,4 @@ -function load --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS' --description 'alias load eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LO_OPTIONS $argv +function load --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS' --description 'alias load eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loai.fish b/config/fish/functions/loai.fish index 08d59f7..ee79219 100644 --- a/config/fish/functions/loai.fish +++ b/config/fish/functions/loai.fish @@ -1,4 +1,4 @@ -function loai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LO_OPTIONS $argv +function loai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loaid.fish b/config/fish/functions/loaid.fish index 21a3b6e..2e623b6 100644 --- a/config/fish/functions/loaid.fish +++ b/config/fish/functions/loaid.fish @@ -1,4 +1,4 @@ -function loaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LO_OPTIONS $argv +function loaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/lod.fish b/config/fish/functions/lod.fish index 9383220..7edecb8 100644 --- a/config/fish/functions/lod.fish +++ b/config/fish/functions/lod.fish @@ -1,4 +1,4 @@ -function lod --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS' --description 'alias lod eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LO_OPTIONS $argv +function lod --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS' --description 'alias lod eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loi.fish b/config/fish/functions/loi.fish index eb63c20..bd72cf4 100644 --- a/config/fish/functions/loi.fish +++ b/config/fish/functions/loi.fish @@ -1,4 +1,4 @@ -function loi --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS' --description 'alias loi eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LO_OPTIONS $argv +function loi --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loi eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/loid.fish b/config/fish/functions/loid.fish index 241ab9f..6c28297 100644 --- a/config/fish/functions/loid.fish +++ b/config/fish/functions/loid.fish @@ -1,4 +1,4 @@ -function loid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS' --description 'alias loid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LO_OPTIONS $argv +function loid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS $argv end diff --git a/config/fish/functions/lt.fish b/config/fish/functions/lt.fish index ec9acf8..4a26a9f 100644 --- a/config/fish/functions/lt.fish +++ b/config/fish/functions/lt.fish @@ -1,4 +1,4 @@ -function lt --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS' --description 'alias lt eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LT_OPTIONS $argv +function lt --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS' --description 'alias lt eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/lta.fish b/config/fish/functions/lta.fish index dbc56af..6fbcc3b 100644 --- a/config/fish/functions/lta.fish +++ b/config/fish/functions/lta.fish @@ -1,4 +1,4 @@ -function lta --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS' --description 'alias lta eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LA_OPTIONS $EXA_LT_OPTIONS $argv +function lta --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS' --description 'alias lta eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltaad.fish b/config/fish/functions/ltaad.fish index 6862bf9..2630c40 100644 --- a/config/fish/functions/ltaad.fish +++ b/config/fish/functions/ltaad.fish @@ -1,4 +1,4 @@ -function ltaad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaad eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAD_OPTIONS $EXA_LT_OPTIONS $argv +function ltaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltaai.fish b/config/fish/functions/ltaai.fish index 16690e0..40318e1 100644 --- a/config/fish/functions/ltaai.fish +++ b/config/fish/functions/ltaai.fish @@ -1,4 +1,4 @@ -function ltaai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaai eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAI_OPTIONS $EXA_LT_OPTIONS $argv +function ltaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltaaid.fish b/config/fish/functions/ltaaid.fish index ef075ef..10ae260 100644 --- a/config/fish/functions/ltaaid.fish +++ b/config/fish/functions/ltaaid.fish @@ -1,4 +1,4 @@ -function ltaaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaaid eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAAID_OPTIONS $EXA_LT_OPTIONS $argv +function ltaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltad.fish b/config/fish/functions/ltad.fish index dad8e23..a645014 100644 --- a/config/fish/functions/ltad.fish +++ b/config/fish/functions/ltad.fish @@ -1,4 +1,4 @@ -function ltad --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltad eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAD_OPTIONS $EXA_LT_OPTIONS $argv +function ltad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltai.fish b/config/fish/functions/ltai.fish index b1820c3..1b546b6 100644 --- a/config/fish/functions/ltai.fish +++ b/config/fish/functions/ltai.fish @@ -1,4 +1,4 @@ -function ltai --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltai eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAI_OPTIONS $EXA_LT_OPTIONS $argv +function ltai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltaid.fish b/config/fish/functions/ltaid.fish index 757dcc4..b6c6bc2 100644 --- a/config/fish/functions/ltaid.fish +++ b/config/fish/functions/ltaid.fish @@ -1,4 +1,4 @@ -function ltaid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltaid eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LAID_OPTIONS $EXA_LT_OPTIONS $argv +function ltaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltd.fish b/config/fish/functions/ltd.fish index f29fd06..84875b0 100644 --- a/config/fish/functions/ltd.fish +++ b/config/fish/functions/ltd.fish @@ -1,4 +1,4 @@ -function ltd --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltd eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LD_OPTIONS $EXA_LT_OPTIONS $argv +function ltd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/lti.fish b/config/fish/functions/lti.fish index cf04557..06ecfb3 100644 --- a/config/fish/functions/lti.fish +++ b/config/fish/functions/lti.fish @@ -1,4 +1,4 @@ -function lti --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS' --description 'alias lti eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LI_OPTIONS $EXA_LT_OPTIONS $argv +function lti --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS' --description 'alias lti eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS $argv end diff --git a/config/fish/functions/ltid.fish b/config/fish/functions/ltid.fish index 94f64d0..8b9182e 100644 --- a/config/fish/functions/ltid.fish +++ b/config/fish/functions/ltid.fish @@ -1,4 +1,4 @@ -function ltid --wraps='eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS' --description 'alias ltid eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS' - eza $EXA_STANDARD_OPTIONS $EXA_LID_OPTIONS $EXA_LT_OPTIONS $argv +function ltid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS' + eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS $argv end