summary refs log tree commit diff
path: root/fish/functions/ls.fish
blob: 94fa0766e3c7d27df8d434cb3150fb2cb2ffb18e (plain)
1
2
3
4
5
6
7
8
9
10
# 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