Line completion with custom commands - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:19:21Zhttp://stackoverflow.com/feeds/question/427472http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/427472/line-completion-with-custom-commands1Line completion with custom commandspistacchio2009-01-09T09:11:41Z2009-01-09T13:26:43Z
<p>Hi,
my Python program can be launched with a range of different options (or subcommands) like:</p>
<pre><code>$ myProgram doSomething
$ myProgram doSomethingElse
$ myProgram nowDoSomethingDifferent
</code></pre>
<p>I want it to use auto-completion with so that if i type "myProgram d" it returns "myProgram doSomething" and if i type "myProgram n" it renders "myProgram nowDoSomethingDifferent". This is similar to the average use of the module <em>rlcompleter</em>, but it does not pick possible completion options from the filesystem (or from history) but from a custom set of strings (that correspond to the available options for my program)</p>
<p>Any idea on how to implement this?</p>
<p>I'm aware of the variable PYTHONSTARTUP (that should point to a file I don't know how to write).</p>
<p>As a working example, django-admin (from the django package) has the same exact feature i'm looking for</p>
http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427490#4274902Answer by jetxee for Line completion with custom commandsjetxee2009-01-09T09:21:41Z2009-01-09T09:28:50Z<p>As well as I know, PYTHONSTARTUP is for commands to be executed when the interpreter starts up <a href="http://www.python.org/doc/1.5.2p2/tut/node4.html" rel="nofollow">[1]</a>. <code>rlcompleter</code> is for autocompletion <em>inside</em> your script, if it is using <code>readline</code> library. Something like this:</p>
<pre><code>$ ./myscript.py
My Script version 3.1415.
Enter your commands:
myscript> B<TAB>egin
myscript> E<TAB>nd
</code></pre>
<p>In your example you want to complete on the <em>shell</em> command line. This autocompletion is a shell feature (either <code>bash</code> or <code>zsh</code>, whatever you use). See, for example, <a href="http://www.debian-administration.org/articles/316" rel="nofollow">an introduction to bash autocompletion</a> (also <a href="http://www.debian-administration.org/articles/317" rel="nofollow">part 2</a>). For <code>zsh</code> see, for example <a href="http://www.ibm.com/developerworks/aix/library/au-satzsh.html#N102BF" rel="nofollow">this guide</a>.</p>
http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427498#4274982Answer by Anders Westrup for Line completion with custom commandsAnders Westrup2009-01-09T09:24:07Z2009-01-09T09:24:07Z<p>If I understand correctly you want line completion on the command line before your python script starts. Then you shouldn't search for a python solution, but look at the shell features.</p>
<p>If you are using bash you can look at /etc/bash_completion, and at least on debian/ubuntu you should create a file in /etc/bash_completion.d/ that specifies the completions for your program.</p>
http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427509#4275090Answer by unbeknown for Line completion with custom commandsunbeknown2009-01-09T09:28:28Z2009-01-09T09:28:28Z<p>If you want your program to select an command line option even though you only used an abbreviated form of this option you should have a look at the <a href="http://docs.python.org/library/optparse.html" rel="nofollow">optparse module</a> in the standard library.</p>
http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427608#4276083Answer by rq for Line completion with custom commandsrq2009-01-09T10:20:23Z2009-01-09T10:20:23Z<p>Create a file "myprog-completion.bash" and source it in your .bashrc file. Something like this to get you started...</p>
<pre><code>_myProgram()
{
cur=${COMP_WORDS[COMP_CWORD]}
case "${cur}" in
d*) use="doSomething" ;;
n*) use="nowDoSomethingElse" ;;
esac
COMPREPLY=( $( compgen -W "$use" -- $cur ) )
}
complete -o default -o nospace -F _myProgram myProgram
</code></pre>
http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427910#4279102Answer by Peter Hoffmann for Line completion with custom commandsPeter Hoffmann2009-01-09T12:36:32Z2009-01-09T12:36:32Z<p>There is the module <strong><a href="http://furius.ca/optcomplete/" rel="nofollow">optcomplete</a></strong> which allows you to write the completion for bash autocompletion in your python program. This is very useful in combination with optparse. You only define your arguments once, add the following to your .bashrc</p>
<pre><code>complete -F _optcomplete <program>
</code></pre>
<p>and all your options will be autocompleted.</p>