/
githubmirror
/
gulp
Обзор
Документация
Войти
/
githubmirror
/
gulp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.7
completion/zsh
25 строк
594 B
Contra
add --tasks-simple flag and update autocompletion scripts to use that, closes #474
25 май 2014, 05:00
25 май 2014, 05:00
6baf8bb
Код
Авторство
О чём код?
#!/bin/zsh # Borrowed from grunt-cli # http://gruntjs.com/ # # Copyright (c) 2012 Tyler Kellen, contributors # Licensed under the MIT license. # https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT # Usage: # # To enable zsh <tab> completion for grunt, add the following line (minus the # leading #, which is the zsh comment character) to your ~/.zshrc file: # # eval "$(gulp --completion=zsh)" # Enable zsh autocompletion. function _gulp_completion() { # Grab tasks compls=$(gulp --tasks-simple) completions=(${=compls}) compadd -- $completions } compdef _gulp_completion gulp