mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
fa0ef63611
- This target includes the XPC-service and will be included in the main app
18 lines
289 B
Swift
18 lines
289 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
public class NeoVimService {
|
|
|
|
public private(set) var neoVims: [NeoVim] = []
|
|
|
|
public func newNeoVim() -> NeoVim {
|
|
let neoVim = NeoVim()
|
|
self.neoVims.append(neoVim);
|
|
|
|
return neoVim
|
|
}
|
|
} |