I used for years in openSuSE the:

#compdef w
 _files -W ~/work -/

function to auto-complete the directory names in my ~/work dir.

It does not work in Ubuntu zsh -v 4.3.11, when I hit TAB after w I got directories from my home directory.

What's different in Ubuntu?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Nevermind I found cdpath variable. I added in my config file

cdpath=( /usr ~ ~/work )

and it works :) Just cd somechar Tab. No more compdef functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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