mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
add xx command to Xcode plugin. Allows quick opening of files in Xcode. (#6812)
This commit is contained in:
parent
ebda8af870
commit
6ace3cd18d
2 changed files with 17 additions and 2 deletions
|
@ -19,7 +19,7 @@ plugins=(... xcode)
|
||||||
| xcdd | Purge all temporary build information | rm -rf ~/Library/Developer/Xcode/DerivedData/* |
|
| xcdd | Purge all temporary build information | rm -rf ~/Library/Developer/Xcode/DerivedData/* |
|
||||||
| xcp | Show currently selected Xcode directory | xcode-select --print-path |
|
| xcp | Show currently selected Xcode directory | xcode-select --print-path |
|
||||||
| xcsel | Select different Xcode directory by path | sudo xcode-select --switch |
|
| xcsel | Select different Xcode directory by path | sudo xcode-select --switch |
|
||||||
|
| xx | Opens the files listed in Xcode | open -a "Xcode.app" |
|
||||||
|
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
@ -29,6 +29,10 @@ plugins=(... xcode)
|
||||||
Opens the current directory in Xcode as an Xcode project. This will open one of the `.xcworkspace` and `.xcodeproj` files that it can find in the current working directory. You can also specify a directory to look in for the Xcode files.
|
Opens the current directory in Xcode as an Xcode project. This will open one of the `.xcworkspace` and `.xcodeproj` files that it can find in the current working directory. You can also specify a directory to look in for the Xcode files.
|
||||||
Returns 1 if it didn't find any relevant files.
|
Returns 1 if it didn't find any relevant files.
|
||||||
|
|
||||||
|
### `xx`
|
||||||
|
|
||||||
|
Opens the files listed in Xcode, multiple files are opened in a multi-file browser.
|
||||||
|
|
||||||
### `simulator`
|
### `simulator`
|
||||||
|
|
||||||
Opens the iOS Simulator from your command line, dependent on whichever is the active developer directory for Xcode. (That is, it respects the `xcsel` setting.)
|
Opens the iOS Simulator from your command line, dependent on whichever is the active developer directory for Xcode. (That is, it respects the `xcsel` setting.)
|
||||||
|
|
|
@ -27,6 +27,17 @@ function xc {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Opens a file or files in the Xcode IDE. Multiple files are opened in multi-file browser
|
||||||
|
# original author: @possen
|
||||||
|
function xx {
|
||||||
|
if [[ $# == 0 ]]; then
|
||||||
|
echo "Specify file(s) to open in xcode."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
echo "${xcode_files}"
|
||||||
|
open -a "Xcode.app" "$@"
|
||||||
|
}
|
||||||
|
|
||||||
# "XCode-SELect by Version" - select Xcode by just version number
|
# "XCode-SELect by Version" - select Xcode by just version number
|
||||||
# Uses naming convention:
|
# Uses naming convention:
|
||||||
# - different versions of Xcode are named Xcode-<version>.app or stored
|
# - different versions of Xcode are named Xcode-<version>.app or stored
|
||||||
|
@ -70,7 +81,7 @@ function xcselv {
|
||||||
|
|
||||||
function _omz_xcode_print_xcselv_usage {
|
function _omz_xcode_print_xcselv_usage {
|
||||||
cat << EOF >&2
|
cat << EOF >&2
|
||||||
Usage:
|
Usage:
|
||||||
xcselv <version>
|
xcselv <version>
|
||||||
xcselv [options]
|
xcselv [options]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue