mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
15 lines
219 B
Swift
15 lines
219 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
|
|
extension NeoVimTab {
|
|
|
|
public func allBuffers() -> [NeoVimBuffer] {
|
|
return Array(Set(self.windows.map { $0.buffer }))
|
|
}
|
|
}
|