1
vote
4answers
99 views
How would one implement bash-like tab completion?
I'm trying to determine how the system prints characters to standard input -- that is, how it prints characters which the user can delete and which are considered input if the user …
0
votes
1answer
49 views
How to do brace expansion tab-completion, for filenames in vim?
In vim (and bash), you can specify alternatives in filenames, eg:
:arga project/html/{index,sitemap}.html
This expands to "project/html/index.html" and "project/html/sitemap.htm …
0
votes
2answers
60 views
IPython tab completes only some modules
I'm using the EPD version of python and IPython. After installing some modules using easy_install I notice that, although they can be imported, they cannot be tab completed. They e …
3
votes
2answers
89 views
Tcsh and/or bash directory completion with variable hidden root prefix
I'm trying to set up directory completion in tcsh and/or bash (both are used at my site) with a slight twist: for a particular command "foo", I'd like to have completion use a cust …
2
votes
4answers
92 views
How to enable auto compleation in Ruby’s IRB
When I use Merb's built in console, I get tab auto-completion similar to a standard bash prompt. I find this useful and would like to enable it in non-merb IRB sessions. How do I …
0
votes
3answers
144 views
TAB completion and mc problems
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.10
DISTRIB_CODENAME=intrepid
DISTRIB_DESCRIPTION="Ubuntu 8.10"
This is the server version.
When I ssh into it, I encounter the following prob …
2
votes
2answers
116 views
How can I customize tab completion in Perl’s Term::Shell?
I am using Term::Shell package to implement a CLI tool. This package provides a API: comp_CMD.
This function is invoked whenever the user presses the TAB.
My requirement here is: …
2
votes
1answer
108 views
raw_input without leaving a history in readline
Is there a way of using raw_input without leaving a sign in the readline history, so that it don't show when tab-completing?
2
votes
4answers
172 views
How do I do tab completion in Perl’s Term::Shell?
I am using the Term::Shell package in Perl for implementing a CLI tool. I am not able to do the tab completion of a command part with that.
comp_CMD() - which is a API provided by …
1
vote
3answers
174 views
python tab completion in windows
I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code lik …
2
votes
4answers
526 views
Tab-completion in Python interpreter in OS X Terminal
Several months ago, I wrote a blog post detailing how to achieve tab-completion in the standard Python interactive interpreter--a feature I once thought only available in IPython. …
0
votes
1answer
48 views
Programming customized tab completion for zsh
Sorry if my google fu is too weak, but: I simply want to adjust zsh so that I can tab complete
someappname -s
using the contents (filenames) of ~/somedir
For example:
someapp …
1
vote
3answers
190 views
How can I hook into tcsh’s TAB completion on Linux
I have some directories with a number of "hidden" files. One example of this is I'm in a source controlled sandbox and some of the files have not been checked out yet.
When I hit …
-1
votes
2answers
169 views
Unable to find a substitute command for Bash’s complete in Zsh
I put the newest git-completion.bash to my .zshrc and I get
/Users/Masi/bin/shells/git/git-completion.bash:2116: command not found: complete
/Users/Masi/bin/shells/git/git-complet …
0
votes
1answer
130 views
Unable to have two-word-search in Zsh’s TAB completion for Man
Problem: to have a tab completion which takes two words and calculates the best match from them for Man, and then returns the best matches
Example: The following pseudo-code shoul …
