Skip to content

Instantly share code, notes, and snippets.

@apux
Created September 7, 2012 00:39
Show Gist options
  • Save apux/3661959 to your computer and use it in GitHub Desktop.
Save apux/3661959 to your computer and use it in GitHub Desktop.
zsh functions
cdl() { cd ~/Projects/Ruby/RoR/lbs/$1; }
_cdl() { _files -W ~/Projects/Ruby/RoR/lbs -/; }
compdef _cdl cdl
cdo() { cd ~/Projects/Ruby/RoR/own/$1; }
_cdo() { _files -W ~/Projects/Ruby/RoR/own -/; }
compdef _cdo cdo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment