Tagged Questions
2
votes
1answer
52 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
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 ...
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 ...
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
...
6
votes
2answers
362 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
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 ...
2
votes
5answers
182 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 ...
11
votes
1answer
428 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 ...
13
votes
2answers
270 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 ...
5
votes
2answers
2k 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 ...
7
votes
2answers
1k 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 ...
3
votes
1answer
542 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 ...
0
votes
1answer
307 views
How to limit the subset of git commands that zsh will auto-complete (with tab)?
I have a combination of:
autoload -Uz compinit
compinit
and
autoload -Uz vcs_info
It actually allows for a great amount of integration between git and zsh's tab completion. Too much in fact. How ...
2
votes
2answers
691 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 -s f<tab>
...
2
votes
4answers
2k 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-completion.bash:2118: ...
0
votes
1answer
383 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 should give me at least ...
3
votes
2answers
1k 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 ...
