1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 10:23:12 +03:00
vimr/NeoVimServer/NeoVimMsgIds.h

70 lines
1.7 KiB
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
2016-10-22 18:25:43 +03:00
@import Foundation;
typedef NS_ENUM(NSUInteger, NeoVimServerMsgId) {
2016-11-20 23:50:31 +03:00
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,
2016-12-19 23:31:16 +03:00
NeoVimServerMsgIdAutoCommandEvent,
2016-11-20 23:50:31 +03:00
NeoVimServerMsgIdSyncResult,
#ifdef DEBUG
2016-11-20 23:50:31 +03:00
NeoVimServerDebug1,
#endif
};
typedef NS_ENUM(NSUInteger, NeoVimAgentMsgId) {
2016-11-20 23:50:31 +03:00
NeoVimAgentMsgIdAgentReady = 0,
NeoVimAgentMsgIdCommand,
NeoVimAgentMsgIdCommandOutput,
NeoVimAgentMsgIdInput,
NeoVimAgentMsgIdInputMarked,
NeoVimAgentMsgIdDelete,
NeoVimAgentMsgIdResize,
NeoVimAgentMsgIdSelectWindow,
NeoVimAgentMsgIdQuit,
2016-08-25 00:06:39 +03:00
2016-11-20 23:50:31 +03:00
NeoVimAgentMsgIdGetDirtyDocs,
NeoVimAgentMsgIdGetEscapeFileNames,
NeoVimAgentMsgIdGetBuffers,
NeoVimAgentMsgIdGetTabs,
2016-11-20 23:50:31 +03:00
NeoVimAgentMsgIdGetBoolOption,
NeoVimAgentMsgIdSetBoolOption,
2016-11-10 19:33:14 +03:00
#ifdef DEBUG
2016-11-20 23:50:31 +03:00
NeoVimAgentDebug1,
#endif
};