You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
593 B
25 lines
593 B
#!/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 gulp, 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
|
|
|