4coder/4coder_default_framework.h

48 lines
752 B
C

/*
4coder_default_framework.cpp - Sets up the basics of the framework that is used for default 4coder behaviour.
*/
// TOP
#if !defined(FCODER_DEFAULT_FRAMEWORK_H)
#define FCODER_DEFAULT_FRAMEWORK_H
enum Default_Maps{
default_code_map,
default_maps_count,
};
////////////////////////////////
enum Rewrite_Type{
RewriteNone,
RewritePaste,
RewriteWordComplete
};
struct View_Paste_Index{
int32_t rewrite;
int32_t next_rewrite;
int32_t index;
};
////////////////////////////////
struct ID_Based_Jump_Location{
int32_t buffer_id;
int32_t line;
int32_t column;
};
////////////////////////////////
struct Named_Mapping{
String name;
Custom_Command_Function *remap_command;
};
#endif
// BOTTOM