summaryrefslogtreecommitdiffstats
path: root/fish/functions/pythontree.fish
blob: 359829af1b8c6e8cd05fd64befda1419477f0a47 (plain) (blame)
1
2
3
4
# Defined in - @ line 1
function pythontree --description 'alias pythontree tree -I "*.pyc" -I "__pycache__" |less'
	tree -I "*.pyc" -I "__pycache__" |less $argv;
end