diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-09-07 12:08:50 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-09-07 12:08:50 +0200 |
commit | 213f46a296bd76031eb6a2fa66c72efeb912481d (patch) | |
tree | 0d360e9e3468bc3b5f5ff0df7da3b641f78dd475 | |
parent | 5584aa05c7c94949665f024ad0d88b8162654cb9 (diff) | |
download | zsh-213f46a296bd76031eb6a2fa66c72efeb912481d.tar.gz zsh-213f46a296bd76031eb6a2fa66c72efeb912481d.tar.bz2 zsh-213f46a296bd76031eb6a2fa66c72efeb912481d.zip |
Add xcselv documentation in the README
-rw-r--r-- | plugins/xcode/README.md | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/plugins/xcode/README.md b/plugins/xcode/README.md index b8efef38c..362940b93 100644 --- a/plugins/xcode/README.md +++ b/plugins/xcode/README.md @@ -13,12 +13,13 @@ plugins=(... xcode) ## Aliases -| Alias | Description | Command | -|-------|---------------------------------------|------------------------------------------------| -| xcsel | Change active developer directory | sudo xcode-select --switch | -| xcp | Show currently active dev. directory | xcode-select --print-path | -| xcb | Build Xcode projects and workspaces | xcodebuild | -| xcdd | Purge all temporary build information | rm -rf ~/Library/Developer/Xcode/DerivedData/* | +| Alias | Description | Command | +|-------|------------------------------------------|------------------------------------------------| +| xcb | Build Xcode projects and workspaces | xcodebuild | +| xcdd | Purge all temporary build information | rm -rf ~/Library/Developer/Xcode/DerivedData/* | +| xcp | Show currently selected Xcode directory | xcode-select --print-path | +| xcsel | Select different Xcode directory by path | sudo xcode-select --switch | + ## Functions @@ -29,3 +30,6 @@ plugins=(... xcode) - **`simulator`**: Open the iOS Simulator from your command line, dependant on whichever is the active developer directory for Xcode. + +- **`xcselv`**: + Select different Xcode by version. Example: `xcselv 6.2` |