|
1 | 1 | ;;; swift-mode-repl.el --- Run Apple's Swift processes in Emacs buffers -*- lexical-binding: t -*-
|
2 | 2 |
|
3 |
| -;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov, Arthur Evstifeev |
| 3 | +;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov, |
| 4 | +;; Arthur Evstifeev, Michael Sanders |
4 | 5 |
|
5 | 6 | ;; Authors: taku0 (http://github.com/taku0)
|
6 | 7 | ;; Chris Barrett <[email protected]>
|
7 | 8 | ;; Bozhidar Batsov <[email protected]>
|
8 | 9 | ;; Arthur Evstifeev <[email protected]>
|
| 10 | +;; Michael Sanders <[email protected]> |
9 | 11 | ;;
|
10 | 12 | ;; Version: 4.1.1
|
11 | 13 | ;; Package-Requires: ((emacs "24.4") (seq "2.3"))
|
@@ -444,7 +446,7 @@ or its ancestors."
|
444 | 446 |
|
445 | 447 | SCHEME is the name of the project scheme in Xcode.
|
446 | 448 | SDK is the name of the SDK build against.
|
447 |
| -DEVICE-IDENTIFIER is used as the destination parameter for xcodebuild. If |
| 449 | +DEVICE-IDENTIFIER is used as the destination parameter for xcodebuild. If |
448 | 450 | identifier is equal to `swift-mode:ios-local-device-identifier', it is not
|
449 | 451 | passed as a destination to xcodebuild."
|
450 | 452 | (with-temp-buffer
|
@@ -555,7 +557,9 @@ Build it for iOS device DEVICE-IDENTIFIER for the given SCHEME.
|
555 | 557 | If PROJECT-DIRECTORY is nil or omitted, it is searched from `default-directory'
|
556 | 558 | or its ancestors.
|
557 | 559 | DEVICE-IDENTIFIER is the device identifier of the iOS simulator. If it is nil
|
558 |
| -or omitted, the value of `swift-mode:ios-device-identifier' is used. |
| 560 | +or omitted, the value of `swift-mode:ios-device-identifier' is used. If it is |
| 561 | +equal to `swift-mode:ios-local-device-identifier', a local device is used via |
| 562 | +`ios-deploy' instead. |
559 | 563 | SCHEME is the name of the project scheme in Xcode. If it is nil or omitted,
|
560 | 564 | the value of `swift-mode:ios-project-scheme' is used."
|
561 | 565 | (interactive
|
@@ -875,8 +879,8 @@ in Xcode build settings."
|
875 | 879 | Run it for the iOS simulator devie DEVICE-IDENTIFIER for the given SCHEME.
|
876 | 880 | If PROJECT-DIRECTORY is nil or omitted, it is searched from `default-directory'
|
877 | 881 | or its ancestors.
|
878 |
| -DEVICE-IDENTIFIER is the device identifier of the iOS simulator. If it is |
879 |
| -nil or omitted, the value of `swift-mode:ios-device-identifier' is used. If |
| 882 | +DEVICE-IDENTIFIER is the device identifier of the iOS simulator. If it is |
| 883 | +nil or omitted, the value of `swift-mode:ios-device-identifier' is used. If |
880 | 884 | it is equal to `swift-mode:ios-local-device-identifier', a local build via
|
881 | 885 | `ios-deploy' is generated instead.
|
882 | 886 | SCHEME is the name of the project scheme in Xcode. If it is nil or omitted,
|
|
0 commit comments