1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 11:35:35 +03:00
vimr/NvimView/NeoVimMsgIds.h

60 lines
1.4 KiB
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, NeoVimServerMsgId) {
2016-11-20 23:50:31 +03:00
NeoVimServerMsgIdServerReady = 0,
NeoVimServerMsgIdNeoVimReady,
NeoVimServerMsgIdResize,
NeoVimServerMsgIdClear,
NeoVimServerMsgIdEolClear,
NeoVimServerMsgIdSetMenu,
NeoVimServerMsgIdBusyStart,
NeoVimServerMsgIdBusyStop,
NeoVimServerMsgIdMouseOn,
NeoVimServerMsgIdMouseOff,
NeoVimServerMsgIdModeChange,
NeoVimServerMsgIdSetScrollRegion,
NeoVimServerMsgIdScroll,
NeoVimServerMsgIdUnmark,
NeoVimServerMsgIdBell,
NeoVimServerMsgIdVisualBell,
NeoVimServerMsgIdFlush,
NeoVimServerMsgIdSetForeground,
NeoVimServerMsgIdSetBackground,
NeoVimServerMsgIdSetSpecial,
NeoVimServerMsgIdSetTitle,
NeoVimServerMsgIdSetIcon,
NeoVimServerMsgIdStop,
NeoVimServerMsgIdDirtyStatusChanged,
NeoVimServerMsgIdCwdChanged,
2017-06-25 18:35:51 +03:00
NeoVimServerMsgIdColorSchemeChanged,
2016-12-19 23:31:16 +03:00
NeoVimServerMsgIdAutoCommandEvent,
#ifdef DEBUG
2016-11-20 23:50:31 +03:00
NeoVimServerDebug1,
#endif
};
typedef NS_ENUM(NSInteger, NeoVimAgentMsgId) {
2016-11-20 23:50:31 +03:00
NeoVimAgentMsgIdAgentReady = 0,
NeoVimAgentMsgIdInput,
NeoVimAgentMsgIdInputMarked,
NeoVimAgentMsgIdDelete,
NeoVimAgentMsgIdResize,
2017-05-30 23:13:52 +03:00
NeoVimAgentMsgIdScroll,
2016-08-25 00:06:39 +03:00
2016-11-20 23:50:31 +03:00
NeoVimAgentMsgIdGetEscapeFileNames,
NeoVimAgentMsgIdFocusGained,
#ifdef DEBUG
2016-11-20 23:50:31 +03:00
NeoVimAgentDebug1,
#endif
};