4coder/custom/4coder_scope_commands.h

30 lines
529 B
C
Raw Normal View History

/*
4coder_scope_commands.cpp - A set of commands and helpers relevant for scope level navigation and editing.
*/
// TOP
#if !defined(FCODER_SCOPE_COMMANDS_H)
#define FCODER_SCOPE_COMMANDS_H
typedef i32 Nest_Delimiter_Kind;
enum{
NestDelimiterKind_None = 0,
NestDelimiterKind_Open = 1,
NestDelimiterKind_Close = 2,
};
2019-09-27 23:56:05 +00:00
typedef u32 Find_Scope_Flag;
enum{
2018-09-30 12:14:47 +00:00
FindScope_Parent = 1,
FindScope_NextSibling = 2,
FindScope_EndOfToken = 4,
2019-09-27 23:56:05 +00:00
FindScope_Scope = 8,
2018-09-30 12:14:47 +00:00
FindScope_Paren = 16,
};
#endif
// BOTTOM