skip listing custom subcommand folder in usage
1 file changed, 3 insertions(+), 0 deletions(-)
changed files
M functions/__scriptura_list.fish → functions/__scriptura_list.fish
@@ -1,5 +1,8 @@ function __scriptura_list --description 'List scripts and directories' --argument-names from for dir in $(path filter --type dir $from/*) + if test "$dir" = "$from/scriptura" + continue + end printf "%-12s -- %-64s\n" "$(path basename $dir) ..." $(__scriptura_help $dir) end for file in $(path filter --type file --perm exec $from/*)