ohmyzsh/plugins/c/c.plugin.zsh
Hakan Ensari a686ccfe1e Added function that cds to ~/code, with tab-completion.
Lifted from Ryan Bates' dotfiles.
2010-12-20 12:18:52 -03:00

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