From 772e4387b5dea76a1c37da92334cc9d8d26984d2 2014-06-19 01:33:48 From: Paul Ivanov Date: 2014-06-19 01:33:48 Subject: [PATCH] added install-nbextension and trust completions --- diff --git a/examples/IPython Kernel/ipython-completion.bash b/examples/IPython Kernel/ipython-completion.bash index 3790906..c70d96d 100644 --- a/examples/IPython Kernel/ipython-completion.bash +++ b/examples/IPython Kernel/ipython-completion.bash @@ -24,7 +24,7 @@ _ipython() { local cur=${COMP_WORDS[COMP_CWORD]} local prev=${COMP_WORDS[COMP_CWORD - 1]} - local subcommands="notebook qtconsole console kernel profile locate history nbconvert kernelspec " + local subcommands="notebook qtconsole console kernel profile locate history nbconvert kernelspec install-nbextension trust " local opts="help" if [ -z "$__ipython_complete_baseopts" ]; then _ipython_get_flags baseopts @@ -50,7 +50,7 @@ _ipython() _ipython_get_flags $mode opts=$"${opts} ${baseopts}" ;; - "locate" | "profile") + "locate" | "profile" | "install-nbextension" | "trust") _ipython_get_flags $mode ;; "history" | "kernelspec")