##// END OF EJS Templates
bash completion: ipython <tab> shows only subcmds...
Paul Ivanov -
Show More
@@ -1,113 +1,113 b''
1 # load with: . ipython-completion.bash
1 # load with: . ipython-completion.bash
2
2
3 if [[ -n ${ZSH_VERSION-} ]]; then
3 if [[ -n ${ZSH_VERSION-} ]]; then
4 autoload -Uz bashcompinit && bashcompinit
4 autoload -Uz bashcompinit && bashcompinit
5 fi
5 fi
6
6
7 _ipython_get_flags()
7 _ipython_get_flags()
8 {
8 {
9 local url=$1
9 local url=$1
10 local var=$2
10 local var=$2
11 local dash=$3
11 local dash=$3
12 if [[ "$url $var" == $__ipython_complete_last ]]; then
12 if [[ "$url $var" == $__ipython_complete_last ]]; then
13 opts=$__ipython_complete_last_res
13 opts=$__ipython_complete_last_res
14 return
14 return
15 fi
15 fi
16 # pylab and profile don't need the = and the
16 # pylab and profile don't need the = and the
17 # version without simplifies the special cased completion
17 # version without simplifies the special cased completion
18 opts=$(ipython ${url} --help-all | grep -E "^-{1,2}[^-]" | sed -e "s/<.*//" -e "s/[^=]$/& /" -e "s/^--pylab=$//" -e "s/^--profile=$/--profile /")
18 opts=$(ipython ${url} --help-all | grep -E "^-{1,2}[^-]" | sed -e "s/<.*//" -e "s/[^=]$/& /" -e "s/^--pylab=$//" -e "s/^--profile=$/--profile /")
19 __ipython_complete_last="$url $var"
19 __ipython_complete_last="$url $var"
20 __ipython_complete_last_res="$opts"
20 __ipython_complete_last_res="$opts"
21 }
21 }
22
22
23 _ipython()
23 _ipython()
24 {
24 {
25 local cur=${COMP_WORDS[COMP_CWORD]}
25 local cur=${COMP_WORDS[COMP_CWORD]}
26 local prev=${COMP_WORDS[COMP_CWORD - 1]}
26 local prev=${COMP_WORDS[COMP_CWORD - 1]}
27 local subcommands="notebook qtconsole console kernel profile locate history nbconvert"
27 local subcommands="notebook qtconsole console kernel profile locate history nbconvert"
28 local opts=""
28 local opts=""
29 if [ -z "$__ipython_complete_baseopts" ]; then
29 if [ -z "$__ipython_complete_baseopts" ]; then
30 _ipython_get_flags baseopts
30 _ipython_get_flags baseopts
31 __ipython_complete_baseopts="${opts}"
31 __ipython_complete_baseopts="${opts}"
32 fi
32 fi
33 local baseopts="$__ipython_complete_baseopts"
33 local baseopts="$__ipython_complete_baseopts"
34 local mode=""
34 local mode=""
35 for i in "${COMP_WORDS[@]}"; do
35 for i in "${COMP_WORDS[@]}"; do
36 [ "$cur" = "$i" ] && break
36 [ "$cur" = "$i" ] && break
37 if [[ ${subcommands} == *${i}* ]]; then
37 if [[ ${subcommands} == *${i}* ]]; then
38 mode="$i"
38 mode="$i"
39 break
39 break
40 elif [[ ${i} == "--"* ]]; then
40 elif [[ ${i} == "--"* ]]; then
41 mode="nosubcommand"
41 mode="nosubcommand"
42 break
42 break
43 fi
43 fi
44 done
44 done
45
45
46
46
47 if [[ ${cur} == -* ]]; then
47 if [[ ${cur} == -* ]]; then
48 case $mode in
48 case $mode in
49 "notebook" | "qtconsole" | "console" | "kernel")
49 "notebook" | "qtconsole" | "console" | "kernel")
50 _ipython_get_flags $mode
50 _ipython_get_flags $mode
51 opts=$"${opts} ${baseopts}"
51 opts=$"${opts} ${baseopts}"
52 ;;
52 ;;
53 "locate" | "history" | "profile")
53 "locate" | "history" | "profile")
54 _ipython_get_flags $mode
54 _ipython_get_flags $mode
55 opts=$"${opts}"
55 opts=$"${opts}"
56 ;;
56 ;;
57 *)
57 *)
58 opts=$baseopts
58 opts=$baseopts
59 esac
59 esac
60 # don't drop the trailing space
60 # don't drop the trailing space
61 local IFS=$'\t\n'
61 local IFS=$'\t\n'
62 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
62 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
63 return 0
63 return 0
64 elif [[ $mode == "profile" ]]; then
64 elif [[ $mode == "profile" ]]; then
65 opts="list create locate"
65 opts="list create locate"
66 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
66 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
67 elif [[ $mode == "history" ]]; then
67 elif [[ $mode == "history" ]]; then
68 opts="trim"
68 opts="trim"
69 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
69 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
70 elif [[ $mode == "locate" ]]; then
70 elif [[ $mode == "locate" ]]; then
71 opts="profile"
71 opts="profile"
72 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
72 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
73 elif [[ ${prev} == "--pylab"* ]] || [[ ${prev} == "--gui"* ]]; then
73 elif [[ ${prev} == "--pylab"* ]] || [[ ${prev} == "--gui"* ]]; then
74 if [ -z "$__ipython_complete_pylab" ]; then
74 if [ -z "$__ipython_complete_pylab" ]; then
75 __ipython_complete_pylab=`cat <<EOF | python -
75 __ipython_complete_pylab=`cat <<EOF | python -
76 try:
76 try:
77 import IPython.core.shellapp as mod;
77 import IPython.core.shellapp as mod;
78 for k in mod.InteractiveShellApp.pylab.values:
78 for k in mod.InteractiveShellApp.pylab.values:
79 print "%s " % k
79 print "%s " % k
80 except:
80 except:
81 pass
81 pass
82 EOF
82 EOF
83 `
83 `
84 fi
84 fi
85 local IFS=$'\t\n'
85 local IFS=$'\t\n'
86 COMPREPLY=( $(compgen -W "${__ipython_complete_pylab}" -- ${cur}) )
86 COMPREPLY=( $(compgen -W "${__ipython_complete_pylab}" -- ${cur}) )
87 elif [[ ${prev} == "--profile"* ]]; then
87 elif [[ ${prev} == "--profile"* ]]; then
88 if [ -z "$__ipython_complete_profiles" ]; then
88 if [ -z "$__ipython_complete_profiles" ]; then
89 __ipython_complete_profiles=`cat <<EOF | python -
89 __ipython_complete_profiles=`cat <<EOF | python -
90 try:
90 try:
91 import IPython.core.profileapp
91 import IPython.core.profileapp
92 for k in IPython.core.profileapp.list_bundled_profiles():
92 for k in IPython.core.profileapp.list_bundled_profiles():
93 print "%s " % k
93 print "%s " % k
94 p = IPython.core.profileapp.ProfileList()
94 p = IPython.core.profileapp.ProfileList()
95 for k in IPython.core.profileapp.list_profiles_in(p.ipython_dir):
95 for k in IPython.core.profileapp.list_profiles_in(p.ipython_dir):
96 print "%s " % k
96 print "%s " % k
97 except:
97 except:
98 pass
98 pass
99 EOF
99 EOF
100 `
100 `
101 fi
101 fi
102 local IFS=$'\t\n'
102 local IFS=$'\t\n'
103 COMPREPLY=( $(compgen -W "${__ipython_complete_profiles}" -- ${cur}) )
103 COMPREPLY=( $(compgen -W "${__ipython_complete_profiles}" -- ${cur}) )
104 else
104 else
105 if [ -z "$mode" ]; then
105 if [ "$COMP_CWORD" == 1 ]; then
106 COMPREPLY=( $(compgen -f -W "${subcommands}" -- ${cur}) )
106 COMPREPLY=( $(compgen -W "${subcommands}" -- ${cur}) )
107 else
107 else
108 COMPREPLY=( $(compgen -f -- ${cur}) )
108 COMPREPLY=( $(compgen -f -- ${cur}) )
109 fi
109 fi
110 fi
110 fi
111
111
112 }
112 }
113 complete -o default -o nospace -F _ipython ipython
113 complete -o default -o nospace -F _ipython ipython
General Comments 0
You need to be logged in to leave comments. Login now