Skip to content

Instantly share code, notes, and snippets.

@junchaw
Created April 29, 2021 08:46
Show Gist options
  • Save junchaw/a774dfe5b39c77e6187512ec993b84f7 to your computer and use it in GitHub Desktop.
Save junchaw/a774dfe5b39c77e6187512ec993b84f7 to your computer and use it in GitHub Desktop.
cd to my project
# cd to my project
export PROJECTS="$HOME/projects"
p () {
cd $PROJECTS/${1}
}
_p_completions()
{
COMPREPLY=($(compgen -W "$(ls $PROJECTS)" -- "${COMP_WORDS[1]}"))
}
complete -F _p_completions p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment