diff options
author | Robby Russell <robby@planetargon.com> | 2014-12-19 20:26:50 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-12-19 20:26:50 -0800 |
commit | 1b2d7fd9e971b0ba4cdc33e8d885aeff486024d5 (patch) | |
tree | 518857c7167ea2a20ae37f852696b6a92d2a4e29 /plugins | |
parent | dc9af89669135a61d306c34caf0a55ab9be1f6ea (diff) | |
parent | 575bb91b5f2e1220e566385e2982ca4f72521819 (diff) | |
download | zsh-1b2d7fd9e971b0ba4cdc33e8d885aeff486024d5.tar.gz zsh-1b2d7fd9e971b0ba4cdc33e8d885aeff486024d5.tar.bz2 zsh-1b2d7fd9e971b0ba4cdc33e8d885aeff486024d5.zip |
Merge pull request #3362 from emarashliev/master
Added Xcode alias for deleting Derived Data.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/xcode/xcode.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/xcode/xcode.plugin.zsh b/plugins/xcode/xcode.plugin.zsh index b7b75cf93..1d1205b80 100644 --- a/plugins/xcode/xcode.plugin.zsh +++ b/plugins/xcode/xcode.plugin.zsh @@ -16,6 +16,7 @@ function xcsel { alias xcb='xcodebuild' alias xcp='xcode-select --print-path' +alias xcdd='rm -rf ~/Library/Developer/Xcode/DerivedData/*' if [[ -d $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app ]]; then alias simulator='open $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app' |