mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Fix load of various plugins: fastfile, keychain, sfffe, stack
This commit is contained in:
parent
68d51bd7d8
commit
2d6965f856
4 changed files with 10 additions and 11 deletions
|
|
@ -6,9 +6,9 @@
|
|||
# REQUIRE: ack
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
if [ ! -x $(which ack) ]; then
|
||||
echo \'ack\' is not installed!
|
||||
exit -1
|
||||
if (( ! $+commands[ack] )); then
|
||||
echo "'ack' is not installed!"
|
||||
return
|
||||
fi
|
||||
|
||||
ajs() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue