mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
6 lines
147 B
Text
6 lines
147 B
Text
#compdef c
|
|
if [[ "$CODE_HOME" == "" && -d "$HOME/code" ]] ; then
|
|
_files -W $HOME/code
|
|
elif [ -d "$CODE_HOME" ]; then
|
|
_files -W "$CODE_HOME"
|
|
fi
|