I know I can fold blocks by pressing command + option + left arrow
But the problem is when I'm trying to fold a block of lazy codes.
Example:
private lazy var linePass: UIView = {
let line = UIView()
line.backgroundColor = .lightGray
return line
}()
But It doesn't work.