https://github.com/cellular/xcodeextensionmark-swift
An Xcode Source Editor Extension to add a MARK comment above any extension of a source file
https://github.com/cellular/xcodeextensionmark-swift
Last synced: 9 months ago
JSON representation
An Xcode Source Editor Extension to add a MARK comment above any extension of a source file
- Host: GitHub
- URL: https://github.com/cellular/xcodeextensionmark-swift
- Owner: cellular
- License: mit
- Created: 2019-05-28T12:12:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T12:34:46.000Z (about 7 years ago)
- Last Synced: 2025-06-21T10:07:47.106Z (about 1 year ago)
- Language: Swift
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xcode Source Editor Extension: "Extension Marker"
An Xcode Source Editor Extension to add a MARK comment above any extension of a source file
Xcode Source Editor Extensions are located in Menu -> Editor.
Select "Add Extensions Marks" to add a command above an extension in the source file you are currently working on.
**Example**
```Swift
extension MyViewController: MyProtocol {
```
... will be modified to:
```Swift
// MARK: - MyProtocol
extension MyViewController: MyProtocol {
```