split helpers into files
1 file changed, 7 insertions(+), 0 deletions(-)
changed files
A functions/__scriptura_which.fish
@@ -0,0 +1,7 @@ +function __scriptura_which --argument-names script_path + if path is --type file --perm exec $script_path + echo $script_path + else + return 1 + end +end