1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00

GH-666 Reformat

This commit is contained in:
Tae Won Ha 2018-08-29 18:48:17 +02:00
parent 625df1e665
commit 46b0efd99c

View File

@ -66,7 +66,10 @@ class UGrid {
self.size = size self.size = size
self.posision = .zero self.posision = .zero
let emptyRow = Array(repeating: UCell(string: clearString, attrId: defaultAttrId), count: size.width) let emptyRow = Array(
repeating: UCell(string: clearString, attrId: defaultAttrId),
count: size.width
)
self.cells = Array(repeating: emptyRow, count: size.height) self.cells = Array(repeating: emptyRow, count: size.height)
} }