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.
0
votes
2answers
47 views
Bash tab complete files in fixed directory
How can I use bash tab completion on a fixed directory within a script? Suppose I have a directory ~/pdf containing pdf-files. I want to make a simple script to view these files, e.g. viewpdf:
#! ...
2
votes
1answer
51 views
Zsh tab completion: Is there any plugin or feature that can allow for a MRU tab-completion scheme?
I find myself doing stuff like typing the last part of a command name because the beginning of it gets completed with other commands. Of course most other shells can't even complete stuff in this way ...
1
vote
0answers
27 views
How to suggest files with tab completion using readline?
Within the Bash shell, I can use tab-completion to use suggest file and directory names. How can I achieve this with nodejs and readline?
Examples:
/<Tab> should suggest /root/, /bin/, etc.
...
0
votes
0answers
18 views
Cygwin tab-complete on window-style path?
I wish tab-complete function can work on the windows-style path, for example c:/MyDir
It would bring great convenience for me to run other non-cygwin windows applications which do not recognize ...
1
vote
1answer
617 views
sublime text 2 plugin to enter auto-license comment line with specific format
I am trying to set up a snippet in Sublime Text 2 that will expand to the following:
/**
* @version $Id: ${1:current_file_name.extension} ${2:random_4_digit_number} ${3:YYYY-MM-DD} ...
0
votes
1answer
67 views
Bash-like code completion in vim?
I'm currently using superTab for completions in Vim. However, I'd like the completions to be more like bash. For example, if I'm typing
st
and the possible completions are
struct, string
I'd ...
1
vote
1answer
55 views
Remapping tab completions in vim
I've got a crazy little challenge. I'd like to remap tab and shift + tab to the basic tab completions in vim. Here's where I started:
set completeopt=
inoremap <tab> <C-n>
inoremap ...
8
votes
1answer
138 views
Duplicate output on Python tab completion (OsX 10.8)
Using the snippet below, I have added tab completion to the python interpreter.
import readline
import rlcompleter
if 'libedit' in readline.__doc__:
readline.parse_and_bind("bind ^I rl_complete")
...
2
votes
1answer
123 views
bash tab completion issues with ubuntu 12.04
I am having an issue with tab-completion that I am unable to solve. Specifically, whenever I try to tab-complete a directory, the completed directory name appears with a space following it instead of ...
4
votes
4answers
93 views
How can I make my program utilize tab completion?
I've noticed that some programs (e.g. hg) allow the user to tab-complete specific parts of the command. For example, if, in an hg repository working directory, I type:
hg qpush --move b8<TAB>
...
0
votes
1answer
50 views
How do I use tab completion in Rstudio
I've been using Rstudio for a few weeks now, and the tab completion has worked inconsistently for me. For example:
my_variable = 10
my_va
Those are the only two lines in my R-script. When I press ...
9
votes
2answers
289 views
Custom tab completion in python argparse
Is it possible to get smarter tab completion cooperating with argparse in python scripts? My shell is bash. The information I can find about this stuff online is over a year old and mostly relates ...
1
vote
1answer
185 views
Tab completion for aliased sub commands in zsh: alias gco='git checkout'
I have an alias: alias gco='git checkout'
How can I add tab completion as if I had typed git checkout?
For my alias g='git' I use compdef g='git'.
I've been trying to use compdef but I've not had ...
1
vote
1answer
73 views
don't emacs completion and cedet semantic completion use same tag file
I thought that both of emacs default completion an semantic completions does their job based on the same tag file but now I see sth else:
this is the result of emacs default completion via ESC + TAB:
...
0
votes
3answers
61 views
Using append() and readline for completion in python
Specifically can I provide append() a Null/None value in Python?
I am trying to add auto complete functionality to a command line application, so am using readline to obtain anything the user may ...
1
vote
1answer
140 views
Python Cmd module enabling tab-completion inside a double-quoted string
I'm currently writing an application using the Cmd/Cmd2 module.
For a certain command, I need quoted strings to delimit certain argument values.
(Cmd) command "This is an argument" argument 04
...
2
votes
2answers
97 views
What's the most proper way to remove an already deleted branch from tab-completion history?
I can't exactly remember the events that led me to my current scenario, but it happened something similar to this:
had a branch named 2-dev-inprogress
changed branch name of 2-dev-inprogress to ...
2
votes
2answers
301 views
Tab-Completion of Matlab commands in Sublime Text 2?
I've recently started using Sublime Text 2 to edit my Matlab files (.m) as I was frustrated with its build-in editor.
I was wondering, is there anyway to have the tab-completion of the native editor ...
2
votes
1answer
539 views
Zsh tab completion duplicating command name
I'm on OS X Mountain Lion, running the included ZSH shell (4.3.11) with Oh-My-ZSH installed over the top.
When using tab completion with commands such as homebrew, when ZSH lists the available ...
5
votes
5answers
167 views
Is it possible to have _good_ tab completions in Clojure REPL?
Good tab completions means dynamically generated using reflection or whatever (that does not require pre-defined list of completions somewhere) and that knows what can and what can't follow in ...
5
votes
2answers
156 views
Emacs minibuffer completion
I have a function that launches programs asynchronously:
(defun app (app-name)
(interactive "sRun application: ")
(async-shell-command app-name))
And i have a list of all executables from which ...
1
vote
2answers
50 views
shell tab-completion of strings based on more than just the first characters?
Are there any shells which support tab-completion of strings based on more than just the first characters?
For example, say I have the branch add_page_to_site, when I do git checkout si[TAB], it ...
0
votes
0answers
60 views
zsh: completion menu. How to place common part of names?
I have completion menu configured in my zsh. It works great, no problem.
Now I want to make my zsh act like that:
Let's say there are 3 files in a directory:
somefile_first
somefile_second
...
1
vote
2answers
324 views
Bash Autocomplete Ubuntu list all rather than cycle
On a fresh Ubuntu 12.04 install, my terminal tab-complete settings are configured such that the options are cycled through upon the second tab rather than what I am used to (listing all options and ...
2
votes
2answers
603 views
Customize tab completion in shell
This may be have a better name than "custom tab completion", but here's the scenario:
Typically when I'm at the command line and I enter a command, followed with {TAB} twice, I get a list of all ...
2
votes
2answers
146 views
Tab completion not seeing my modules in IPython 0.12
IPython is not able to tab-complete the names of modules in the current directory when importing.
If I have a file called Blah.py in the current directory I would like to type (at an ipython prompt)
...
0
votes
1answer
249 views
Setting case-insensitivity for bash completion on a command-by-command basis
Is there a way to specify that a particular command has case insensitivity, without turning on case insensitivity globally (at least for that shell)?
In my particular case, I have a small app that ...
5
votes
1answer
179 views
What is Scala REPL's tab completion telling me here?
While working my way through Cay S. Horstmann's "Scala for the Impatient", I noticed something interesting revealed by the first exercise in the first chapter.
In the Scala REPL, type 3. followed by ...
4
votes
1answer
305 views
Emacs completion-at-point-functions
I'm writing a derived mode, based on comint-mode. The mode is an interface to a command line program (GRASS gis), and the comint mode completion works for the programs. I'm trying to add on support ...
1
vote
3answers
371 views
PowerShell provider relative path tab-completion issue
I've implemented a simple PowerShell NavigationCmdletProvider.
For those who don't know, this means I can create a snap-in with a cmdlet which is effectively a virtual filesystem drive; this drive ...
2
votes
1answer
99 views
Can PowerShell tab completion work like VS 2010 Pascal Case Intellisense?
In Visual Studio 2010, if there is a method like AlphaBetaGamma(), you can reach it by typing someObject.ABG[tab] (see for instance this article).
In PowerShell, when I have a cmdlet like ...
0
votes
0answers
124 views
How can I enable tab completion for psql on OSX Lion? [closed]
OSX Lion appears to have broken tab completion when I use the Postgresql client, psql. There are some details here, but I'd prefer to avoid using MacPorts to solve this problem. Any thoughts?
1
vote
1answer
345 views
Tab complete from :open in Macvim?
If I open MacVim (specifically janus) and try :open ~/<TAB> I get :open ~/^I. How can I get it to tab complete the way one would expect bash completion to work?
2
votes
1answer
234 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
1
vote
1answer
483 views
sftp tab completion in Mac OSX (Lion)
Has anybody found a way to enable tab completion when using sftp on the command line in OSX (Lion)?
Under Snow Leopard I installed yafc using MacPorts to use sftp with tab completion, but this does ...
2
votes
1answer
295 views
Node.js REPL with vim keybindings AND method/variable completion
As far as I know, the standard way to get vim keybindings in the Node REPL is to use rlwrap like so:
NODE_NO_READLINE=1 rlwrap node
This, however, kills method and variable tab-completion. Is there ...
2
votes
1answer
375 views
How can I set up shell tab-completion to toggle through alternatives?
When I type, e.g. "cd bu[tab]", and there is more than one option, (say build/ and builds/), the terminal usually shows a list of all possible options (after pressing [tab] twice). I want to set it up ...
1
vote
1answer
491 views
Python Twisted integration with Cmd module
I like Python's Twisted and Cmd. I want to use them together.
I got some things working, but so far I haven't figured out how to make tab-completion work, because I don't see how to receive tab ...
9
votes
4answers
663 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:
...
1
vote
1answer
196 views
Is it possible to set up ipython to tab complete function argument parameters
In the ipython shell, is it possible to set it up so that I can define tab completion for function/method parameters? I have several methods that will only ever take certain arguments from a defined ...
6
votes
2answers
361 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
101 views
adding new zshell command line custom git completions
I installed git via Homebrew. I get command line completions via the script installed in
/usr/local/etc/bash_completion.d/
However I want my custom git-* scripts to be completed too.
How would I ...
3
votes
1answer
113 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 ...
2
votes
2answers
949 views
Enable bash tab completion for Mercurial (hg)
I've installed Mercurial (1.4.3-1) on ubuntu and it doesn't do tab completion in bash by default. What is the simplest way to enable this feature?
0
votes
0answers
94 views
Bash Substring File Completion
Does bash partial/substring file completion similar to what zsh does?
0
votes
1answer
244 views
Gnu Emacs: tab-completion for psql running within sql.el process
I enjoy running Postgres client "psql" under psql.el while interacting with a .sql file in a separate window. Sometimes, I want to use tab-completion within the the buffer running the psql process to ...
2
votes
1answer
324 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 ...
3
votes
1answer
115 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 ...
4
votes
4answers
419 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
...
0
votes
3answers
222 views
Is there a working mysql client for windows which offers auto completion?
I'm tired of typing table and column names again and again, so I'd like a client which supports auto-completion upon pressing TAB. Do you know one?
A quick google search revealed only that the ...

