all repos — scriptura @ eea12c75e45b3ad7b76dfb89861fea82cad01c04

a corner in $HOME for your scripts

split helpers into files

Alan Pearce
commit

eea12c75e45b3ad7b76dfb89861fea82cad01c04

parent

fd61ac887fd4160094757c843ca55cbe1a49f552

1 file changed, 8 insertions(+), 0 deletions(-)

changed files
A functions/__scriptura_list.fish
@@ -0,0 +1,8 @@
+function __scriptura_list --argument-names from + for dir in $(path filter --type dir $from/*) + printf "%-12s -- %-64s\n" "$(path basename $dir) ..." $(__scriptura_help $dir) + end + for file in $(path filter --type file --perm exec $from/*) + printf "%-12s -- %-64s\n" $(path basename $file) $(__scriptura_help $file) + end +end