Last active
December 14, 2015 11:59
-
-
Save danmartens/5082939 to your computer and use it in GitHub Desktop.
ZSH Functions
This file contains 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
c() { cd ~/Projects/$1; } | |
_c() { _files -W ~/Projects -/; } | |
compdef _c c | |
alias c='nocorrect c' |
This file contains 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
killport() { kill -9 $(lsof -i tcp:$1 -Fp | tr -d p); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment