Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tid-kijyun authored Feb 11, 2017
1 parent 4e5382c commit e175118
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,37 @@ This Xcode source editor extension align your assignment statement.
2. Select your code
3. Choose menu `Editor > Alignment`


## Settings:
![screen shot 2017-02-09 at 17 09 15](https://cloud.githubusercontent.com/assets/1665104/22777668/521450de-eef7-11e6-98a3-82fe4e1b9188.png)
* Align assignment
 When checked, assignment statement align will be enabled.

```
let value = 0
let i = 0
```

```
let value = 0
let i = 0
```

* Align type declaration
When checked, type declaration align will be enabled.

```
func sort(from: Int,
to: Int) {
}
```

```
func sort(from : Int,
to : Int) {
}
```

## Usage without installing:

1. Install Xcode 8
Expand Down

0 comments on commit e175118

Please sign in to comment.