Created
April 29, 2021 08:46
-
-
Save junchaw/a774dfe5b39c77e6187512ec993b84f7 to your computer and use it in GitHub Desktop.
cd to my project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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