emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/swift-mode c532c1e 402/496: Update documents


From: ELPA Syncer
Subject: [nongnu] elpa/swift-mode c532c1e 402/496: Update documents
Date: Sun, 29 Aug 2021 11:34:15 -0400 (EDT)

branch: elpa/swift-mode
commit c532c1ec49ba3b17e927704dce2228c22402de3c
Author: taku0 <mxxouy6x3m_github@tatapa.org>
Commit: taku0 <mxxouy6x3m_github@tatapa.org>

    Update documents
---
 README.md               |  6 ++++--
 swift-mode-font-lock.el |  4 +++-
 swift-mode-repl.el      | 14 +++++++++-----
 3 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 61e0ee8..a5f9ef5 100644
--- a/README.md
+++ b/README.md
@@ -63,14 +63,15 @@ To install without MELPA, download [latest 
release](https://github.com/swift-ema
 - `forward-sexp`
 - `beginning-of-defun`, `end-of-defun`, `mark-defun`, and `narrow-to-defun`.
 - `beginning-of-sentence`, `end-of-sentence`, `kill-sentence`, 
`backward-kill-sentence`, `mark-sentence`, and `narrow-to-sentence`.
-  A sentence is a statement outside comments or strings. Inside comments or 
strings, it indicates ordinal sentence.
+  A sentence is a statement outside comments or strings, or an ordinal 
sentence inside comments or strings.
 - `indent-new-comment-line`
 - [Imenu](https://www.gnu.org/software/emacs/manual/html_node/emacs/Imenu.html)
 - Running Swift REPL in a buffer (`M-x run-swift`)
 - Build Swift module (`M-x swift-mode:build-swift-module`)
 - Build iOS app (`M-x swift-mode:build-ios-app`)
 - Running debugger on Swift module (`M-x swift-mode:debug-swift-module`)
-- Running debugger on iOS app in simulator (`M-x swift-mode:debug-ios-app`)
+- Running debugger on iOS app in simulator or device (`M-x 
swift-mode:debug-ios-app`)
+  ([`ios-deploy`](https://github.com/ios-control/ios-deploy) is required to 
debug on device).
 
 This package does not provide flycheck. See 
[flycheck-swift](https://github.com/swift-emacs/flycheck-swift).
 
@@ -203,6 +204,7 @@ Thanks to the following original developer and users for 
their contributions:
 - [@ckruse](https://github.com/ckruse) (Christian Kruse)
 - [@syohex](https://github.com/syohex) (Syohei Yoshida)
 - [@uk-ar](https://github.com/uk-ar) (Yuuki Arisawa)
+- [@msanders](https://github.com/msanders) (Michael Sanders)
 
 You can find a [full list of those people 
here](https://github.com/swift-emacs/swift-mode/graphs/contributors).
 
diff --git a/swift-mode-font-lock.el b/swift-mode-font-lock.el
index 0e3a31f..00cedfb 100644
--- a/swift-mode-font-lock.el
+++ b/swift-mode-font-lock.el
@@ -1,11 +1,13 @@
 ;;; swift-mode-font-lock.el --- Major-mode for Apple's Swift programming 
language, Font Locks. -*- lexical-binding: t -*-
 
-;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov, Arthur 
Evstifeev
+;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov,
+;;                         Arthur Evstifeev, Michael Sanders
 
 ;; Authors: taku0 (http://github.com/taku0)
 ;;       Chris Barrett <chris.d.barrett@me.com>
 ;;       Bozhidar Batsov <bozhidar@batsov.com>
 ;;       Arthur Evstifeev <lod@pisem.net>
+;;       Michael Sanders <michael.sanders@fastmail.com>
 ;;
 ;; Version: 4.1.1
 ;; Package-Requires: ((emacs "24.4") (seq "2.3"))
diff --git a/swift-mode-repl.el b/swift-mode-repl.el
index cdda092..a2ed521 100644
--- a/swift-mode-repl.el
+++ b/swift-mode-repl.el
@@ -1,11 +1,13 @@
 ;;; swift-mode-repl.el --- Run Apple's Swift processes in Emacs buffers -*- 
lexical-binding: t -*-
 
-;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov, Arthur 
Evstifeev
+;; Copyright (C) 2014-2017 taku0, Chris Barrett, Bozhidar Batsov,
+;;                         Arthur Evstifeev, Michael Sanders
 
 ;; Authors: taku0 (http://github.com/taku0)
 ;;       Chris Barrett <chris.d.barrett@me.com>
 ;;       Bozhidar Batsov <bozhidar@batsov.com>
 ;;       Arthur Evstifeev <lod@pisem.net>
+;;       Michael Sanders <michael.sanders@fastmail.com>
 ;;
 ;; Version: 4.1.1
 ;; Package-Requires: ((emacs "24.4") (seq "2.3"))
@@ -444,7 +446,7 @@ or its ancestors."
 
 SCHEME is the name of the project scheme in Xcode.
 SDK is the name of the SDK build against.
-DEVICE-IDENTIFIER is used as the destination parameter for xcodebuild. If
+DEVICE-IDENTIFIER is used as the destination parameter for xcodebuild.  If
 identifier is equal to `swift-mode:ios-local-device-identifier', it is not
 passed as a destination to xcodebuild."
   (with-temp-buffer
@@ -555,7 +557,9 @@ Build it for iOS device DEVICE-IDENTIFIER for the given 
SCHEME.
 If PROJECT-DIRECTORY is nil or omitted, it is searched from `default-directory'
 or its ancestors.
 DEVICE-IDENTIFIER is the device identifier of the iOS simulator.  If it is nil
-or omitted, the value of `swift-mode:ios-device-identifier' is used.
+or omitted, the value of `swift-mode:ios-device-identifier' is used. If it is
+equal to `swift-mode:ios-local-device-identifier', a local device is used via
+`ios-deploy' instead.
 SCHEME is the name of the project scheme in Xcode.  If it is nil or omitted,
 the value of `swift-mode:ios-project-scheme' is used."
   (interactive
@@ -875,8 +879,8 @@ in Xcode build settings."
 Run it for the iOS simulator devie DEVICE-IDENTIFIER for the given SCHEME.
 If PROJECT-DIRECTORY is nil or omitted, it is searched from `default-directory'
 or its ancestors.
-DEVICE-IDENTIFIER is the device identifier of the iOS simulator. If it is
-nil or omitted, the value of `swift-mode:ios-device-identifier' is used. If
+DEVICE-IDENTIFIER is the device identifier of the iOS simulator.  If it is
+nil or omitted, the value of `swift-mode:ios-device-identifier' is used.  If
 it is equal to `swift-mode:ios-local-device-identifier', a local build via
 `ios-deploy' is generated instead.
 SCHEME is the name of the project scheme in Xcode.  If it is nil or omitted,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]