vote up 4 vote down star

How can I configure the Zsh tab-completion such that when I type cd ..<TAB> it expands to cd ../ and after pressing <TAB> again proposes the folders in the parent directory for completion?

E.g. it should show the same behavior as when typing for example cd Documents<TAB> which expands to cd Documents/ and after pressing <TAB> again proposes the folders in Documents for completion.

As a starting point for configuration I use an empty .zshrc and Zsh 4.3.9 from MacPorts.

flag

5 Answers

vote up 3 vote down check

Same problem with debian unstable, Ubuntu jaunty, both ship zsh 4.3.9. I know of multiple people with different configurations.

After reading http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514152 I added

zstyle ':completion:*' special-dirs true

to my config and now everything works fine again.

link|flag
vote up 1 vote down

In fact I now discovered that the problem does not seem to come from the configuration. When using a .zshrc which only contains

autoload -Uz compinit
compinit

The tab-completion works as intended for cd ..<TAB> when using the default Mac OS X Zsh (4.3.4). But with the MacPorts Zsh (4.3.9) the tab-completion only works for other folders and not for ..

link|flag
vote up 4 vote down

Put this into your ~/.zshrc:

autoload -Uz compinit
compinit


There is also a project with zsh functions/configurations for Mac OS X on http://code.google.com/p/zsh-templates-osx/ . Personally I think it's an overkill to use the whole package. But found it useful to cherry pick some tricks, functions, completions etc. and create my own .zshrc

link|flag
Thank you, this configures exactly the behavior I was looking for. – x-way Feb 19 at 12:14
What does the option z does in your code? – Masi Apr 30 at 3:44
autload commandline options: -U -- suppress alias expansion for functions -k -- mark function for ksh-style autoloading -t -- turn on execution tracing for functions -w -- specify that arguments refer to files compiled with zcompile -z -- mark function for zsh-style autoloading – f3lix May 3 at 19:07
vote up 0 vote down

This may or may not be a useful answer - switch to bash, which does what you want out of the box.

link|flag
2  
That's somewhat like telling an vim user to switch to emacs, because he can't find a configuration switch... IMHO zsh is more powerful than bash and also comes with a great completion function. You just have to activate it... – f3lix Feb 19 at 11:01
vote up 0 vote down

Don't know about zsh but for bash, there is a bash-completion package that allows this type of completion and powerful ones like completion over ssh for scp for example.

Seems this link will help you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.