mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Remove completion files for ls
aliases; just use function --wraps
This commit is contained in:
parent
5a53ead240
commit
42c11f1b6c
|
@ -1 +0,0 @@
|
||||||
complete -c la -w ls
|
|
|
@ -1 +0,0 @@
|
||||||
complete -c ll -w ls
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user