diff options
Diffstat (limited to '')
-rw-r--r-- | fish/functions/pythontree.fish | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fish/functions/pythontree.fish b/fish/functions/pythontree.fish new file mode 100644 index 0000000..359829a --- /dev/null +++ b/fish/functions/pythontree.fish @@ -0,0 +1,4 @@ +# Defined in - @ line 1 +function pythontree --description 'alias pythontree tree -I "*.pyc" -I "__pycache__" |less' + tree -I "*.pyc" -I "__pycache__" |less $argv; +end |