From a62114c91f2070c8c8453d117f3d81dc113e41ff Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 25 Mar 2024 16:43:09 +0530 Subject: dotfile update --- zsh/oh-my-zsh/plugins/yii2/README.md | 7 ------- zsh/oh-my-zsh/plugins/yii2/yii2.plugin.zsh | 29 ----------------------------- 2 files changed, 36 deletions(-) delete mode 100644 zsh/oh-my-zsh/plugins/yii2/README.md delete mode 100644 zsh/oh-my-zsh/plugins/yii2/yii2.plugin.zsh (limited to 'zsh/oh-my-zsh/plugins/yii2') diff --git a/zsh/oh-my-zsh/plugins/yii2/README.md b/zsh/oh-my-zsh/plugins/yii2/README.md deleted file mode 100644 index 345b66e..0000000 --- a/zsh/oh-my-zsh/plugins/yii2/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Yii2 autocomplete plugin - -* Adds autocomplete commands and subcommands for yii. - -## Requirements - -Autocomplete works from directory where your `yii` file contains. diff --git a/zsh/oh-my-zsh/plugins/yii2/yii2.plugin.zsh b/zsh/oh-my-zsh/plugins/yii2/yii2.plugin.zsh deleted file mode 100644 index 713f2ef..0000000 --- a/zsh/oh-my-zsh/plugins/yii2/yii2.plugin.zsh +++ /dev/null @@ -1,29 +0,0 @@ -# Yii2 command completion - -_yii2_format_command () { - awk '/^- [a-z]+/ { sub(":", "", $2); print $2 }' -} - -_yii2 () { - if [ -f ./yii ]; then - _arguments \ - '1: :->command'\ - '*: :->params' - - case $state in - command) - - local -a commands - local -a name - - if [[ $words[2] == *\/ ]]; then - name=$words[2] - fi - - commands=(${(f)"$(./yii help $name --color=0 | _yii2_format_command)"}) - compadd -Q -S '' -a -- commands - esac - fi -} - -compdef _yii2 yii -- cgit v1.2.3-59-g8ed1b