Blame view
repos/zsh-users/antigen/tests/bundles.t
431 Bytes
|
ddbb98497
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
Add multiple bundles.
$ echo "$PLUGIN_DIR
$PLUGIN_DIR2" | antigen-bundles &> /dev/null
Check if they are both applied.
$ hehe
hehe
$ hehe2
hehe2
Clean it all up.
$ export _ANTIGEN_BUNDLE_RECORD=""
$ antigen-cleanup --force &> /dev/null
Specify with indentation.
$ echo " $PLUGIN_DIR
$PLUGIN_DIR2" | antigen-bundles &> /dev/null
Again, check if they are both applied.
$ hehe
hehe
$ hehe2
hehe2
|