summaryrefslogtreecommitdiff
path: root/plugins/lando/lando.plugin.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/lando/lando.plugin.zsh')
-rw-r--r--plugins/lando/lando.plugin.zsh35
1 files changed, 23 insertions, 12 deletions
diff --git a/plugins/lando/lando.plugin.zsh b/plugins/lando/lando.plugin.zsh
index af53e7e5a..ee796d212 100644
--- a/plugins/lando/lando.plugin.zsh
+++ b/plugins/lando/lando.plugin.zsh
@@ -1,25 +1,36 @@
# Settings
: ${LANDO_ZSH_SITES_DIRECTORY:="$HOME/Sites"}
: ${LANDO_ZSH_CONFIG_FILE:=.lando.yml}
+: ${LANDO_ZSH_WRAPPED_COMMANDS:="
+ artisan
+ composer
+ drush
+ gulp
+ npm
+ php
+ wp
+ yarn
+"}
# Enable multiple commands with lando.
-function artisan \
- composer \
- drush \
- gulp \
- npm \
- php \
- wp \
- yarn {
- if checkForLandoFile; then
- lando "$0" "$@"
+function ${=LANDO_ZSH_WRAPPED_COMMANDS} {
+ # If the lando task is available in `lando --help`, then it means:
+ #
+ # 1. `lando` is in a project with a `.lando.yml` file.
+ # 2. The lando task is available for lando, based on the .lando.yml config file.
+ #
+ # This has a penalty of about 250ms, so we still want to check if the lando file
+ # exists before, which is the fast path. If it exists, checking help output is
+ # still faster than running the command and failing.
+ if _lando_file_exists && lando --help 2>&1 | command grep -Eq "^ +lando $0 "; then
+ command lando "$0" "$@"
else
command "$0" "$@"
fi
}
# Check for the file in the current and parent directories.
-checkForLandoFile() {
+_lando_file_exists() {
# Only bother checking for lando within the Sites directory.
if [[ "$PWD/" != "$LANDO_ZSH_SITES_DIRECTORY"/* ]]; then
# Not within $LANDO_ZSH_SITES_DIRECTORY
@@ -38,4 +49,4 @@ checkForLandoFile() {
# Could not find $LANDO_ZSH_CONFIG_FILE in the current directory
# or in any of its parents up to $LANDO_ZSH_SITES_DIRECTORY.
return 1
-} \ No newline at end of file
+}