Xcodeのクロージャをチェーンさせるときのインデント設定
https://github.com/mxcl/PromiseKit
のREADME.md
には
firstly {
when(fulfilled: fetchImage, fetchLocation)
}.done { image, location in
self.imageView.image = image
self.label.text = "\(location)"
}.ensure {
UIApplication.shared.isNetworkActivityIndicatorVisible = false
}.catch { error in
self.show(UIAlertController(for: error), sender: self)
}
のようにインデントされていて、とても読みやすいと思います。
しかし、自分のXcode10.0
では下記のようにインデントされてしまいます。
(Xcode9
でもこうだった記憶があります)
firstly {
when(fulfilled: fetchImage, fetchLocation)
}.done { image, location in
self.imageView.image = image
self.label.text = "\(location)"
}.ensure {
UIApplication.shared.isNetworkActivityIndicatorVisible = false
}.catch { error in
self.show(UIAlertController(for: error), sender: self)
}
READMEのように自動でインデントさせる設定方法はありますか?