diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/ng | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/ng')
-rw-r--r-- | zsh/oh-my-zsh/plugins/ng/README.md | 10 | ||||
-rw-r--r-- | zsh/oh-my-zsh/plugins/ng/_ng | 56 |
2 files changed, 0 insertions, 66 deletions
diff --git a/zsh/oh-my-zsh/plugins/ng/README.md b/zsh/oh-my-zsh/plugins/ng/README.md deleted file mode 100644 index 29ac15a..0000000 --- a/zsh/oh-my-zsh/plugins/ng/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# ng plugin - -This plugin adds autocompletion support for [Angular's CLI](https://github.com/angular/angular-cli) -(named `ng`). - -To use it, add `ng` to the plugins array of your zshrc file: - -```zsh -plugins=(... ng) -``` diff --git a/zsh/oh-my-zsh/plugins/ng/_ng b/zsh/oh-my-zsh/plugins/ng/_ng deleted file mode 100644 index 9c96cf7..0000000 --- a/zsh/oh-my-zsh/plugins/ng/_ng +++ /dev/null @@ -1,56 +0,0 @@ -#compdef ng - -setopt localoptions extendedglob - -if (( CURRENT == 2 )); then - local -a cmds alias - # Sample output (ng help): - # Available Commands: - # add Adds support for an external library to your project. - for line in ${(@f)"$(ng help 2>/dev/null | sed -n '/^ /p')"}; do - if [[ "$line" =~ '^ ([^ ]+) \(([^)]+)\) (.*)$' ]]; then - alias=(${match[1]} ${(s:, :)match[2]}) - cmds+=(${^alias}:"${match[3]//:/}") - elif [[ "$line" =~ '^ ([^ ]+) (.*)$' ]]; then - cmds+=("${match[1]}:${match[2]//:/}") - fi - done - _describe commands cmds && return 0 -elif (( CURRENT == 3 )); then - local -a flags args - local section description - # Sample output (ng build --help): - # --configuration (-c) - # One or more named builder configurations as a comma-separated list as specified in the "configurations" section of angular.json. - # The builder uses the named configurations to run the given target. - # For more information, see https://angular.io/guide/workspace-config#alternate-build-configurations. - # Prefix --flags with literal \0, and split on that to get each flag section - for section in ${(s:\0:)"$(ng ${words[2]} --help 2>/dev/null | sed -e '1,/^options/ d;s/^ --/\\0--/')"}; do - # Split by newline and discard extra description lines (lines > 2) - for args description in ${${(@f)section}[1,2]}; do - args=(${(s: :)${${args%% #}## #}//[(),]/}) - description=${${description%% #}## #} - flags+=(${^args}":$description") - done - done - _describe flags flags - - case "$words[2]" in - b|build|l|lint|t|test) - # Sample output (ng config projects): - # { - # "angular-project-1": { - # ... - # }, - # "angular-project-2": { - # ... - # } - # } - # In abscence of a proper JSON parser, just grab the lines with - # a 2-space indentation and only the stuff inside quotes - local -a projects - projects=(${(@f)"$(ng config projects 2>/dev/null | sed -n 's/^ "\([^"]\+\)".*$/\1/p')"}) - _describe projects projects - ;; - esac -fi |