diff options
Diffstat (limited to 'fish/functions/ls.fish')
-rw-r--r-- | fish/functions/ls.fish | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fish/functions/ls.fish b/fish/functions/ls.fish deleted file mode 100644 index 94fa076..0000000 --- a/fish/functions/ls.fish +++ /dev/null @@ -1,10 +0,0 @@ -# ls but do it without colour - -function ls --description "List contents of directory" - # make ls show */=>@| indicators - isatty stdout - and set -a opt -F - - # command $__fish_ls_command $__fish_ls_color_opt $opt $argv - command ls $opt $argv -end |