4coder/4coder_default_framework.h

42 lines
657 B
C
Raw Normal View History

/*
2017-04-15 21:47:23 +00:00
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,
2018-05-07 02:47:22 +00:00
default_maps_count,
};
////////////////////////////////
enum Rewrite_Type{
RewriteNone,
RewritePaste,
RewriteWordComplete
};
////////////////////////////////
2017-04-15 21:47:23 +00:00
struct ID_Based_Jump_Location{
int32_t buffer_id;
int32_t line;
int32_t column;
2017-04-15 21:47:23 +00:00
};
////////////////////////////////
struct Named_Mapping{
String name;
Custom_Command_Function *remap_command;
};
#endif
// BOTTOM