2018-05-12 00:53:02 +00:00
|
|
|
/*
|
|
|
|
4coder_default_framework_variables.cpp - Declares the global variables used by the framework for
|
|
|
|
the default 4coder behavior.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
static Named_Mapping *named_maps = 0;
|
|
|
|
static int32_t named_map_count = 0;
|
|
|
|
|
|
|
|
static char *default_extensions[] = {
|
|
|
|
"cpp",
|
|
|
|
"hpp",
|
|
|
|
"c",
|
|
|
|
"h",
|
|
|
|
"cc",
|
|
|
|
"cs",
|
|
|
|
};
|
|
|
|
|
2018-06-08 22:51:36 +00:00
|
|
|
#if !defined(AUTO_CENTER_AFTER_JUMPS)
|
|
|
|
#define AUTO_CENTER_AFTER_JUMPS true
|
|
|
|
#endif
|
|
|
|
static bool32 auto_center_after_jumps = AUTO_CENTER_AFTER_JUMPS;
|
|
|
|
static char locked_buffer_space[256];
|
|
|
|
static String locked_buffer = make_fixed_width_string(locked_buffer_space);
|
|
|
|
|
|
|
|
|
|
|
|
static View_ID special_note_view_id = 0;
|
|
|
|
|
|
|
|
|
|
|
|
View_Paste_Index view_paste_index_[16];
|
|
|
|
View_Paste_Index *view_paste_index = view_paste_index_ - 1;
|
|
|
|
|
|
|
|
|
|
|
|
static char out_buffer_space[1024];
|
|
|
|
static char command_space[1024];
|
|
|
|
static char hot_directory_space[1024];
|
|
|
|
|
|
|
|
|
|
|
|
static bool32 suppressing_mouse = false;
|
|
|
|
|
|
|
|
|
|
|
|
static ID_Based_Jump_Location prev_location = {0};
|
|
|
|
|
|
|
|
|
|
|
|
static Config_Data global_config = {0};
|
|
|
|
|
2018-05-12 00:53:02 +00:00
|
|
|
// BOTTOM
|