File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -742,14 +742,14 @@ _help-plugins()
742
742
printf ' %s' ' please wait, building help...'
743
743
typeset grouplist=$( mktemp -t grouplist.XXXXXX)
744
744
typeset func
745
- for func in $( typeset_functions )
745
+ for func in $( _typeset_functions )
746
746
do
747
747
typeset group=" $( typeset -f $func | metafor group) "
748
748
if [ -z " $group " ]; then
749
749
group=' misc'
750
750
fi
751
751
typeset about=" $( typeset -f $func | metafor about) "
752
- letterpress " $about " $func >> $grouplist .$group
752
+ _letterpress " $about " $func >> $grouplist .$group
753
753
echo $grouplist .$group >> $grouplist
754
754
done
755
755
# clear progress message
@@ -788,7 +788,7 @@ all_groups ()
788
788
789
789
typeset func
790
790
typeset file=$( mktemp -t composure.XXXX)
791
- for func in $( typeset_functions )
791
+ for func in $( _typeset_functions )
792
792
do
793
793
typeset -f $func | metafor group >> $file
794
794
done
Original file line number Diff line number Diff line change @@ -69,6 +69,11 @@ function local_setup {
69
69
assert_line -n 0 " "
70
70
}
71
71
72
+ @test " helpers: bash-it help plugins" {
73
+ run bash-it help plugins
74
+ assert_line -n 1 " base:"
75
+ }
76
+
72
77
@test " helpers: bash-it help list aliases without any aliases enabled" {
73
78
run _help-list-aliases " $BASH_IT /aliases/available/ag.aliases.bash"
74
79
assert_line -n 0 " ag:"
You can’t perform that action at this time.
0 commit comments