Tagged Questions
Most shells provide TAB completion where a user can type part of a command or file name, and then press TAB to make the shell complete the name. This saves greatly on the number of key presses needed when working on the command line.
12
votes
1answer
197 views
hiding certain options in zsh autocompletion
There are several commands that have esoteric options that I don't use often. For example, git has 'check-attr'. I use 'git checkout' very often, however, so I'd like,
git ch
to complete to
git ...
8
votes
4answers
78 views
Simply forking and redirecting the output of a command to /dev/null
I frequently execute from a shell (in my case Bash) commands that I want to fork immediately and whose output I want to ignore. So frequently in fact that I created a script (silent) to do it:
...
8
votes
5answers
317 views
Accesssing bash completions for specific commands programmatically
I'm trying to write a small command launcher application, and would like to use bash's tab completions in my own completion system. I've been able to get a list of completions for general commands ...
8
votes
4answers
2k 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 ...
7
votes
1answer
259 views
How to bundle bash completion with a program and have it work in the current shell?
I sweated over the question above. The answer I'm going to supply took me a while to piece together, but it still seems hopelessly primitive and hacky compared to what one could do were completion to ...
7
votes
7answers
544 views
Unix file naming convention for effective tab completion?
I feel like I often name files in such a way that my computer constantly beeps while I program because the tab completion is ambiguous. Before doing a lot of Unix programming, I tended to name related ...
6
votes
1answer
119 views
Python: bind a function to a key
I just started learning python and am writing my own tab-completion function for practice/fun (so no one tell me to us rlcompleter). I'm having some trouble getting actually get the python to call ...
5
votes
1answer
165 views
zsh: use completions for command X when I type command Y
In zsh, I have a function called g which acts like this:
with no arguments, call git status
with one or more arguments, delegate to git with all given arguments - i.e. call git $@
I would like the ...
5
votes
2answers
262 views
vim word completion navigating with 'j' and 'k'
In vim, I use Ctrl-n to word complete while in insert mode. If there is more than one possible match, I get a dropdown from which I can select one of the possible matches using the arrow keys.
...
5
votes
2answers
883 views
Ambiguous tab completion not working in iPython on Windows
I am running IPython on Windows 7 x64 with pyreadline installed. If I start a new session and type:
import numpy
nu<TAB>
Then nu autocompletes to numpy. However, if I start a new session ...
5
votes
1answer
425 views
powershell.exe tab completion - list alternatives?
I've never really used PowerShell before, and playing with it a bit, it looks like it uses cmd.exe's style of tab completion (fill in the first likely candidate, and then you can use tab to cycle ...
5
votes
2answers
1k views
IPython tab completion not working
Tab completion on IPython seems not to be working. For example,
import numpy
numpy.<tab>
simply adds a tab.
import numpy
num<tab>
just adds a tab, too. Could you please suggest some ...
5
votes
3answers
799 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 ...
4
votes
2answers
112 views
bash autocompletion: add description for possible completions
Is it possible to make bash auto-completion look like in Cisco IOS shell?
I mean to add short descriptions for each completion, like this:
telnet 10.10.10. (TAB Pressed)
10.10.10.10 - routerA
...
4
votes
2answers
432 views
How to Implement Tab Completion
I'm trying to figure out how to implement tab completion for subcommands in a C++ application. I would like it to function much like Git's tab completion. I'm trolling through Git's source, but it's ...
4
votes
2answers
227 views
Scala REPL tab-complete is lying to me?
With Scala 2.8.1, SBT 0.7.4, WebDriver HTMLUnit 2.6. In the SBT console REPL ...
scala> e.findElement[tab]
findElement findElementById findElementByLinkText ...
4
votes
2answers
369 views
I have a bash-tab-completion script. Is there a simple way to use it from zsh?
I have a bash-tab-completion script for Apache's Hadoop. Normally, I use zsh as my day-to-day shell. It tends to be pretty bash-like when I need it to be, but it looks like the tab-completion ...
4
votes
3answers
1k views
Tab Completion in Python Command Line Interface - how to catch Tab events
I'm writing a little CLI in Python (as an extension to Mercurial) and would like to support tab-completion. Specifically, I would like catch tabs in the prompt and show a list of matching options ...
4
votes
4answers
984 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 ...
4
votes
3answers
863 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 ...
4
votes
4answers
858 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 ...
4
votes
1answer
672 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?
3
votes
1answer
44 views
Added tab completion to JFileChooser's File Name inputer
How can I add linux like tab completion to jFileChooser's File Name input field? I'm assuming I need to add a listener to the File Name's text input box to listen for the tab key. But I don't know ...
3
votes
3answers
56 views
Conflict between branch and file completion in bash/git
I'm using the bash completion script for git. However, there are situations where it doesn't work. Say I have a branch foo-branch, and a file foo-file. If I have changes in the file which I want to ...
3
votes
2answers
454 views
Tab Completion In Emacs shell-mode SSH Sessions
My current use pattern of emacs results in my having several shell-mode buffers open, each running an ssh session. I am running into an issue with this, though - when I try to tab-complete file names ...
3
votes
1answer
235 views
PowerShell tab completion issue
Suppose I have the following folder: C:\[test]\x, then, when inside of the [test] folder, I can't use PowerShell's tab completion at all.
I guess the reason for that is that the folder name would ...
3
votes
2answers
599 views
readline-like library for Java
Which readline-like library for Java do you use? By 'readline' like library I mean library for editing console input, with support for history, tab-completion, and stuff like this. I'm looking for ...
3
votes
1answer
72 views
How to define your own terminal tab completions
I've noticed that some programs have their own tab-completion.
For example, git:
git checkout
allows for tab completion of branch names.
How is this accomplished?
3
votes
1answer
334 views
How to remove the file extension in a zsh completion?
I want to adjust zsh so that I can tab complete:
myprog <tab>
using all *.foo files in ~/somedir, but have it so that it displays them without the .foo extension.
Is there any way to do ...
3
votes
1answer
776 views
Tab completion with Python's Cmd.cmd
After testing a while with the Cmd.cmd framework in python, I noticed a problem I don't know what to do about. Plus I believe to have this working some hours before (or I'm just crazy), so this is ...
3
votes
2answers
438 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
...
3
votes
3answers
888 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
1answer
60 views
Set up Mercurial for command completion in a Windows console
Is there a way to setup Mercurial to get command completion when working from console on Windows?
I'd like to have something similar to git bash, but for mercurial
2
votes
1answer
31 views
Zsh color partial tab completions
Is it possible to color the completed part of the partial completion results in Zsh?
Fish does this by default (in Gentoo at least) as shown in the image below:
Full size image: ...
2
votes
1answer
81 views
Mercurial Branch / File name completion in ZShell
I've been using Zsh as a Bash replacement for a while now. One thing that doesn't work as well anymore is the completion for branch and uncommitted file names for mercurial.
If previously (bash) I ...
2
votes
1answer
50 views
zsh completion inside quoted strings
Is it possible to configure zsh to suggest filenames (or anything else) inside of a quoted string?
I've seen this thread on bash: Bash TAB-completion inside double-quoted string
But I'm not sure ...
2
votes
4answers
83 views
Can zsh or bash expand history expressions referring to directories?
For example, let's suppose I just copied something:
mv foo_file.txt ~/to/some/long/path/that/i/do/not/want/to/retype
and I'd like to use history substitution like so:
mv bar_file.txt !!:2
I'm ...
2
votes
1answer
333 views
How to force windows cmd tab complete to add a trailing slash to directory names
On the rare occasion that I have to use a windows command prompt rather than bash, it drives me nuts that tab completion doesn't add a slash to the end of directory names. Is there a setting or ...
2
votes
1answer
284 views
Tab-completion in iPython on Mac OS X Snow Leopard
I have installed iPython and Readline on Mac OS X Snow Leopard and am having difficulty getting tab-completion to work properly.
For example, when I do
import sys
sys.<tab>
the tab key only ...
2
votes
1answer
159 views
Making Scala's REPL tab completion read down columns instead of across rows?
The output of tab completion in the Scala REPL reads across rows, with items sorted left to right before beginning a new row. This feels awkward to me; I'm used to reading lists that are sorted ...
2
votes
1answer
181 views
How to do a multi-level CLI in Python?
I'm trying to do a CLI, preferrably written in Python. I need a multi-level CLI, and I want tab completion.
I looked at the cmd module (from the Python standard library) and readline with the ...
2
votes
2answers
483 views
Zsh completion resource?
Zsh completion is a rather complex beast, and I find the man-page very difficult to read, especially it's missing (simple) examples of all the various optspec forms etc. I haven't managed to find ...
2
votes
1answer
208 views
How do I get Xcode-like tab-completion in TextMate?
Xcode shows you a grayed-out version of what it will complete to and if you hit tab or right-arrow, it will complete. It's pretty sweet. Is this possible in TextMate?
Thanks!
Matt
2
votes
1answer
160 views
bash completion prevents backspace
I am trying to set up bash completion for a utility script I wrote, so I added the following script to /etc/bash_completion.d:
_mcd()
{
local cur words
COMPREPLY=()
...
2
votes
2answers
827 views
bash completion for Subversion
I've tried to load bash_completion in my bash (3.2.25), it does not work. No message etc. I've used the following in my .bashrc
if [ -f ~/.bash_completion ]; then
. ~/.bash_completion
fi
I also ...
2
votes
2answers
624 views
Ignore a path entry with bash tab-completion
I have two commands, foo and foo-bar, where foo is a symlink to foo-bar. I want to be able to type f+TAB (pretend these are the only two commands on the path that begin with f) and have one of them be ...
2
votes
6answers
303 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
3answers
2k 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 ...
2
votes
2answers
824 views
Unable to have MacPorts' tab completion in Zsh
I get the following in including MacPorts' Bash tab completion to Zsh
/opt/local/etc/bash_completion:[:48: unrecognized condition: `2'
[ -- cut -- ]
/opt/local/etc/bash_completion:[:62: unrecognized ...
2
votes
2answers
158 views
Send TAB to a child console (windows)
I create a child console application with
_process = new Process();
_process.StartInfo.FileName = @"cmd.exe";
_process.StartInfo.UseShellExecute = false;
_process.StartInfo.RedirectStandardInput = ...