An open API service indexing awesome lists of open source software.

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

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 {
```