mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 06:15:54 +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
|
||||
#
|
||||
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
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#
|
||||
# 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
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user