Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG+1] Added zsh completion for Scrapy command-line tool and updated bash completion #934

Merged
merged 6 commits into from
Jul 30, 2015
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions debian/scrapy.install
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
extras/scrapy_bash_completion etc/bash_completion.d/
extras/scrapy_zsh_completion /usr/share/zsh/vendor-completions/_scrapy
25 changes: 25 additions & 0 deletions scrapy_zsh_completion
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#compdef scrapy

# zsh completion for the Scrapy command-line tool

_scrapy() {
local curcontext="$curcontext" cmd spiders
typeset -A opt_args
cmd=$words[2]

case "$cmd" in
crawl|edit|check)
spiders=$(scrapy list 2>/dev/null) || spiders=""
if [[ -n "$spiders" ]]; then
compadd `echo $spiders`
fi
;;
*)
if [[ CURRENT -eq 2 ]]; then
_arguments '*: :(check crawl deploy edit fetch genspider list parse runspider server settings shell startproject version view)'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are removing 'scrapy deploy' command, I think it shouldn't be listed here

fi
;;
esac
}

_scrapy