mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
71 lines
1.7 KiB
C
71 lines
1.7 KiB
C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Foundation;
|
|
|
|
|
|
typedef NS_ENUM(NSUInteger, NeoVimServerMsgId) {
|
|
NeoVimServerMsgIdServerReady = 0,
|
|
NeoVimServerMsgIdNeoVimReady,
|
|
NeoVimServerMsgIdResize,
|
|
NeoVimServerMsgIdClear,
|
|
NeoVimServerMsgIdEolClear,
|
|
NeoVimServerMsgIdSetPosition,
|
|
NeoVimServerMsgIdSetMenu,
|
|
NeoVimServerMsgIdBusyStart,
|
|
NeoVimServerMsgIdBusyStop,
|
|
NeoVimServerMsgIdMouseOn,
|
|
NeoVimServerMsgIdMouseOff,
|
|
NeoVimServerMsgIdModeChange,
|
|
NeoVimServerMsgIdSetScrollRegion,
|
|
NeoVimServerMsgIdScroll,
|
|
NeoVimServerMsgIdSetHighlightAttributes,
|
|
NeoVimServerMsgIdPut,
|
|
NeoVimServerMsgIdPutMarked,
|
|
NeoVimServerMsgIdUnmark,
|
|
NeoVimServerMsgIdBell,
|
|
NeoVimServerMsgIdVisualBell,
|
|
NeoVimServerMsgIdFlush,
|
|
NeoVimServerMsgIdSetForeground,
|
|
NeoVimServerMsgIdSetBackground,
|
|
NeoVimServerMsgIdSetSpecial,
|
|
NeoVimServerMsgIdSetTitle,
|
|
NeoVimServerMsgIdSetIcon,
|
|
NeoVimServerMsgIdStop,
|
|
|
|
NeoVimServerMsgIdDirtyStatusChanged,
|
|
NeoVimServerMsgIdAutoCommandEvent,
|
|
|
|
#ifdef DEBUG
|
|
NeoVimServerDebug1,
|
|
#endif
|
|
};
|
|
|
|
typedef NS_ENUM(NSUInteger, NeoVimAgentMsgId) {
|
|
NeoVimAgentMsgIdAgentReady = 0,
|
|
NeoVimAgentMsgIdCommand,
|
|
NeoVimAgentMsgIdCommandOutput,
|
|
NeoVimAgentMsgIdInput,
|
|
NeoVimAgentMsgIdInputMarked,
|
|
NeoVimAgentMsgIdDelete,
|
|
NeoVimAgentMsgIdResize,
|
|
NeoVimAgentMsgIdSelectWindow,
|
|
NeoVimAgentMsgIdCursorGoto,
|
|
NeoVimAgentMsgIdQuit,
|
|
|
|
NeoVimAgentMsgIdGetDirtyDocs,
|
|
NeoVimAgentMsgIdGetPwd,
|
|
NeoVimAgentMsgIdGetEscapeFileNames,
|
|
NeoVimAgentMsgIdGetBuffers,
|
|
NeoVimAgentMsgIdGetTabs,
|
|
|
|
NeoVimAgentMsgIdGetBoolOption,
|
|
NeoVimAgentMsgIdSetBoolOption,
|
|
|
|
#ifdef DEBUG
|
|
NeoVimAgentDebug1,
|
|
#endif
|
|
};
|