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