Remove completion files for ls aliases; just use function --wraps

This commit is contained in:
Collin Styles 2021-04-14 22:38:36 -07:00 committed by Fabian Homborg
parent 5a53ead240
commit 42c11f1b6c
4 changed files with 2 additions and 4 deletions

View File

@ -1 +0,0 @@
complete -c la -w ls

View File

@ -1 +0,0 @@
complete -c ll -w ls

View File

@ -1,6 +1,6 @@
# #
# These are very common and useful # These are very common and useful
# #
function la --description "List contents of directory, including hidden files in directory using long format" function la --wraps ls --description "List contents of directory, including hidden files in directory using long format"
ls -lah $argv ls -lah $argv
end end

View File

@ -1,6 +1,6 @@
# #
# These are very common and useful # These are very common and useful
# #
function ll --description "List contents of directory using long format" function ll --wraps ls --description "List contents of directory using long format"
ls -lh $argv ls -lh $argv
end end