From a7d7c77b7b635841198a732d76135d6097dd7aef Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sat, 26 Jul 2014 21:57:39 +0200 Subject: 32816: Add completion for bpython and variants --- ChangeLog | 3 +++ Completion/Unix/Command/_bpython | 46 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 Completion/Unix/Command/_bpython diff --git a/ChangeLog b/ChangeLog index f71be456e..2f1d6e135 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ * Omari Norman: 32817: Add completion for moosic. + * Sebastian Ramacher: 32816: Add completion for bpython and + variants. + 2014-07-24 Barton E. Schaefer * 32853: configure.ac, Src/mem.c, Src/zsh_system.h: redefine 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 -- cgit 1.4.1