summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_bpython
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_bpython')
-rw-r--r--Completion/Unix/Command/_bpython46
1 files changed, 46 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_bpython b/Completion/Unix/Command/_bpython
new file mode 100644
index 000000000..e83547853
--- /dev/null
+++ b/Completion/Unix/Command/_bpython
@@ -0,0 +1,46 @@
+#compdef bpython bpython-gtk bpython-urwid
+
+local -a all_opts urwid_opts gtk_opts
+
+all_opts=(
+ '--config[configuration file]:config file:_files'
+ '-h --help[show help message]'
+ '(-i --interactive)'{-i,--interactive}'[drop to bpython after running a file]'
+ '(-q --quiet)'{-q,--quiet}'[do not flush the output to stdout]'
+ '(-V --version)'{-V,--version}'[print version]'
+ '1:script:_files -g "*.u#py(-.)"'
+ '*:arguments:'
+)
+
+urwid_opts=(
+ '(-r --reactor)'{-r,--reactor}'[use Twisted reactor instead of the event loop]:reactor:'
+ '--help-reactors[display list of available Twisted reactors]'
+ '(-p --plugin)'{-p,--plugin}'[exectue a twistd plugin]:plugin:'
+ '(-s --server)'{-s,--server}'[run an eval server on the given port]:port:'
+)
+
+gtk_opts=(
+ '--socket-id[embed bpython]:socket id:'
+)
+
+case "$service" in
+ bpython)
+ _arguments \
+ "$all_opts[@]" && return 0
+ ;;
+
+ bpython-urwid)
+ _arguments \
+ "$all_opts[@]" \
+ "$urwid_opts[@]" && return 0
+ ;;
+
+ bpython-gtk)
+ _arguments \
+ "$all_opts[@]" \
+ "$gtk_opts[@]" && return 0
+ ;;
+esac
+
+
+# vim:autoindent expandtab shiftwidth=2 tabstop=2 softtabstop=2 filetype=zsh