mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +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 }))
|
||
|
}
|
||
|
}
|