mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
22 lines
659 B
Objective-C
22 lines
659 B
Objective-C
/**
|
|
* 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[];
|
|
|
|
#import <SwiftNeoVim/NeoVimUiBridgeProtocol.h>
|
|
// TODO: this header should not be public, but we cannot use a bridging header in a framework.
|
|
#import <SwiftNeoVim/TextDrawer.h>
|
|
#import <SwiftNeoVim/NeoVimAgent.h>
|
|
#import <SwiftNeoVim/NeoVimMsgIds.h>
|
|
#import <SwiftNeoVim/NeoVimBuffer.h>
|
|
#import <SwiftNeoVim/NeoVimTab.h>
|
|
#import <SwiftNeoVim/NeoVimWindow.h>
|