mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
152 B
Bash
8 lines
152 B
Bash
# add function that cds to ~/code, with tab-completion
|
|
function c() {
|
|
cd ~/code/$1;
|
|
}
|
|
|
|
fpath=($ZSH/plugins/c $fpath)
|
|
autoload -U compinit
|
|
compinit -i
|