1
vote
6answers
82 views
Bash Completion: What can we do with it, what lies in the future.
Bash lets you complete commands names and names of files in the arguments with the TAB key.
But why not also common options to commands? Why not, even better, a completion system that tells you what …
2
votes
2answers
94 views
Tab-completion of filenames as arguments for MATLAB scripts
We all know MATLAB provides tab-completion for filenames used as arguments in MATLAB function like importdata,imread. How do we do that for the functions we create?
EDIT:
Displays the files and …
1
vote
2answers
93 views
Emacs: Tab completion of file name appends an extra i:\cygwin
I am facing some strange behavior with file-name completion in emacs. C-x C-f to find file opens up the minibuffer with i:/cygwin/home/rrajagop/StockScreener/working_copy/master_repo/stock_screener/. …
1
vote
4answers
127 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 hits "Enter."
I …
3
votes
2answers
162 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 custom function to match …
0
votes
1answer
65 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.html" (the :arga …
0
votes
2answers
75 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 exist on the path …
2
votes
4answers
115 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 get auto-completion …
0
votes
3answers
196 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 problems:
Problem 1
…
0
votes
2answers
76 views
Unable to find a tab completion for Rubygem in Bash/Zsh
I have not found a tab-completion script for RubyGem in Bash/Zsh.
Where can you get the tab-completion script for RubyGem in Bahs/Zsh?
2
votes
1answer
128 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
2answers
128 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:
shell> stackTAB
…
2
votes
4answers
229 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 this Term::Shell, …
2
votes
4answers
600 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. I've found it …
1
vote
3answers
198 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 like the following to …
