2016-06-04 21:45:29 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
//! Project version number for SwiftNeoVim.
|
|
|
|
FOUNDATION_EXPORT double SwiftNeoVimVersionNumber;
|
|
|
|
|
|
|
|
//! Project version string for SwiftNeoVim.
|
|
|
|
FOUNDATION_EXPORT const unsigned char SwiftNeoVimVersionString[];
|
|
|
|
|
2016-06-05 10:49:14 +03:00
|
|
|
#import <SwiftNeoVim/NeoVimUiBridgeProtocol.h>
|
2016-06-04 21:45:29 +03:00
|
|
|
// TODO: this header should not be public, but we cannot use a bridging header in a framework.
|
2016-06-24 22:08:34 +03:00
|
|
|
#import <SwiftNeoVim/TextDrawer.h>
|
2016-07-09 15:04:09 +03:00
|
|
|
#import <SwiftNeoVim/NeoVimAgent.h>
|
2016-07-09 23:52:59 +03:00
|
|
|
#import <SwiftNeoVim/NeoVimMsgIds.h>
|
2016-10-22 23:20:22 +03:00
|
|
|
#import <SwiftNeoVim/NeoVimBuffer.h>
|
|
|
|
#import <SwiftNeoVim/NeoVimTab.h>
|
|
|
|
#import <SwiftNeoVim/NeoVimWindow.h>
|